tree-sitter-bash/src/parser.c

35122 lines
1.2 MiB

#include <tree_sitter/parser.h>
#if defined(__GNUC__) || defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#endif
#define LANGUAGE_VERSION 5
#define STATE_COUNT 1582
#define SYMBOL_COUNT 124
#define ALIAS_COUNT 2
#define TOKEN_COUNT 79
#define EXTERNAL_TOKEN_COUNT 9
#define MAX_ALIAS_SEQUENCE_LENGTH 7
enum {
sym__simple_heredoc = 1,
sym__heredoc_beginning = 2,
sym__heredoc_middle = 3,
sym__heredoc_end = 4,
sym_file_descriptor = 5,
sym__empty_value = 6,
sym__concat = 7,
sym_variable_name = 8,
anon_sym_for = 9,
anon_sym_in = 10,
anon_sym_while = 11,
anon_sym_do = 12,
anon_sym_done = 13,
anon_sym_if = 14,
anon_sym_then = 15,
anon_sym_fi = 16,
anon_sym_elif = 17,
anon_sym_else = 18,
anon_sym_case = 19,
anon_sym_esac = 20,
anon_sym_PIPE = 21,
anon_sym_RPAREN = 22,
anon_sym_SEMI_SEMI = 23,
anon_sym_function = 24,
anon_sym_LPAREN = 25,
anon_sym_LBRACE = 26,
anon_sym_RBRACE = 27,
anon_sym_PIPE_AMP = 28,
anon_sym_AMP_AMP = 29,
anon_sym_PIPE_PIPE = 30,
anon_sym_LBRACK = 31,
anon_sym_RBRACK = 32,
anon_sym_LBRACK_LBRACK = 33,
anon_sym_RBRACK_RBRACK = 34,
anon_sym_declare = 35,
anon_sym_typeset = 36,
anon_sym_export = 37,
anon_sym_readonly = 38,
anon_sym_local = 39,
anon_sym_DASH = 40,
anon_sym_EQ = 41,
anon_sym_PLUS_EQ = 42,
anon_sym_LT = 43,
anon_sym_GT = 44,
anon_sym_GT_GT = 45,
anon_sym_AMP_GT = 46,
anon_sym_AMP_GT_GT = 47,
anon_sym_LT_AMP = 48,
anon_sym_GT_AMP = 49,
anon_sym_LT_LT = 50,
anon_sym_LT_LT_DASH = 51,
anon_sym_DQUOTE = 52,
aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH = 53,
sym_raw_string = 54,
anon_sym_DOLLAR = 55,
anon_sym_DOLLAR_LBRACE = 56,
anon_sym_POUND = 57,
anon_sym_AT = 58,
anon_sym_COLON = 59,
anon_sym_COLON_QMARK = 60,
anon_sym_COLON_DASH = 61,
anon_sym_PERCENT = 62,
anon_sym_SLASH = 63,
anon_sym_DOLLAR_LPAREN = 64,
anon_sym_BQUOTE = 65,
anon_sym_LT_LPAREN = 66,
anon_sym_GT_LPAREN = 67,
sym_word = 68,
sym_comment = 69,
sym_simple_variable_name = 70,
anon_sym_STAR = 71,
anon_sym_QMARK = 72,
anon_sym_BANG = 73,
anon_sym_0 = 74,
anon_sym__ = 75,
anon_sym_SEMI = 76,
anon_sym_LF = 77,
anon_sym_AMP = 78,
sym_program = 79,
sym__terminated_statement = 80,
sym_for_statement = 81,
sym_while_statement = 82,
sym_do_group = 83,
sym_if_statement = 84,
sym_elif_clause = 85,
sym_else_clause = 86,
sym_case_statement = 87,
sym_case_item = 88,
sym_function_definition = 89,
sym_compound_statement = 90,
sym_subshell = 91,
sym_pipeline = 92,
sym_list = 93,
sym_bracket_command = 94,
sym_command = 95,
sym_command_name = 96,
sym_variable_assignment = 97,
sym_declaration_command = 98,
sym__assignment = 99,
sym_subscript = 100,
sym_file_redirect = 101,
sym_heredoc_redirect = 102,
sym_heredoc = 103,
sym_concatenation = 104,
sym_string = 105,
sym_array = 106,
sym_simple_expansion = 107,
sym_expansion = 108,
sym_command_substitution = 109,
sym_process_substitution = 110,
sym_special_variable_name = 111,
aux_sym_program_repeat1 = 112,
aux_sym_for_statement_repeat1 = 113,
aux_sym_if_statement_repeat1 = 114,
aux_sym_case_statement_repeat1 = 115,
aux_sym_case_item_repeat1 = 116,
aux_sym_command_repeat1 = 117,
aux_sym_command_repeat2 = 118,
aux_sym_declaration_command_repeat1 = 119,
aux_sym_declaration_command_repeat2 = 120,
aux_sym_heredoc_repeat1 = 121,
aux_sym_concatenation_repeat1 = 122,
aux_sym_string_repeat1 = 123,
anon_alias_sym_argument = 124,
alias_sym_variable_name = 125,
};
static const char *ts_symbol_names[] = {
[sym__simple_heredoc] = "_simple_heredoc",
[sym__heredoc_beginning] = "_heredoc_beginning",
[sym__heredoc_middle] = "_heredoc_middle",
[sym__heredoc_end] = "_heredoc_end",
[sym_file_descriptor] = "file_descriptor",
[sym__empty_value] = "_empty_value",
[sym__concat] = "_concat",
[sym_variable_name] = "variable_name",
[ts_builtin_sym_end] = "END",
[anon_sym_for] = "for",
[anon_sym_in] = "in",
[anon_sym_while] = "while",
[anon_sym_do] = "do",
[anon_sym_done] = "done",
[anon_sym_if] = "if",
[anon_sym_then] = "then",
[anon_sym_fi] = "fi",
[anon_sym_elif] = "elif",
[anon_sym_else] = "else",
[anon_sym_case] = "case",
[anon_sym_esac] = "esac",
[anon_sym_PIPE] = "|",
[anon_sym_RPAREN] = ")",
[anon_sym_SEMI_SEMI] = ";;",
[anon_sym_function] = "function",
[anon_sym_LPAREN] = "(",
[anon_sym_LBRACE] = "{",
[anon_sym_RBRACE] = "}",
[anon_sym_PIPE_AMP] = "|&",
[anon_sym_AMP_AMP] = "&&",
[anon_sym_PIPE_PIPE] = "||",
[anon_sym_LBRACK] = "[",
[anon_sym_RBRACK] = "]",
[anon_sym_LBRACK_LBRACK] = "[[",
[anon_sym_RBRACK_RBRACK] = "]]",
[anon_sym_declare] = "declare",
[anon_sym_typeset] = "typeset",
[anon_sym_export] = "export",
[anon_sym_readonly] = "readonly",
[anon_sym_local] = "local",
[anon_sym_DASH] = "-",
[anon_sym_EQ] = "=",
[anon_sym_PLUS_EQ] = "+=",
[anon_sym_LT] = "<",
[anon_sym_GT] = ">",
[anon_sym_GT_GT] = ">>",
[anon_sym_AMP_GT] = "&>",
[anon_sym_AMP_GT_GT] = "&>>",
[anon_sym_LT_AMP] = "<&",
[anon_sym_GT_AMP] = ">&",
[anon_sym_LT_LT] = "<<",
[anon_sym_LT_LT_DASH] = "<<-",
[anon_sym_DQUOTE] = "\"",
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = "/[^\"`$]+/",
[sym_raw_string] = "raw_string",
[anon_sym_DOLLAR] = "$",
[anon_sym_DOLLAR_LBRACE] = "${",
[anon_sym_POUND] = "#",
[anon_sym_AT] = "@",
[anon_sym_COLON] = ":",
[anon_sym_COLON_QMARK] = ":?",
[anon_sym_COLON_DASH] = ":-",
[anon_sym_PERCENT] = "%",
[anon_sym_SLASH] = "/",
[anon_sym_DOLLAR_LPAREN] = "$(",
[anon_sym_BQUOTE] = "`",
[anon_sym_LT_LPAREN] = "<(",
[anon_sym_GT_LPAREN] = ">(",
[sym_word] = "word",
[sym_comment] = "comment",
[sym_simple_variable_name] = "simple_variable_name",
[anon_sym_STAR] = "*",
[anon_sym_QMARK] = "?",
[anon_sym_BANG] = "!",
[anon_sym_0] = "0",
[anon_sym__] = "_",
[anon_sym_SEMI] = ";",
[anon_sym_LF] = "\n",
[anon_sym_AMP] = "&",
[sym_program] = "program",
[sym__terminated_statement] = "_terminated_statement",
[sym_for_statement] = "for_statement",
[sym_while_statement] = "while_statement",
[sym_do_group] = "do_group",
[sym_if_statement] = "if_statement",
[sym_elif_clause] = "elif_clause",
[sym_else_clause] = "else_clause",
[sym_case_statement] = "case_statement",
[sym_case_item] = "case_item",
[sym_function_definition] = "function_definition",
[sym_compound_statement] = "compound_statement",
[sym_subshell] = "subshell",
[sym_pipeline] = "pipeline",
[sym_list] = "list",
[sym_bracket_command] = "bracket_command",
[sym_command] = "command",
[sym_command_name] = "command_name",
[sym_variable_assignment] = "variable_assignment",
[sym_declaration_command] = "declaration_command",
[sym__assignment] = "_assignment",
[sym_subscript] = "subscript",
[sym_file_redirect] = "file_redirect",
[sym_heredoc_redirect] = "heredoc_redirect",
[sym_heredoc] = "heredoc",
[sym_concatenation] = "concatenation",
[sym_string] = "string",
[sym_array] = "array",
[sym_simple_expansion] = "simple_expansion",
[sym_expansion] = "expansion",
[sym_command_substitution] = "command_substitution",
[sym_process_substitution] = "process_substitution",
[sym_special_variable_name] = "special_variable_name",
[aux_sym_program_repeat1] = "program_repeat1",
[aux_sym_for_statement_repeat1] = "for_statement_repeat1",
[aux_sym_if_statement_repeat1] = "if_statement_repeat1",
[aux_sym_case_statement_repeat1] = "case_statement_repeat1",
[aux_sym_case_item_repeat1] = "case_item_repeat1",
[aux_sym_command_repeat1] = "command_repeat1",
[aux_sym_command_repeat2] = "command_repeat2",
[aux_sym_declaration_command_repeat1] = "declaration_command_repeat1",
[aux_sym_declaration_command_repeat2] = "declaration_command_repeat2",
[aux_sym_heredoc_repeat1] = "heredoc_repeat1",
[aux_sym_concatenation_repeat1] = "concatenation_repeat1",
[aux_sym_string_repeat1] = "string_repeat1",
[anon_alias_sym_argument] = "argument",
[alias_sym_variable_name] = "variable_name",
};
static const TSSymbolMetadata ts_symbol_metadata[] = {
[sym__simple_heredoc] = {
.visible = false,
.named = true,
},
[sym__heredoc_beginning] = {
.visible = false,
.named = true,
},
[sym__heredoc_middle] = {
.visible = false,
.named = true,
},
[sym__heredoc_end] = {
.visible = false,
.named = true,
},
[sym_file_descriptor] = {
.visible = true,
.named = true,
},
[sym__empty_value] = {
.visible = false,
.named = true,
},
[sym__concat] = {
.visible = false,
.named = true,
},
[sym_variable_name] = {
.visible = true,
.named = true,
},
[ts_builtin_sym_end] = {
.visible = false,
.named = true,
},
[anon_sym_for] = {
.visible = true,
.named = false,
},
[anon_sym_in] = {
.visible = true,
.named = false,
},
[anon_sym_while] = {
.visible = true,
.named = false,
},
[anon_sym_do] = {
.visible = true,
.named = false,
},
[anon_sym_done] = {
.visible = true,
.named = false,
},
[anon_sym_if] = {
.visible = true,
.named = false,
},
[anon_sym_then] = {
.visible = true,
.named = false,
},
[anon_sym_fi] = {
.visible = true,
.named = false,
},
[anon_sym_elif] = {
.visible = true,
.named = false,
},
[anon_sym_else] = {
.visible = true,
.named = false,
},
[anon_sym_case] = {
.visible = true,
.named = false,
},
[anon_sym_esac] = {
.visible = true,
.named = false,
},
[anon_sym_PIPE] = {
.visible = true,
.named = false,
},
[anon_sym_RPAREN] = {
.visible = true,
.named = false,
},
[anon_sym_SEMI_SEMI] = {
.visible = true,
.named = false,
},
[anon_sym_function] = {
.visible = true,
.named = false,
},
[anon_sym_LPAREN] = {
.visible = true,
.named = false,
},
[anon_sym_LBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_PIPE_AMP] = {
.visible = true,
.named = false,
},
[anon_sym_AMP_AMP] = {
.visible = true,
.named = false,
},
[anon_sym_PIPE_PIPE] = {
.visible = true,
.named = false,
},
[anon_sym_LBRACK] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACK] = {
.visible = true,
.named = false,
},
[anon_sym_LBRACK_LBRACK] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACK_RBRACK] = {
.visible = true,
.named = false,
},
[anon_sym_declare] = {
.visible = true,
.named = false,
},
[anon_sym_typeset] = {
.visible = true,
.named = false,
},
[anon_sym_export] = {
.visible = true,
.named = false,
},
[anon_sym_readonly] = {
.visible = true,
.named = false,
},
[anon_sym_local] = {
.visible = true,
.named = false,
},
[anon_sym_DASH] = {
.visible = true,
.named = false,
},
[anon_sym_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_PLUS_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_LT] = {
.visible = true,
.named = false,
},
[anon_sym_GT] = {
.visible = true,
.named = false,
},
[anon_sym_GT_GT] = {
.visible = true,
.named = false,
},
[anon_sym_AMP_GT] = {
.visible = true,
.named = false,
},
[anon_sym_AMP_GT_GT] = {
.visible = true,
.named = false,
},
[anon_sym_LT_AMP] = {
.visible = true,
.named = false,
},
[anon_sym_GT_AMP] = {
.visible = true,
.named = false,
},
[anon_sym_LT_LT] = {
.visible = true,
.named = false,
},
[anon_sym_LT_LT_DASH] = {
.visible = true,
.named = false,
},
[anon_sym_DQUOTE] = {
.visible = true,
.named = false,
},
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = {
.visible = false,
.named = false,
},
[sym_raw_string] = {
.visible = true,
.named = true,
},
[anon_sym_DOLLAR] = {
.visible = true,
.named = false,
},
[anon_sym_DOLLAR_LBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_POUND] = {
.visible = true,
.named = false,
},
[anon_sym_AT] = {
.visible = true,
.named = false,
},
[anon_sym_COLON] = {
.visible = true,
.named = false,
},
[anon_sym_COLON_QMARK] = {
.visible = true,
.named = false,
},
[anon_sym_COLON_DASH] = {
.visible = true,
.named = false,
},
[anon_sym_PERCENT] = {
.visible = true,
.named = false,
},
[anon_sym_SLASH] = {
.visible = true,
.named = false,
},
[anon_sym_DOLLAR_LPAREN] = {
.visible = true,
.named = false,
},
[anon_sym_BQUOTE] = {
.visible = true,
.named = false,
},
[anon_sym_LT_LPAREN] = {
.visible = true,
.named = false,
},
[anon_sym_GT_LPAREN] = {
.visible = true,
.named = false,
},
[sym_word] = {
.visible = true,
.named = true,
},
[sym_comment] = {
.visible = true,
.named = true,
},
[sym_simple_variable_name] = {
.visible = true,
.named = true,
},
[anon_sym_STAR] = {
.visible = true,
.named = false,
},
[anon_sym_QMARK] = {
.visible = true,
.named = false,
},
[anon_sym_BANG] = {
.visible = true,
.named = false,
},
[anon_sym_0] = {
.visible = true,
.named = false,
},
[anon_sym__] = {
.visible = true,
.named = false,
},
[anon_sym_SEMI] = {
.visible = true,
.named = false,
},
[anon_sym_LF] = {
.visible = true,
.named = false,
},
[anon_sym_AMP] = {
.visible = true,
.named = false,
},
[sym_program] = {
.visible = true,
.named = true,
},
[sym__terminated_statement] = {
.visible = false,
.named = true,
},
[sym_for_statement] = {
.visible = true,
.named = true,
},
[sym_while_statement] = {
.visible = true,
.named = true,
},
[sym_do_group] = {
.visible = true,
.named = true,
},
[sym_if_statement] = {
.visible = true,
.named = true,
},
[sym_elif_clause] = {
.visible = true,
.named = true,
},
[sym_else_clause] = {
.visible = true,
.named = true,
},
[sym_case_statement] = {
.visible = true,
.named = true,
},
[sym_case_item] = {
.visible = true,
.named = true,
},
[sym_function_definition] = {
.visible = true,
.named = true,
},
[sym_compound_statement] = {
.visible = true,
.named = true,
},
[sym_subshell] = {
.visible = true,
.named = true,
},
[sym_pipeline] = {
.visible = true,
.named = true,
},
[sym_list] = {
.visible = true,
.named = true,
},
[sym_bracket_command] = {
.visible = true,
.named = true,
},
[sym_command] = {
.visible = true,
.named = true,
},
[sym_command_name] = {
.visible = true,
.named = true,
},
[sym_variable_assignment] = {
.visible = true,
.named = true,
},
[sym_declaration_command] = {
.visible = true,
.named = true,
},
[sym__assignment] = {
.visible = false,
.named = true,
},
[sym_subscript] = {
.visible = true,
.named = true,
},
[sym_file_redirect] = {
.visible = true,
.named = true,
},
[sym_heredoc_redirect] = {
.visible = true,
.named = true,
},
[sym_heredoc] = {
.visible = true,
.named = true,
},
[sym_concatenation] = {
.visible = true,
.named = true,
},
[sym_string] = {
.visible = true,
.named = true,
},
[sym_array] = {
.visible = true,
.named = true,
},
[sym_simple_expansion] = {
.visible = true,
.named = true,
},
[sym_expansion] = {
.visible = true,
.named = true,
},
[sym_command_substitution] = {
.visible = true,
.named = true,
},
[sym_process_substitution] = {
.visible = true,
.named = true,
},
[sym_special_variable_name] = {
.visible = true,
.named = true,
},
[aux_sym_program_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_for_statement_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_if_statement_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_case_statement_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_case_item_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_command_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_command_repeat2] = {
.visible = false,
.named = false,
},
[aux_sym_declaration_command_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_declaration_command_repeat2] = {
.visible = false,
.named = false,
},
[aux_sym_heredoc_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_concatenation_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_string_repeat1] = {
.visible = false,
.named = false,
},
[anon_alias_sym_argument] = {
.visible = true,
.named = false,
},
[alias_sym_variable_name] = {
.visible = true,
.named = true,
},
};
static TSSymbol ts_alias_sequences[4][MAX_ALIAS_SEQUENCE_LENGTH] = {
[1] = {
[1] = alias_sym_variable_name,
},
[2] = {
[0] = anon_alias_sym_argument,
[1] = anon_alias_sym_argument,
},
[3] = {
[2] = alias_sym_variable_name,
},
};
static bool ts_lex(TSLexer *lexer, TSStateId state) {
START_LEXER();
switch (state) {
case 0:
if (lookahead == 0)
ADVANCE(1);
if (lookahead == '\n')
ADVANCE(2);
if (lookahead == '!')
ADVANCE(3);
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(5);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '%')
ADVANCE(9);
if (lookahead == '&')
ADVANCE(10);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == '(')
ADVANCE(16);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == '*')
ADVANCE(18);
if (lookahead == '+')
ADVANCE(19);
if (lookahead == '-')
ADVANCE(21);
if (lookahead == '/')
ADVANCE(22);
if (lookahead == '0')
ADVANCE(23);
if (lookahead == ':')
ADVANCE(25);
if (lookahead == ';')
ADVANCE(28);
if (lookahead == '<')
ADVANCE(30);
if (lookahead == '=')
ADVANCE(35);
if (lookahead == '>')
ADVANCE(36);
if (lookahead == '?')
ADVANCE(40);
if (lookahead == '@')
ADVANCE(41);
if (lookahead == '[')
ADVANCE(42);
if (lookahead == '\\')
SKIP(44);
if (lookahead == ']')
ADVANCE(45);
if (lookahead == '_')
ADVANCE(47);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '{')
ADVANCE(49);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '}')
ADVANCE(53);
if (lookahead == '\t' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(0);
if (('1' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z'))
ADVANCE(24);
END_STATE();
case 1:
ACCEPT_TOKEN(ts_builtin_sym_end);
END_STATE();
case 2:
ACCEPT_TOKEN(anon_sym_LF);
END_STATE();
case 3:
ACCEPT_TOKEN(anon_sym_BANG);
END_STATE();
case 4:
ACCEPT_TOKEN(anon_sym_DQUOTE);
END_STATE();
case 5:
ACCEPT_TOKEN(anon_sym_POUND);
END_STATE();
case 6:
ACCEPT_TOKEN(anon_sym_DOLLAR);
if (lookahead == '(')
ADVANCE(7);
if (lookahead == '{')
ADVANCE(8);
END_STATE();
case 7:
ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN);
END_STATE();
case 8:
ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE);
END_STATE();
case 9:
ACCEPT_TOKEN(anon_sym_PERCENT);
END_STATE();
case 10:
ACCEPT_TOKEN(anon_sym_AMP);
if (lookahead == '&')
ADVANCE(11);
if (lookahead == '>')
ADVANCE(12);
END_STATE();
case 11:
ACCEPT_TOKEN(anon_sym_AMP_AMP);
END_STATE();
case 12:
ACCEPT_TOKEN(anon_sym_AMP_GT);
if (lookahead == '>')
ADVANCE(13);
END_STATE();
case 13:
ACCEPT_TOKEN(anon_sym_AMP_GT_GT);
END_STATE();
case 14:
if (lookahead == '\'')
ADVANCE(15);
if (lookahead != 0)
ADVANCE(14);
END_STATE();
case 15:
ACCEPT_TOKEN(sym_raw_string);
END_STATE();
case 16:
ACCEPT_TOKEN(anon_sym_LPAREN);
END_STATE();
case 17:
ACCEPT_TOKEN(anon_sym_RPAREN);
END_STATE();
case 18:
ACCEPT_TOKEN(anon_sym_STAR);
END_STATE();
case 19:
if (lookahead == '=')
ADVANCE(20);
END_STATE();
case 20:
ACCEPT_TOKEN(anon_sym_PLUS_EQ);
END_STATE();
case 21:
ACCEPT_TOKEN(anon_sym_DASH);
END_STATE();
case 22:
ACCEPT_TOKEN(anon_sym_SLASH);
END_STATE();
case 23:
ACCEPT_TOKEN(anon_sym_0);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z'))
ADVANCE(24);
END_STATE();
case 24:
ACCEPT_TOKEN(sym_simple_variable_name);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z'))
ADVANCE(24);
END_STATE();
case 25:
ACCEPT_TOKEN(anon_sym_COLON);
if (lookahead == '-')
ADVANCE(26);
if (lookahead == '?')
ADVANCE(27);
END_STATE();
case 26:
ACCEPT_TOKEN(anon_sym_COLON_DASH);
END_STATE();
case 27:
ACCEPT_TOKEN(anon_sym_COLON_QMARK);
END_STATE();
case 28:
ACCEPT_TOKEN(anon_sym_SEMI);
if (lookahead == ';')
ADVANCE(29);
END_STATE();
case 29:
ACCEPT_TOKEN(anon_sym_SEMI_SEMI);
END_STATE();
case 30:
ACCEPT_TOKEN(anon_sym_LT);
if (lookahead == '&')
ADVANCE(31);
if (lookahead == '(')
ADVANCE(32);
if (lookahead == '<')
ADVANCE(33);
END_STATE();
case 31:
ACCEPT_TOKEN(anon_sym_LT_AMP);
END_STATE();
case 32:
ACCEPT_TOKEN(anon_sym_LT_LPAREN);
END_STATE();
case 33:
ACCEPT_TOKEN(anon_sym_LT_LT);
if (lookahead == '-')
ADVANCE(34);
END_STATE();
case 34:
ACCEPT_TOKEN(anon_sym_LT_LT_DASH);
END_STATE();
case 35:
ACCEPT_TOKEN(anon_sym_EQ);
END_STATE();
case 36:
ACCEPT_TOKEN(anon_sym_GT);
if (lookahead == '&')
ADVANCE(37);
if (lookahead == '(')
ADVANCE(38);
if (lookahead == '>')
ADVANCE(39);
END_STATE();
case 37:
ACCEPT_TOKEN(anon_sym_GT_AMP);
END_STATE();
case 38:
ACCEPT_TOKEN(anon_sym_GT_LPAREN);
END_STATE();
case 39:
ACCEPT_TOKEN(anon_sym_GT_GT);
END_STATE();
case 40:
ACCEPT_TOKEN(anon_sym_QMARK);
END_STATE();
case 41:
ACCEPT_TOKEN(anon_sym_AT);
END_STATE();
case 42:
ACCEPT_TOKEN(anon_sym_LBRACK);
if (lookahead == '[')
ADVANCE(43);
END_STATE();
case 43:
ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK);
END_STATE();
case 44:
if (lookahead == '\n')
SKIP(0);
END_STATE();
case 45:
ACCEPT_TOKEN(anon_sym_RBRACK);
if (lookahead == ']')
ADVANCE(46);
END_STATE();
case 46:
ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK);
END_STATE();
case 47:
ACCEPT_TOKEN(anon_sym__);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z'))
ADVANCE(24);
END_STATE();
case 48:
ACCEPT_TOKEN(anon_sym_BQUOTE);
END_STATE();
case 49:
ACCEPT_TOKEN(anon_sym_LBRACE);
END_STATE();
case 50:
ACCEPT_TOKEN(anon_sym_PIPE);
if (lookahead == '&')
ADVANCE(51);
if (lookahead == '|')
ADVANCE(52);
END_STATE();
case 51:
ACCEPT_TOKEN(anon_sym_PIPE_AMP);
END_STATE();
case 52:
ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
END_STATE();
case 53:
ACCEPT_TOKEN(anon_sym_RBRACE);
END_STATE();
case 54:
if (lookahead == 0)
ADVANCE(1);
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '&')
ADVANCE(56);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == '(')
ADVANCE(16);
if (lookahead == '<')
ADVANCE(57);
if (lookahead == '>')
ADVANCE(36);
if (lookahead == '[')
ADVANCE(58);
if (lookahead == '\\')
ADVANCE(62);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == 'c')
ADVANCE(63);
if (lookahead == 'd')
ADVANCE(67);
if (lookahead == 'e')
ADVANCE(74);
if (lookahead == 'f')
ADVANCE(80);
if (lookahead == 'i')
ADVANCE(90);
if (lookahead == 'l')
ADVANCE(92);
if (lookahead == 'r')
ADVANCE(97);
if (lookahead == 't')
ADVANCE(105);
if (lookahead == 'w')
ADVANCE(112);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(54);
if ((lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 55:
ACCEPT_TOKEN(sym_comment);
if (lookahead != 0 &&
lookahead != '\n')
ADVANCE(55);
END_STATE();
case 56:
if (lookahead == '>')
ADVANCE(12);
END_STATE();
case 57:
ACCEPT_TOKEN(anon_sym_LT);
if (lookahead == '&')
ADVANCE(31);
if (lookahead == '(')
ADVANCE(32);
END_STATE();
case 58:
ACCEPT_TOKEN(anon_sym_LBRACK);
if (lookahead == '[')
ADVANCE(59);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 59:
ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 60:
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 61:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 62:
if (lookahead == '\n')
SKIP(54);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 63:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'a')
ADVANCE(64);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != 'a' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 64:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 's')
ADVANCE(65);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 65:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'e')
ADVANCE(66);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 66:
ACCEPT_TOKEN(anon_sym_case);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 67:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'e')
ADVANCE(68);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 68:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'c')
ADVANCE(69);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 69:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'l')
ADVANCE(70);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 70:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'a')
ADVANCE(71);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != 'a' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 71:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'r')
ADVANCE(72);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 72:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'e')
ADVANCE(73);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 73:
ACCEPT_TOKEN(anon_sym_declare);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 74:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'x')
ADVANCE(75);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 75:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'p')
ADVANCE(76);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 76:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'o')
ADVANCE(77);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 77:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'r')
ADVANCE(78);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 78:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 't')
ADVANCE(79);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 79:
ACCEPT_TOKEN(anon_sym_export);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 80:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'o')
ADVANCE(81);
if (lookahead == 'u')
ADVANCE(83);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 81:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'r')
ADVANCE(82);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 82:
ACCEPT_TOKEN(anon_sym_for);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 83:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'n')
ADVANCE(84);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 84:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'c')
ADVANCE(85);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 85:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 't')
ADVANCE(86);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 86:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'i')
ADVANCE(87);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 87:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'o')
ADVANCE(88);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 88:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'n')
ADVANCE(89);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 89:
ACCEPT_TOKEN(anon_sym_function);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 90:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'f')
ADVANCE(91);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 91:
ACCEPT_TOKEN(anon_sym_if);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 92:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'o')
ADVANCE(93);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 93:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'c')
ADVANCE(94);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 94:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'a')
ADVANCE(95);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != 'a' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 95:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'l')
ADVANCE(96);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 96:
ACCEPT_TOKEN(anon_sym_local);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 97:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'e')
ADVANCE(98);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 98:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'a')
ADVANCE(99);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != 'a' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 99:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'd')
ADVANCE(100);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 100:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'o')
ADVANCE(101);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 101:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'n')
ADVANCE(102);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 102:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'l')
ADVANCE(103);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 103:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'y')
ADVANCE(104);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 104:
ACCEPT_TOKEN(anon_sym_readonly);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 105:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'y')
ADVANCE(106);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 106:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'p')
ADVANCE(107);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 107:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'e')
ADVANCE(108);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 108:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 's')
ADVANCE(109);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 109:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'e')
ADVANCE(110);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 110:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 't')
ADVANCE(111);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 111:
ACCEPT_TOKEN(anon_sym_typeset);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 112:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'h')
ADVANCE(113);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 113:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'i')
ADVANCE(114);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 114:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'l')
ADVANCE(115);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 115:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'e')
ADVANCE(116);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 116:
ACCEPT_TOKEN(anon_sym_while);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 117:
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '%')
ADVANCE(9);
if (lookahead == '&')
ADVANCE(118);
if (lookahead == '(')
ADVANCE(16);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == '+')
ADVANCE(19);
if (lookahead == '/')
ADVANCE(22);
if (lookahead == ':')
ADVANCE(25);
if (lookahead == '=')
ADVANCE(35);
if (lookahead == '@')
ADVANCE(41);
if (lookahead == '[')
ADVANCE(119);
if (lookahead == '\\')
SKIP(120);
if (lookahead == ']')
ADVANCE(121);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == 'd')
ADVANCE(122);
if (lookahead == 'e')
ADVANCE(124);
if (lookahead == 'f')
ADVANCE(130);
if (lookahead == 'i')
ADVANCE(132);
if (lookahead == 't')
ADVANCE(134);
if (lookahead == '{')
ADVANCE(49);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '}')
ADVANCE(53);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(117);
END_STATE();
case 118:
if (lookahead == '&')
ADVANCE(11);
END_STATE();
case 119:
ACCEPT_TOKEN(anon_sym_LBRACK);
END_STATE();
case 120:
if (lookahead == '\n')
SKIP(117);
END_STATE();
case 121:
ACCEPT_TOKEN(anon_sym_RBRACK);
END_STATE();
case 122:
if (lookahead == 'o')
ADVANCE(123);
END_STATE();
case 123:
ACCEPT_TOKEN(anon_sym_do);
END_STATE();
case 124:
if (lookahead == 'l')
ADVANCE(125);
END_STATE();
case 125:
if (lookahead == 'i')
ADVANCE(126);
if (lookahead == 's')
ADVANCE(128);
END_STATE();
case 126:
if (lookahead == 'f')
ADVANCE(127);
END_STATE();
case 127:
ACCEPT_TOKEN(anon_sym_elif);
END_STATE();
case 128:
if (lookahead == 'e')
ADVANCE(129);
END_STATE();
case 129:
ACCEPT_TOKEN(anon_sym_else);
END_STATE();
case 130:
if (lookahead == 'i')
ADVANCE(131);
END_STATE();
case 131:
ACCEPT_TOKEN(anon_sym_fi);
END_STATE();
case 132:
if (lookahead == 'n')
ADVANCE(133);
END_STATE();
case 133:
ACCEPT_TOKEN(anon_sym_in);
END_STATE();
case 134:
if (lookahead == 'h')
ADVANCE(135);
END_STATE();
case 135:
if (lookahead == 'e')
ADVANCE(136);
END_STATE();
case 136:
if (lookahead == 'n')
ADVANCE(137);
END_STATE();
case 137:
ACCEPT_TOKEN(anon_sym_then);
END_STATE();
case 138:
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '&')
ADVANCE(56);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == '<')
ADVANCE(57);
if (lookahead == '>')
ADVANCE(36);
if (lookahead == '\\')
ADVANCE(139);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(138);
if (lookahead != 0 &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 139:
if (lookahead == '\n')
SKIP(138);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 140:
if (lookahead == '\n')
ADVANCE(2);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '&')
ADVANCE(141);
if (lookahead == '-')
ADVANCE(21);
if (lookahead == ';')
ADVANCE(28);
if (lookahead == '\\')
SKIP(142);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '\t' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(140);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z'))
ADVANCE(24);
END_STATE();
case 141:
ACCEPT_TOKEN(anon_sym_AMP);
if (lookahead == '&')
ADVANCE(11);
END_STATE();
case 142:
if (lookahead == '\n')
SKIP(140);
END_STATE();
case 143:
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(144);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '\\')
ADVANCE(146);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
ADVANCE(147);
if (lookahead != 0)
ADVANCE(145);
END_STATE();
case 144:
ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH);
if (lookahead == '\n')
ADVANCE(145);
if (lookahead != 0 &&
lookahead != '\"' &&
lookahead != '$' &&
lookahead != '`')
ADVANCE(144);
END_STATE();
case 145:
ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH);
if (lookahead != 0 &&
lookahead != '\"' &&
lookahead != '$' &&
lookahead != '`')
ADVANCE(145);
END_STATE();
case 146:
ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH);
if (lookahead == '\n')
ADVANCE(147);
if (lookahead != 0 &&
lookahead != '\"' &&
lookahead != '$' &&
lookahead != '`')
ADVANCE(145);
END_STATE();
case 147:
ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH);
if (lookahead == '#')
ADVANCE(144);
if (lookahead == '\\')
ADVANCE(146);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
ADVANCE(147);
if (lookahead != 0 &&
(lookahead < '\"' || lookahead > '$') &&
lookahead != '`')
ADVANCE(145);
END_STATE();
case 148:
if (lookahead == '\n')
ADVANCE(2);
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '&')
ADVANCE(10);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == ';')
ADVANCE(28);
if (lookahead == '<')
ADVANCE(30);
if (lookahead == '>')
ADVANCE(36);
if (lookahead == '\\')
ADVANCE(149);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '|')
ADVANCE(150);
if (lookahead == '\t' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(148);
if (lookahead != 0 &&
(lookahead < '&' || lookahead > ')') &&
(lookahead < '{' || lookahead > '}'))
ADVANCE(61);
END_STATE();
case 149:
if (lookahead == '\n')
SKIP(148);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 150:
ACCEPT_TOKEN(anon_sym_PIPE);
if (lookahead == '&')
ADVANCE(51);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == '|')
ADVANCE(151);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
(lookahead < '{' || lookahead > '}'))
ADVANCE(61);
END_STATE();
case 151:
ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 152:
if (lookahead == '!')
ADVANCE(3);
if (lookahead == '#')
ADVANCE(5);
if (lookahead == '$')
ADVANCE(153);
if (lookahead == '%')
ADVANCE(9);
if (lookahead == '*')
ADVANCE(18);
if (lookahead == '-')
ADVANCE(21);
if (lookahead == '/')
ADVANCE(22);
if (lookahead == '0')
ADVANCE(23);
if (lookahead == ':')
ADVANCE(25);
if (lookahead == '=')
ADVANCE(35);
if (lookahead == '?')
ADVANCE(40);
if (lookahead == '@')
ADVANCE(41);
if (lookahead == '[')
ADVANCE(119);
if (lookahead == '\\')
SKIP(154);
if (lookahead == '_')
ADVANCE(47);
if (lookahead == '}')
ADVANCE(53);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(152);
if (('1' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z'))
ADVANCE(24);
END_STATE();
case 153:
ACCEPT_TOKEN(anon_sym_DOLLAR);
END_STATE();
case 154:
if (lookahead == '\n')
SKIP(152);
END_STATE();
case 155:
if (lookahead == '\n')
ADVANCE(2);
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '&')
ADVANCE(10);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == '(')
ADVANCE(16);
if (lookahead == ';')
ADVANCE(28);
if (lookahead == '<')
ADVANCE(30);
if (lookahead == '>')
ADVANCE(36);
if (lookahead == '\\')
ADVANCE(156);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '{')
ADVANCE(49);
if (lookahead == '|')
ADVANCE(150);
if (lookahead == '\t' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(155);
if (lookahead != 0 &&
(lookahead < '&' || lookahead > ')') &&
(lookahead < '{' || lookahead > '}'))
ADVANCE(61);
END_STATE();
case 156:
if (lookahead == '\n')
SKIP(155);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 157:
if (lookahead == 0)
ADVANCE(1);
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '&')
ADVANCE(56);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == '(')
ADVANCE(16);
if (lookahead == ';')
ADVANCE(158);
if (lookahead == '<')
ADVANCE(57);
if (lookahead == '>')
ADVANCE(36);
if (lookahead == '[')
ADVANCE(58);
if (lookahead == '\\')
ADVANCE(159);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == 'c')
ADVANCE(63);
if (lookahead == 'd')
ADVANCE(67);
if (lookahead == 'e')
ADVANCE(74);
if (lookahead == 'f')
ADVANCE(80);
if (lookahead == 'i')
ADVANCE(90);
if (lookahead == 'l')
ADVANCE(92);
if (lookahead == 'r')
ADVANCE(97);
if (lookahead == 't')
ADVANCE(105);
if (lookahead == 'w')
ADVANCE(112);
if (lookahead == '}')
ADVANCE(53);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(157);
if ((lookahead < '&' || lookahead > ')') &&
lookahead != '{')
ADVANCE(61);
END_STATE();
case 158:
if (lookahead == ';')
ADVANCE(29);
END_STATE();
case 159:
if (lookahead == '\n')
SKIP(157);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 160:
if (lookahead == '\n')
ADVANCE(2);
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '&')
ADVANCE(10);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == ';')
ADVANCE(28);
if (lookahead == '<')
ADVANCE(57);
if (lookahead == '>')
ADVANCE(36);
if (lookahead == '\\')
ADVANCE(161);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '|')
ADVANCE(150);
if (lookahead == '\t' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(160);
if (lookahead != 0 &&
(lookahead < '&' || lookahead > ')') &&
(lookahead < '{' || lookahead > '}'))
ADVANCE(61);
END_STATE();
case 161:
if (lookahead == '\n')
SKIP(160);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 162:
if (lookahead == '\n')
ADVANCE(2);
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '&')
ADVANCE(10);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == ';')
ADVANCE(28);
if (lookahead == '<')
ADVANCE(30);
if (lookahead == '>')
ADVANCE(36);
if (lookahead == '\\')
ADVANCE(163);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '|')
ADVANCE(150);
if (lookahead == '\t' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(162);
if (lookahead != 0 &&
(lookahead < '&' || lookahead > ')') &&
(lookahead < '{' || lookahead > '}'))
ADVANCE(61);
END_STATE();
case 163:
if (lookahead == '\n')
SKIP(162);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 164:
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == '(')
ADVANCE(16);
if (lookahead == '<')
ADVANCE(165);
if (lookahead == '>')
ADVANCE(166);
if (lookahead == '\\')
ADVANCE(167);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(164);
if (lookahead != 0 &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 165:
if (lookahead == '(')
ADVANCE(32);
END_STATE();
case 166:
if (lookahead == '(')
ADVANCE(38);
END_STATE();
case 167:
if (lookahead == '\n')
SKIP(164);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 168:
if (lookahead == '\n')
ADVANCE(2);
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '&')
ADVANCE(10);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == ';')
ADVANCE(28);
if (lookahead == '<')
ADVANCE(57);
if (lookahead == '>')
ADVANCE(36);
if (lookahead == '\\')
ADVANCE(169);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '|')
ADVANCE(150);
if (lookahead == '\t' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(168);
if (lookahead != 0 &&
(lookahead < '&' || lookahead > ')') &&
(lookahead < '{' || lookahead > '}'))
ADVANCE(61);
END_STATE();
case 169:
if (lookahead == '\n')
SKIP(168);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 170:
if (lookahead == '\n')
ADVANCE(2);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '&')
ADVANCE(171);
if (lookahead == ';')
ADVANCE(28);
if (lookahead == '\\')
SKIP(172);
if (lookahead == 'i')
ADVANCE(132);
if (lookahead == '\t' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(170);
END_STATE();
case 171:
ACCEPT_TOKEN(anon_sym_AMP);
END_STATE();
case 172:
if (lookahead == '\n')
SKIP(170);
END_STATE();
case 173:
if (lookahead == '\n')
ADVANCE(2);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '&')
ADVANCE(141);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == '-')
ADVANCE(21);
if (lookahead == ';')
ADVANCE(28);
if (lookahead == '\\')
SKIP(174);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '\t' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(173);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z'))
ADVANCE(24);
END_STATE();
case 174:
if (lookahead == '\n')
SKIP(173);
END_STATE();
case 175:
if (lookahead == '\n')
ADVANCE(2);
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '&')
ADVANCE(10);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == '(')
ADVANCE(16);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == ';')
ADVANCE(28);
if (lookahead == '<')
ADVANCE(30);
if (lookahead == '>')
ADVANCE(36);
if (lookahead == '\\')
ADVANCE(176);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '{')
ADVANCE(49);
if (lookahead == '|')
ADVANCE(150);
if (lookahead == '\t' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(175);
if (lookahead != 0 &&
(lookahead < '{' || lookahead > '}'))
ADVANCE(61);
END_STATE();
case 176:
if (lookahead == '\n')
SKIP(175);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 177:
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == '<')
ADVANCE(165);
if (lookahead == '>')
ADVANCE(166);
if (lookahead == '\\')
ADVANCE(178);
if (lookahead == ']')
ADVANCE(179);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(177);
if (lookahead != 0 &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 178:
if (lookahead == '\n')
SKIP(177);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 179:
ACCEPT_TOKEN(anon_sym_RBRACK);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 180:
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == '<')
ADVANCE(165);
if (lookahead == '>')
ADVANCE(166);
if (lookahead == '\\')
ADVANCE(181);
if (lookahead == ']')
ADVANCE(182);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(180);
if (lookahead != 0 &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 181:
if (lookahead == '\n')
SKIP(180);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 182:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == ']')
ADVANCE(183);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 183:
ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 184:
if (lookahead == '\n')
ADVANCE(2);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '&')
ADVANCE(141);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == ';')
ADVANCE(28);
if (lookahead == '\\')
SKIP(185);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '\t' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(184);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z'))
ADVANCE(24);
END_STATE();
case 185:
if (lookahead == '\n')
SKIP(184);
END_STATE();
case 186:
if (lookahead == '\n')
ADVANCE(2);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '&')
ADVANCE(141);
if (lookahead == ';')
ADVANCE(28);
if (lookahead == '\\')
SKIP(187);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '\t' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(186);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z'))
ADVANCE(24);
END_STATE();
case 187:
if (lookahead == '\n')
SKIP(186);
END_STATE();
case 188:
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '&')
ADVANCE(118);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == '-')
ADVANCE(21);
if (lookahead == '\\')
SKIP(189);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(188);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z'))
ADVANCE(24);
END_STATE();
case 189:
if (lookahead == '\n')
SKIP(188);
END_STATE();
case 190:
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '&')
ADVANCE(191);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == '<')
ADVANCE(30);
if (lookahead == '>')
ADVANCE(36);
if (lookahead == '\\')
ADVANCE(192);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '|')
ADVANCE(150);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(190);
if (lookahead != 0 &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
(lookahead < '{' || lookahead > '}'))
ADVANCE(61);
END_STATE();
case 191:
if (lookahead == '&')
ADVANCE(11);
if (lookahead == '>')
ADVANCE(12);
END_STATE();
case 192:
if (lookahead == '\n')
SKIP(190);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 193:
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '&')
ADVANCE(191);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == '(')
ADVANCE(16);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == '<')
ADVANCE(30);
if (lookahead == '>')
ADVANCE(36);
if (lookahead == '\\')
ADVANCE(194);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '{')
ADVANCE(49);
if (lookahead == '|')
ADVANCE(150);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(193);
if (lookahead != 0 &&
lookahead != ';' &&
lookahead != '<' &&
(lookahead < '{' || lookahead > '}'))
ADVANCE(61);
END_STATE();
case 194:
if (lookahead == '\n')
SKIP(193);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 195:
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '&')
ADVANCE(191);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == '<')
ADVANCE(57);
if (lookahead == '>')
ADVANCE(36);
if (lookahead == '\\')
ADVANCE(196);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '|')
ADVANCE(150);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(195);
if (lookahead != 0 &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
(lookahead < '{' || lookahead > '}'))
ADVANCE(61);
END_STATE();
case 196:
if (lookahead == '\n')
SKIP(195);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 197:
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '&')
ADVANCE(118);
if (lookahead == '-')
ADVANCE(21);
if (lookahead == '\\')
SKIP(198);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(197);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z'))
ADVANCE(24);
END_STATE();
case 198:
if (lookahead == '\n')
SKIP(197);
END_STATE();
case 199:
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '&')
ADVANCE(191);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == '<')
ADVANCE(30);
if (lookahead == '>')
ADVANCE(36);
if (lookahead == '\\')
ADVANCE(200);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '|')
ADVANCE(150);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(199);
if (lookahead != 0 &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
(lookahead < '{' || lookahead > '}'))
ADVANCE(61);
END_STATE();
case 200:
if (lookahead == '\n')
SKIP(199);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 201:
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '&')
ADVANCE(191);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == '(')
ADVANCE(16);
if (lookahead == '<')
ADVANCE(30);
if (lookahead == '>')
ADVANCE(36);
if (lookahead == '\\')
ADVANCE(202);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '{')
ADVANCE(49);
if (lookahead == '|')
ADVANCE(150);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(201);
if (lookahead != 0 &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
(lookahead < '{' || lookahead > '}'))
ADVANCE(61);
END_STATE();
case 202:
if (lookahead == '\n')
SKIP(201);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 203:
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '&')
ADVANCE(191);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == '<')
ADVANCE(57);
if (lookahead == '>')
ADVANCE(36);
if (lookahead == '\\')
ADVANCE(204);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '|')
ADVANCE(150);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(203);
if (lookahead != 0 &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
(lookahead < '{' || lookahead > '}'))
ADVANCE(61);
END_STATE();
case 204:
if (lookahead == '\n')
SKIP(203);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 205:
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '&')
ADVANCE(56);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == '(')
ADVANCE(16);
if (lookahead == '<')
ADVANCE(57);
if (lookahead == '>')
ADVANCE(36);
if (lookahead == '[')
ADVANCE(58);
if (lookahead == '\\')
ADVANCE(206);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == 'c')
ADVANCE(63);
if (lookahead == 'd')
ADVANCE(67);
if (lookahead == 'e')
ADVANCE(74);
if (lookahead == 'f')
ADVANCE(80);
if (lookahead == 'i')
ADVANCE(90);
if (lookahead == 'l')
ADVANCE(92);
if (lookahead == 'r')
ADVANCE(97);
if (lookahead == 't')
ADVANCE(105);
if (lookahead == 'w')
ADVANCE(112);
if (lookahead == '}')
ADVANCE(53);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(205);
if (lookahead != 0 &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '{')
ADVANCE(61);
END_STATE();
case 206:
if (lookahead == '\n')
SKIP(205);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 207:
if (lookahead == '\n')
ADVANCE(2);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '&')
ADVANCE(10);
if (lookahead == ';')
ADVANCE(28);
if (lookahead == '<')
ADVANCE(208);
if (lookahead == '>')
ADVANCE(209);
if (lookahead == '\\')
SKIP(210);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '\t' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(207);
END_STATE();
case 208:
ACCEPT_TOKEN(anon_sym_LT);
if (lookahead == '&')
ADVANCE(31);
END_STATE();
case 209:
ACCEPT_TOKEN(anon_sym_GT);
if (lookahead == '&')
ADVANCE(37);
if (lookahead == '>')
ADVANCE(39);
END_STATE();
case 210:
if (lookahead == '\n')
SKIP(207);
END_STATE();
case 211:
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '\\')
SKIP(212);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(211);
END_STATE();
case 212:
if (lookahead == '\n')
SKIP(211);
END_STATE();
case 213:
if (lookahead == '\n')
ADVANCE(2);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '&')
ADVANCE(10);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == ';')
ADVANCE(28);
if (lookahead == '<')
ADVANCE(214);
if (lookahead == '>')
ADVANCE(209);
if (lookahead == '\\')
SKIP(215);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '\t' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(213);
END_STATE();
case 214:
ACCEPT_TOKEN(anon_sym_LT);
if (lookahead == '&')
ADVANCE(31);
if (lookahead == '<')
ADVANCE(33);
END_STATE();
case 215:
if (lookahead == '\n')
SKIP(213);
END_STATE();
case 216:
if (lookahead == '\n')
ADVANCE(2);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '&')
ADVANCE(10);
if (lookahead == ';')
ADVANCE(28);
if (lookahead == '<')
ADVANCE(214);
if (lookahead == '>')
ADVANCE(209);
if (lookahead == '\\')
SKIP(217);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '\t' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(216);
END_STATE();
case 217:
if (lookahead == '\n')
SKIP(216);
END_STATE();
case 218:
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '\\')
SKIP(219);
if (lookahead == ']')
ADVANCE(121);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(218);
END_STATE();
case 219:
if (lookahead == '\n')
SKIP(218);
END_STATE();
case 220:
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == '<')
ADVANCE(165);
if (lookahead == '>')
ADVANCE(166);
if (lookahead == '\\')
ADVANCE(221);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '}')
ADVANCE(53);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(220);
if (lookahead != 0 &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '{')
ADVANCE(61);
END_STATE();
case 221:
if (lookahead == '\n')
SKIP(220);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 222:
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '&')
ADVANCE(56);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == '(')
ADVANCE(16);
if (lookahead == '<')
ADVANCE(57);
if (lookahead == '>')
ADVANCE(36);
if (lookahead == '[')
ADVANCE(58);
if (lookahead == '\\')
ADVANCE(223);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == 'c')
ADVANCE(63);
if (lookahead == 'd')
ADVANCE(224);
if (lookahead == 'e')
ADVANCE(74);
if (lookahead == 'f')
ADVANCE(80);
if (lookahead == 'i')
ADVANCE(90);
if (lookahead == 'l')
ADVANCE(92);
if (lookahead == 'r')
ADVANCE(97);
if (lookahead == 't')
ADVANCE(105);
if (lookahead == 'w')
ADVANCE(112);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(222);
if (lookahead != 0 &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 223:
if (lookahead == '\n')
SKIP(222);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 224:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'e')
ADVANCE(68);
if (lookahead == 'o')
ADVANCE(225);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 225:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'n')
ADVANCE(226);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 226:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'e')
ADVANCE(227);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 227:
ACCEPT_TOKEN(anon_sym_done);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 228:
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '&')
ADVANCE(56);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == '(')
ADVANCE(16);
if (lookahead == '<')
ADVANCE(57);
if (lookahead == '>')
ADVANCE(36);
if (lookahead == '[')
ADVANCE(58);
if (lookahead == '\\')
ADVANCE(229);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == 'c')
ADVANCE(63);
if (lookahead == 'd')
ADVANCE(67);
if (lookahead == 'e')
ADVANCE(230);
if (lookahead == 'f')
ADVANCE(236);
if (lookahead == 'i')
ADVANCE(90);
if (lookahead == 'l')
ADVANCE(92);
if (lookahead == 'r')
ADVANCE(97);
if (lookahead == 't')
ADVANCE(105);
if (lookahead == 'w')
ADVANCE(112);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(228);
if (lookahead != 0 &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 229:
if (lookahead == '\n')
SKIP(228);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 230:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'l')
ADVANCE(231);
if (lookahead == 'x')
ADVANCE(75);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 231:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'i')
ADVANCE(232);
if (lookahead == 's')
ADVANCE(234);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 232:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'f')
ADVANCE(233);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 233:
ACCEPT_TOKEN(anon_sym_elif);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 234:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'e')
ADVANCE(235);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 235:
ACCEPT_TOKEN(anon_sym_else);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 236:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'i')
ADVANCE(237);
if (lookahead == 'o')
ADVANCE(81);
if (lookahead == 'u')
ADVANCE(83);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 237:
ACCEPT_TOKEN(anon_sym_fi);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 238:
if (lookahead == '\n')
ADVANCE(2);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '&')
ADVANCE(10);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == ';')
ADVANCE(28);
if (lookahead == '<')
ADVANCE(208);
if (lookahead == '>')
ADVANCE(209);
if (lookahead == '\\')
SKIP(239);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '\t' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(238);
END_STATE();
case 239:
if (lookahead == '\n')
SKIP(238);
END_STATE();
case 240:
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '&')
ADVANCE(56);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == '(')
ADVANCE(16);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == '<')
ADVANCE(57);
if (lookahead == '>')
ADVANCE(36);
if (lookahead == '[')
ADVANCE(58);
if (lookahead == '\\')
ADVANCE(241);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == 'c')
ADVANCE(63);
if (lookahead == 'd')
ADVANCE(67);
if (lookahead == 'e')
ADVANCE(74);
if (lookahead == 'f')
ADVANCE(80);
if (lookahead == 'i')
ADVANCE(90);
if (lookahead == 'l')
ADVANCE(92);
if (lookahead == 'r')
ADVANCE(97);
if (lookahead == 't')
ADVANCE(105);
if (lookahead == 'w')
ADVANCE(112);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(240);
if (lookahead != 0 &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 241:
if (lookahead == '\n')
SKIP(240);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 242:
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == '<')
ADVANCE(165);
if (lookahead == '>')
ADVANCE(166);
if (lookahead == '\\')
ADVANCE(243);
if (lookahead == ']')
ADVANCE(179);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '}')
ADVANCE(53);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(242);
if (lookahead != 0 &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '{')
ADVANCE(61);
END_STATE();
case 243:
if (lookahead == '\n')
SKIP(242);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 244:
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '&')
ADVANCE(118);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == '\\')
SKIP(245);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(244);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z'))
ADVANCE(24);
END_STATE();
case 245:
if (lookahead == '\n')
SKIP(244);
END_STATE();
case 246:
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '&')
ADVANCE(118);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == '\\')
SKIP(247);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(246);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z'))
ADVANCE(24);
END_STATE();
case 247:
if (lookahead == '\n')
SKIP(246);
END_STATE();
case 248:
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '&')
ADVANCE(191);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == '<')
ADVANCE(208);
if (lookahead == '>')
ADVANCE(209);
if (lookahead == '\\')
SKIP(249);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(248);
END_STATE();
case 249:
if (lookahead == '\n')
SKIP(248);
END_STATE();
case 250:
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '&')
ADVANCE(191);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == '<')
ADVANCE(214);
if (lookahead == '>')
ADVANCE(209);
if (lookahead == '\\')
SKIP(251);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(250);
END_STATE();
case 251:
if (lookahead == '\n')
SKIP(250);
END_STATE();
case 252:
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '&')
ADVANCE(191);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == '<')
ADVANCE(214);
if (lookahead == '>')
ADVANCE(209);
if (lookahead == '\\')
SKIP(253);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(252);
END_STATE();
case 253:
if (lookahead == '\n')
SKIP(252);
END_STATE();
case 254:
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '&')
ADVANCE(118);
if (lookahead == '\\')
SKIP(255);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(254);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z'))
ADVANCE(24);
END_STATE();
case 255:
if (lookahead == '\n')
SKIP(254);
END_STATE();
case 256:
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '&')
ADVANCE(191);
if (lookahead == '<')
ADVANCE(208);
if (lookahead == '>')
ADVANCE(209);
if (lookahead == '\\')
SKIP(257);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(256);
END_STATE();
case 257:
if (lookahead == '\n')
SKIP(256);
END_STATE();
case 258:
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '&')
ADVANCE(191);
if (lookahead == '<')
ADVANCE(214);
if (lookahead == '>')
ADVANCE(209);
if (lookahead == '\\')
SKIP(259);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(258);
END_STATE();
case 259:
if (lookahead == '\n')
SKIP(258);
END_STATE();
case 260:
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(261);
if (lookahead == '\\')
SKIP(262);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(260);
END_STATE();
case 261:
ACCEPT_TOKEN(anon_sym_DOLLAR);
if (lookahead == '{')
ADVANCE(8);
END_STATE();
case 262:
if (lookahead == '\n')
SKIP(260);
END_STATE();
case 263:
if (lookahead == '#')
ADVANCE(55);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == '\\')
SKIP(264);
if (lookahead == ']')
ADVANCE(121);
if (lookahead == '|')
ADVANCE(265);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(263);
END_STATE();
case 264:
if (lookahead == '\n')
SKIP(263);
END_STATE();
case 265:
ACCEPT_TOKEN(anon_sym_PIPE);
END_STATE();
case 266:
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == '<')
ADVANCE(165);
if (lookahead == '>')
ADVANCE(166);
if (lookahead == '\\')
ADVANCE(267);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(266);
if (lookahead != 0 &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 267:
if (lookahead == '\n')
SKIP(266);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 268:
if (lookahead == '\n')
ADVANCE(2);
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '&')
ADVANCE(171);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == ';')
ADVANCE(28);
if (lookahead == '<')
ADVANCE(165);
if (lookahead == '>')
ADVANCE(166);
if (lookahead == '\\')
ADVANCE(269);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '\t' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(268);
if (lookahead != 0 &&
(lookahead < '&' || lookahead > ')') &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 269:
if (lookahead == '\n')
SKIP(268);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 270:
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '&')
ADVANCE(56);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == '(')
ADVANCE(16);
if (lookahead == '<')
ADVANCE(57);
if (lookahead == '>')
ADVANCE(36);
if (lookahead == '[')
ADVANCE(58);
if (lookahead == '\\')
ADVANCE(271);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == 'c')
ADVANCE(63);
if (lookahead == 'd')
ADVANCE(67);
if (lookahead == 'e')
ADVANCE(74);
if (lookahead == 'f')
ADVANCE(236);
if (lookahead == 'i')
ADVANCE(90);
if (lookahead == 'l')
ADVANCE(92);
if (lookahead == 'r')
ADVANCE(97);
if (lookahead == 't')
ADVANCE(105);
if (lookahead == 'w')
ADVANCE(112);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(270);
if (lookahead != 0 &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 271:
if (lookahead == '\n')
SKIP(270);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 272:
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == '<')
ADVANCE(165);
if (lookahead == '>')
ADVANCE(166);
if (lookahead == '\\')
ADVANCE(273);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == 'e')
ADVANCE(274);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(272);
if (lookahead != 0 &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 273:
if (lookahead == '\n')
SKIP(272);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 274:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 's')
ADVANCE(275);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 275:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'a')
ADVANCE(276);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != 'a' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 276:
ACCEPT_TOKEN(sym_word);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead == 'c')
ADVANCE(277);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 277:
ACCEPT_TOKEN(anon_sym_esac);
if (lookahead == '\\')
ADVANCE(60);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ' &&
(lookahead < '\"' || lookahead > '$') &&
(lookahead < '&' || lookahead > ')') &&
lookahead != ';' &&
lookahead != '<' &&
lookahead != '>' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 278:
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '\\')
SKIP(279);
if (lookahead == '}')
ADVANCE(53);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(278);
END_STATE();
case 279:
if (lookahead == '\n')
SKIP(278);
END_STATE();
case 280:
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '&')
ADVANCE(118);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == '-')
ADVANCE(21);
if (lookahead == '\\')
SKIP(281);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(280);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z'))
ADVANCE(24);
END_STATE();
case 281:
if (lookahead == '\n')
SKIP(280);
END_STATE();
case 282:
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '&')
ADVANCE(191);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == '<')
ADVANCE(208);
if (lookahead == '>')
ADVANCE(209);
if (lookahead == '\\')
SKIP(283);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(282);
END_STATE();
case 283:
if (lookahead == '\n')
SKIP(282);
END_STATE();
case 284:
if (lookahead == '\n')
ADVANCE(2);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '&')
ADVANCE(141);
if (lookahead == ';')
ADVANCE(28);
if (lookahead == '\\')
SKIP(285);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '\t' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(284);
END_STATE();
case 285:
if (lookahead == '\n')
SKIP(284);
END_STATE();
case 286:
if (lookahead == '#')
ADVANCE(55);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == '\\')
SKIP(287);
if (lookahead == '|')
ADVANCE(265);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(286);
END_STATE();
case 287:
if (lookahead == '\n')
SKIP(286);
END_STATE();
case 288:
if (lookahead == '\n')
ADVANCE(2);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '&')
ADVANCE(141);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == ';')
ADVANCE(28);
if (lookahead == '\\')
SKIP(289);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '\t' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(288);
END_STATE();
case 289:
if (lookahead == '\n')
SKIP(288);
END_STATE();
case 290:
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '&')
ADVANCE(118);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == '\\')
SKIP(291);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(290);
END_STATE();
case 291:
if (lookahead == '\n')
SKIP(290);
END_STATE();
case 292:
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '&')
ADVANCE(118);
if (lookahead == '\\')
SKIP(293);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(292);
END_STATE();
case 293:
if (lookahead == '\n')
SKIP(292);
END_STATE();
case 294:
if (lookahead == '\"')
ADVANCE(4);
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '$')
ADVANCE(6);
if (lookahead == '&')
ADVANCE(56);
if (lookahead == '\'')
ADVANCE(14);
if (lookahead == '(')
ADVANCE(16);
if (lookahead == ';')
ADVANCE(158);
if (lookahead == '<')
ADVANCE(57);
if (lookahead == '>')
ADVANCE(36);
if (lookahead == '[')
ADVANCE(58);
if (lookahead == '\\')
ADVANCE(295);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == 'c')
ADVANCE(63);
if (lookahead == 'd')
ADVANCE(67);
if (lookahead == 'e')
ADVANCE(74);
if (lookahead == 'f')
ADVANCE(80);
if (lookahead == 'i')
ADVANCE(90);
if (lookahead == 'l')
ADVANCE(92);
if (lookahead == 'r')
ADVANCE(97);
if (lookahead == 't')
ADVANCE(105);
if (lookahead == 'w')
ADVANCE(112);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(294);
if (lookahead != 0 &&
(lookahead < '&' || lookahead > ')') &&
lookahead != '{' &&
lookahead != '}')
ADVANCE(61);
END_STATE();
case 295:
if (lookahead == '\n')
SKIP(294);
if (lookahead != 0 &&
lookahead != '\t' &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != ' ')
ADVANCE(61);
END_STATE();
case 296:
if (lookahead == '#')
ADVANCE(55);
if (lookahead == '&')
ADVANCE(118);
if (lookahead == ')')
ADVANCE(17);
if (lookahead == '\\')
SKIP(297);
if (lookahead == '`')
ADVANCE(48);
if (lookahead == '|')
ADVANCE(50);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ')
SKIP(296);
END_STATE();
case 297:
if (lookahead == '\n')
SKIP(296);
END_STATE();
default:
return false;
}
}
static TSLexMode ts_lex_modes[STATE_COUNT] = {
[0] = {.lex_state = 0, .external_lex_state = 1},
[1] = {.lex_state = 54, .external_lex_state = 2},
[2] = {.lex_state = 54},
[3] = {.lex_state = 117},
[4] = {.lex_state = 138},
[5] = {.lex_state = 54, .external_lex_state = 2},
[6] = {.lex_state = 54, .external_lex_state = 2},
[7] = {.lex_state = 138},
[8] = {.lex_state = 138},
[9] = {.lex_state = 54, .external_lex_state = 2},
[10] = {.lex_state = 138},
[11] = {.lex_state = 138},
[12] = {.lex_state = 140, .external_lex_state = 3},
[13] = {.lex_state = 138},
[14] = {.lex_state = 143},
[15] = {.lex_state = 148, .external_lex_state = 4},
[16] = {.lex_state = 152},
[17] = {.lex_state = 152},
[18] = {.lex_state = 54, .external_lex_state = 2},
[19] = {.lex_state = 54, .external_lex_state = 2},
[20] = {.lex_state = 54, .external_lex_state = 2},
[21] = {.lex_state = 155, .external_lex_state = 4},
[22] = {.lex_state = 54},
[23] = {.lex_state = 157, .external_lex_state = 2},
[24] = {.lex_state = 140, .external_lex_state = 5},
[25] = {.lex_state = 148, .external_lex_state = 6},
[26] = {.lex_state = 160, .external_lex_state = 7},
[27] = {.lex_state = 117},
[28] = {.lex_state = 138, .external_lex_state = 2},
[29] = {.lex_state = 162, .external_lex_state = 6},
[30] = {.lex_state = 54, .external_lex_state = 2},
[31] = {.lex_state = 138, .external_lex_state = 2},
[32] = {.lex_state = 138},
[33] = {.lex_state = 138},
[34] = {.lex_state = 164, .external_lex_state = 8},
[35] = {.lex_state = 168, .external_lex_state = 7},
[36] = {.lex_state = 117},
[37] = {.lex_state = 117},
[38] = {.lex_state = 140, .external_lex_state = 5},
[39] = {.lex_state = 160, .external_lex_state = 7},
[40] = {.lex_state = 117},
[41] = {.lex_state = 143},
[42] = {.lex_state = 170, .external_lex_state = 9},
[43] = {.lex_state = 152},
[44] = {.lex_state = 152},
[45] = {.lex_state = 54, .external_lex_state = 2},
[46] = {.lex_state = 54, .external_lex_state = 2},
[47] = {.lex_state = 54, .external_lex_state = 2},
[48] = {.lex_state = 170, .external_lex_state = 5},
[49] = {.lex_state = 117},
[50] = {.lex_state = 117},
[51] = {.lex_state = 138},
[52] = {.lex_state = 173, .external_lex_state = 3},
[53] = {.lex_state = 162, .external_lex_state = 4},
[54] = {.lex_state = 175, .external_lex_state = 4},
[55] = {.lex_state = 173, .external_lex_state = 5},
[56] = {.lex_state = 162, .external_lex_state = 6},
[57] = {.lex_state = 168, .external_lex_state = 7},
[58] = {.lex_state = 117},
[59] = {.lex_state = 54, .external_lex_state = 2},
[60] = {.lex_state = 138, .external_lex_state = 2},
[61] = {.lex_state = 143},
[62] = {.lex_state = 177, .external_lex_state = 10},
[63] = {.lex_state = 152},
[64] = {.lex_state = 152},
[65] = {.lex_state = 54, .external_lex_state = 2},
[66] = {.lex_state = 54, .external_lex_state = 2},
[67] = {.lex_state = 54, .external_lex_state = 2},
[68] = {.lex_state = 177},
[69] = {.lex_state = 177},
[70] = {.lex_state = 143},
[71] = {.lex_state = 180, .external_lex_state = 10},
[72] = {.lex_state = 152},
[73] = {.lex_state = 152},
[74] = {.lex_state = 54, .external_lex_state = 2},
[75] = {.lex_state = 54, .external_lex_state = 2},
[76] = {.lex_state = 54, .external_lex_state = 2},
[77] = {.lex_state = 180},
[78] = {.lex_state = 180},
[79] = {.lex_state = 117},
[80] = {.lex_state = 138},
[81] = {.lex_state = 184, .external_lex_state = 3},
[82] = {.lex_state = 117},
[83] = {.lex_state = 140, .external_lex_state = 3},
[84] = {.lex_state = 186, .external_lex_state = 3},
[85] = {.lex_state = 143},
[86] = {.lex_state = 138, .external_lex_state = 11},
[87] = {.lex_state = 152},
[88] = {.lex_state = 152},
[89] = {.lex_state = 54, .external_lex_state = 2},
[90] = {.lex_state = 54, .external_lex_state = 2},
[91] = {.lex_state = 54, .external_lex_state = 2},
[92] = {.lex_state = 138, .external_lex_state = 2},
[93] = {.lex_state = 162, .external_lex_state = 4},
[94] = {.lex_state = 143},
[95] = {.lex_state = 152},
[96] = {.lex_state = 152},
[97] = {.lex_state = 54, .external_lex_state = 2},
[98] = {.lex_state = 54, .external_lex_state = 2},
[99] = {.lex_state = 143},
[100] = {.lex_state = 138},
[101] = {.lex_state = 148, .external_lex_state = 4},
[102] = {.lex_state = 162, .external_lex_state = 4},
[103] = {.lex_state = 162, .external_lex_state = 4},
[104] = {.lex_state = 162, .external_lex_state = 4},
[105] = {.lex_state = 117},
[106] = {.lex_state = 152},
[107] = {.lex_state = 117},
[108] = {.lex_state = 117},
[109] = {.lex_state = 117},
[110] = {.lex_state = 138},
[111] = {.lex_state = 54, .external_lex_state = 2},
[112] = {.lex_state = 54, .external_lex_state = 2},
[113] = {.lex_state = 138},
[114] = {.lex_state = 138},
[115] = {.lex_state = 54, .external_lex_state = 2},
[116] = {.lex_state = 138},
[117] = {.lex_state = 138},
[118] = {.lex_state = 188, .external_lex_state = 12},
[119] = {.lex_state = 143},
[120] = {.lex_state = 190, .external_lex_state = 13},
[121] = {.lex_state = 152},
[122] = {.lex_state = 152},
[123] = {.lex_state = 54, .external_lex_state = 2},
[124] = {.lex_state = 54, .external_lex_state = 2},
[125] = {.lex_state = 54, .external_lex_state = 2},
[126] = {.lex_state = 193, .external_lex_state = 13},
[127] = {.lex_state = 117},
[128] = {.lex_state = 190, .external_lex_state = 14},
[129] = {.lex_state = 195, .external_lex_state = 2},
[130] = {.lex_state = 117},
[131] = {.lex_state = 190, .external_lex_state = 14},
[132] = {.lex_state = 138, .external_lex_state = 2},
[133] = {.lex_state = 117},
[134] = {.lex_state = 138},
[135] = {.lex_state = 197, .external_lex_state = 12},
[136] = {.lex_state = 199, .external_lex_state = 13},
[137] = {.lex_state = 201, .external_lex_state = 13},
[138] = {.lex_state = 117},
[139] = {.lex_state = 199, .external_lex_state = 14},
[140] = {.lex_state = 203, .external_lex_state = 2},
[141] = {.lex_state = 117},
[142] = {.lex_state = 138, .external_lex_state = 2},
[143] = {.lex_state = 117},
[144] = {.lex_state = 195, .external_lex_state = 2},
[145] = {.lex_state = 117},
[146] = {.lex_state = 205, .external_lex_state = 2},
[147] = {.lex_state = 207, .external_lex_state = 6},
[148] = {.lex_state = 54, .external_lex_state = 2},
[149] = {.lex_state = 157, .external_lex_state = 2},
[150] = {.lex_state = 54, .external_lex_state = 2},
[151] = {.lex_state = 54},
[152] = {.lex_state = 138},
[153] = {.lex_state = 211, .external_lex_state = 15},
[154] = {.lex_state = 148, .external_lex_state = 4},
[155] = {.lex_state = 213, .external_lex_state = 6},
[156] = {.lex_state = 162, .external_lex_state = 6},
[157] = {.lex_state = 148, .external_lex_state = 6},
[158] = {.lex_state = 216, .external_lex_state = 6},
[159] = {.lex_state = 54, .external_lex_state = 2},
[160] = {.lex_state = 117},
[161] = {.lex_state = 148, .external_lex_state = 6},
[162] = {.lex_state = 117},
[163] = {.lex_state = 138, .external_lex_state = 2},
[164] = {.lex_state = 138, .external_lex_state = 11},
[165] = {.lex_state = 138, .external_lex_state = 2},
[166] = {.lex_state = 143},
[167] = {.lex_state = 218, .external_lex_state = 10},
[168] = {.lex_state = 152},
[169] = {.lex_state = 152},
[170] = {.lex_state = 54, .external_lex_state = 2},
[171] = {.lex_state = 54, .external_lex_state = 2},
[172] = {.lex_state = 54, .external_lex_state = 2},
[173] = {.lex_state = 117},
[174] = {.lex_state = 168, .external_lex_state = 7},
[175] = {.lex_state = 220},
[176] = {.lex_state = 143},
[177] = {.lex_state = 160, .external_lex_state = 16},
[178] = {.lex_state = 152},
[179] = {.lex_state = 152},
[180] = {.lex_state = 54, .external_lex_state = 2},
[181] = {.lex_state = 54, .external_lex_state = 2},
[182] = {.lex_state = 54, .external_lex_state = 2},
[183] = {.lex_state = 138},
[184] = {.lex_state = 222, .external_lex_state = 2},
[185] = {.lex_state = 173, .external_lex_state = 5},
[186] = {.lex_state = 117},
[187] = {.lex_state = 228, .external_lex_state = 2},
[188] = {.lex_state = 170, .external_lex_state = 9},
[189] = {.lex_state = 143},
[190] = {.lex_state = 138},
[191] = {.lex_state = 170, .external_lex_state = 5},
[192] = {.lex_state = 117},
[193] = {.lex_state = 170, .external_lex_state = 9},
[194] = {.lex_state = 170, .external_lex_state = 9},
[195] = {.lex_state = 170, .external_lex_state = 9},
[196] = {.lex_state = 170, .external_lex_state = 9},
[197] = {.lex_state = 152},
[198] = {.lex_state = 117},
[199] = {.lex_state = 117},
[200] = {.lex_state = 117},
[201] = {.lex_state = 195, .external_lex_state = 2},
[202] = {.lex_state = 117},
[203] = {.lex_state = 203, .external_lex_state = 2},
[204] = {.lex_state = 117},
[205] = {.lex_state = 195, .external_lex_state = 2},
[206] = {.lex_state = 117},
[207] = {.lex_state = 207, .external_lex_state = 6},
[208] = {.lex_state = 164, .external_lex_state = 8},
[209] = {.lex_state = 117},
[210] = {.lex_state = 117},
[211] = {.lex_state = 117},
[212] = {.lex_state = 173, .external_lex_state = 3},
[213] = {.lex_state = 184, .external_lex_state = 3},
[214] = {.lex_state = 162, .external_lex_state = 4},
[215] = {.lex_state = 117},
[216] = {.lex_state = 238, .external_lex_state = 6},
[217] = {.lex_state = 54, .external_lex_state = 2},
[218] = {.lex_state = 173, .external_lex_state = 5},
[219] = {.lex_state = 240, .external_lex_state = 2},
[220] = {.lex_state = 54, .external_lex_state = 2},
[221] = {.lex_state = 54},
[222] = {.lex_state = 138},
[223] = {.lex_state = 162, .external_lex_state = 4},
[224] = {.lex_state = 162, .external_lex_state = 6},
[225] = {.lex_state = 213, .external_lex_state = 6},
[226] = {.lex_state = 173, .external_lex_state = 5},
[227] = {.lex_state = 168, .external_lex_state = 7},
[228] = {.lex_state = 54, .external_lex_state = 2},
[229] = {.lex_state = 162, .external_lex_state = 6},
[230] = {.lex_state = 242, .external_lex_state = 10},
[231] = {.lex_state = 143},
[232] = {.lex_state = 138},
[233] = {.lex_state = 177, .external_lex_state = 10},
[234] = {.lex_state = 242, .external_lex_state = 10},
[235] = {.lex_state = 242, .external_lex_state = 10},
[236] = {.lex_state = 242, .external_lex_state = 10},
[237] = {.lex_state = 152},
[238] = {.lex_state = 117},
[239] = {.lex_state = 117},
[240] = {.lex_state = 117},
[241] = {.lex_state = 195, .external_lex_state = 2},
[242] = {.lex_state = 117},
[243] = {.lex_state = 203, .external_lex_state = 2},
[244] = {.lex_state = 117},
[245] = {.lex_state = 195, .external_lex_state = 2},
[246] = {.lex_state = 173, .external_lex_state = 5},
[247] = {.lex_state = 177},
[248] = {.lex_state = 180, .external_lex_state = 10},
[249] = {.lex_state = 143},
[250] = {.lex_state = 138},
[251] = {.lex_state = 180, .external_lex_state = 10},
[252] = {.lex_state = 180, .external_lex_state = 10},
[253] = {.lex_state = 180, .external_lex_state = 10},
[254] = {.lex_state = 180, .external_lex_state = 10},
[255] = {.lex_state = 152},
[256] = {.lex_state = 117},
[257] = {.lex_state = 117},
[258] = {.lex_state = 117},
[259] = {.lex_state = 195, .external_lex_state = 2},
[260] = {.lex_state = 117},
[261] = {.lex_state = 203, .external_lex_state = 2},
[262] = {.lex_state = 117},
[263] = {.lex_state = 195, .external_lex_state = 2},
[264] = {.lex_state = 180},
[265] = {.lex_state = 164, .external_lex_state = 8},
[266] = {.lex_state = 184, .external_lex_state = 3},
[267] = {.lex_state = 173, .external_lex_state = 3},
[268] = {.lex_state = 140, .external_lex_state = 3},
[269] = {.lex_state = 186, .external_lex_state = 3},
[270] = {.lex_state = 186, .external_lex_state = 3},
[271] = {.lex_state = 138, .external_lex_state = 11},
[272] = {.lex_state = 143},
[273] = {.lex_state = 138},
[274] = {.lex_state = 138, .external_lex_state = 11},
[275] = {.lex_state = 138, .external_lex_state = 11},
[276] = {.lex_state = 138, .external_lex_state = 11},
[277] = {.lex_state = 138, .external_lex_state = 11},
[278] = {.lex_state = 152},
[279] = {.lex_state = 117},
[280] = {.lex_state = 117},
[281] = {.lex_state = 117},
[282] = {.lex_state = 195, .external_lex_state = 2},
[283] = {.lex_state = 117},
[284] = {.lex_state = 203, .external_lex_state = 2},
[285] = {.lex_state = 117},
[286] = {.lex_state = 195, .external_lex_state = 2},
[287] = {.lex_state = 143},
[288] = {.lex_state = 143},
[289] = {.lex_state = 143},
[290] = {.lex_state = 152},
[291] = {.lex_state = 117},
[292] = {.lex_state = 117},
[293] = {.lex_state = 117},
[294] = {.lex_state = 195, .external_lex_state = 2},
[295] = {.lex_state = 117},
[296] = {.lex_state = 203, .external_lex_state = 2},
[297] = {.lex_state = 162, .external_lex_state = 4},
[298] = {.lex_state = 143},
[299] = {.lex_state = 162, .external_lex_state = 4},
[300] = {.lex_state = 148, .external_lex_state = 4},
[301] = {.lex_state = 117},
[302] = {.lex_state = 117},
[303] = {.lex_state = 162, .external_lex_state = 4},
[304] = {.lex_state = 117},
[305] = {.lex_state = 220},
[306] = {.lex_state = 162, .external_lex_state = 4},
[307] = {.lex_state = 117},
[308] = {.lex_state = 220},
[309] = {.lex_state = 164, .external_lex_state = 8},
[310] = {.lex_state = 195, .external_lex_state = 2},
[311] = {.lex_state = 117},
[312] = {.lex_state = 117},
[313] = {.lex_state = 117},
[314] = {.lex_state = 170, .external_lex_state = 9},
[315] = {.lex_state = 170, .external_lex_state = 5},
[316] = {.lex_state = 117},
[317] = {.lex_state = 173, .external_lex_state = 5},
[318] = {.lex_state = 168, .external_lex_state = 7},
[319] = {.lex_state = 54, .external_lex_state = 2},
[320] = {.lex_state = 177},
[321] = {.lex_state = 180},
[322] = {.lex_state = 117},
[323] = {.lex_state = 138},
[324] = {.lex_state = 244, .external_lex_state = 12},
[325] = {.lex_state = 117},
[326] = {.lex_state = 188, .external_lex_state = 12},
[327] = {.lex_state = 246, .external_lex_state = 12},
[328] = {.lex_state = 190, .external_lex_state = 13},
[329] = {.lex_state = 143},
[330] = {.lex_state = 138},
[331] = {.lex_state = 190, .external_lex_state = 13},
[332] = {.lex_state = 190, .external_lex_state = 13},
[333] = {.lex_state = 190, .external_lex_state = 13},
[334] = {.lex_state = 190, .external_lex_state = 13},
[335] = {.lex_state = 152},
[336] = {.lex_state = 117},
[337] = {.lex_state = 117},
[338] = {.lex_state = 117},
[339] = {.lex_state = 195, .external_lex_state = 2},
[340] = {.lex_state = 117},
[341] = {.lex_state = 203, .external_lex_state = 2},
[342] = {.lex_state = 117},
[343] = {.lex_state = 195, .external_lex_state = 2},
[344] = {.lex_state = 117},
[345] = {.lex_state = 205, .external_lex_state = 2},
[346] = {.lex_state = 248, .external_lex_state = 14},
[347] = {.lex_state = 54, .external_lex_state = 2},
[348] = {.lex_state = 162, .external_lex_state = 4},
[349] = {.lex_state = 54, .external_lex_state = 2},
[350] = {.lex_state = 54},
[351] = {.lex_state = 138},
[352] = {.lex_state = 211, .external_lex_state = 15},
[353] = {.lex_state = 190, .external_lex_state = 13},
[354] = {.lex_state = 250, .external_lex_state = 14},
[355] = {.lex_state = 190, .external_lex_state = 14},
[356] = {.lex_state = 190, .external_lex_state = 14},
[357] = {.lex_state = 252, .external_lex_state = 14},
[358] = {.lex_state = 190, .external_lex_state = 14},
[359] = {.lex_state = 164, .external_lex_state = 8},
[360] = {.lex_state = 117},
[361] = {.lex_state = 117},
[362] = {.lex_state = 117},
[363] = {.lex_state = 197, .external_lex_state = 12},
[364] = {.lex_state = 254, .external_lex_state = 12},
[365] = {.lex_state = 199, .external_lex_state = 13},
[366] = {.lex_state = 117},
[367] = {.lex_state = 256, .external_lex_state = 14},
[368] = {.lex_state = 54, .external_lex_state = 2},
[369] = {.lex_state = 54, .external_lex_state = 2},
[370] = {.lex_state = 54},
[371] = {.lex_state = 138},
[372] = {.lex_state = 199, .external_lex_state = 13},
[373] = {.lex_state = 199, .external_lex_state = 14},
[374] = {.lex_state = 258, .external_lex_state = 14},
[375] = {.lex_state = 199, .external_lex_state = 14},
[376] = {.lex_state = 162, .external_lex_state = 4},
[377] = {.lex_state = 117},
[378] = {.lex_state = 238, .external_lex_state = 6},
[379] = {.lex_state = 205, .external_lex_state = 2},
[380] = {.lex_state = 54},
[381] = {.lex_state = 138},
[382] = {.lex_state = 173, .external_lex_state = 5},
[383] = {.lex_state = 173, .external_lex_state = 5},
[384] = {.lex_state = 168, .external_lex_state = 7},
[385] = {.lex_state = 140, .external_lex_state = 5},
[386] = {.lex_state = 160, .external_lex_state = 7},
[387] = {.lex_state = 138},
[388] = {.lex_state = 143},
[389] = {.lex_state = 216, .external_lex_state = 4},
[390] = {.lex_state = 152},
[391] = {.lex_state = 152},
[392] = {.lex_state = 54, .external_lex_state = 2},
[393] = {.lex_state = 54, .external_lex_state = 2},
[394] = {.lex_state = 54, .external_lex_state = 2},
[395] = {.lex_state = 213, .external_lex_state = 6},
[396] = {.lex_state = 213, .external_lex_state = 6},
[397] = {.lex_state = 260, .external_lex_state = 17},
[398] = {.lex_state = 213, .external_lex_state = 6},
[399] = {.lex_state = 148, .external_lex_state = 6},
[400] = {.lex_state = 216, .external_lex_state = 6},
[401] = {.lex_state = 216, .external_lex_state = 6},
[402] = {.lex_state = 164, .external_lex_state = 8},
[403] = {.lex_state = 138, .external_lex_state = 2},
[404] = {.lex_state = 148, .external_lex_state = 6},
[405] = {.lex_state = 263, .external_lex_state = 10},
[406] = {.lex_state = 143},
[407] = {.lex_state = 138},
[408] = {.lex_state = 117},
[409] = {.lex_state = 218, .external_lex_state = 10},
[410] = {.lex_state = 263, .external_lex_state = 10},
[411] = {.lex_state = 263, .external_lex_state = 10},
[412] = {.lex_state = 263, .external_lex_state = 10},
[413] = {.lex_state = 152},
[414] = {.lex_state = 117},
[415] = {.lex_state = 117},
[416] = {.lex_state = 117},
[417] = {.lex_state = 195, .external_lex_state = 2},
[418] = {.lex_state = 117},
[419] = {.lex_state = 203, .external_lex_state = 2},
[420] = {.lex_state = 117},
[421] = {.lex_state = 195, .external_lex_state = 2},
[422] = {.lex_state = 168, .external_lex_state = 7},
[423] = {.lex_state = 143},
[424] = {.lex_state = 266, .external_lex_state = 10},
[425] = {.lex_state = 152},
[426] = {.lex_state = 152},
[427] = {.lex_state = 54, .external_lex_state = 2},
[428] = {.lex_state = 54, .external_lex_state = 2},
[429] = {.lex_state = 54, .external_lex_state = 2},
[430] = {.lex_state = 220},
[431] = {.lex_state = 220},
[432] = {.lex_state = 168, .external_lex_state = 16},
[433] = {.lex_state = 143},
[434] = {.lex_state = 138},
[435] = {.lex_state = 160, .external_lex_state = 16},
[436] = {.lex_state = 168, .external_lex_state = 16},
[437] = {.lex_state = 168, .external_lex_state = 16},
[438] = {.lex_state = 168, .external_lex_state = 16},
[439] = {.lex_state = 152},
[440] = {.lex_state = 117},
[441] = {.lex_state = 117},
[442] = {.lex_state = 117},
[443] = {.lex_state = 195, .external_lex_state = 2},
[444] = {.lex_state = 117},
[445] = {.lex_state = 203, .external_lex_state = 2},
[446] = {.lex_state = 117},
[447] = {.lex_state = 195, .external_lex_state = 2},
[448] = {.lex_state = 143},
[449] = {.lex_state = 268, .external_lex_state = 9},
[450] = {.lex_state = 152},
[451] = {.lex_state = 152},
[452] = {.lex_state = 54, .external_lex_state = 2},
[453] = {.lex_state = 54, .external_lex_state = 2},
[454] = {.lex_state = 54, .external_lex_state = 2},
[455] = {.lex_state = 268, .external_lex_state = 5},
[456] = {.lex_state = 268, .external_lex_state = 5},
[457] = {.lex_state = 173, .external_lex_state = 5},
[458] = {.lex_state = 222, .external_lex_state = 2},
[459] = {.lex_state = 140, .external_lex_state = 5},
[460] = {.lex_state = 160, .external_lex_state = 7},
[461] = {.lex_state = 222, .external_lex_state = 2},
[462] = {.lex_state = 173, .external_lex_state = 5},
[463] = {.lex_state = 54, .external_lex_state = 2},
[464] = {.lex_state = 270, .external_lex_state = 2},
[465] = {.lex_state = 228, .external_lex_state = 2},
[466] = {.lex_state = 140, .external_lex_state = 5},
[467] = {.lex_state = 117},
[468] = {.lex_state = 117},
[469] = {.lex_state = 160, .external_lex_state = 7},
[470] = {.lex_state = 228, .external_lex_state = 2},
[471] = {.lex_state = 117},
[472] = {.lex_state = 170, .external_lex_state = 9},
[473] = {.lex_state = 170, .external_lex_state = 9},
[474] = {.lex_state = 272},
[475] = {.lex_state = 170, .external_lex_state = 5},
[476] = {.lex_state = 170, .external_lex_state = 9},
[477] = {.lex_state = 117},
[478] = {.lex_state = 117},
[479] = {.lex_state = 170, .external_lex_state = 9},
[480] = {.lex_state = 117},
[481] = {.lex_state = 220},
[482] = {.lex_state = 170, .external_lex_state = 9},
[483] = {.lex_state = 117},
[484] = {.lex_state = 220},
[485] = {.lex_state = 170, .external_lex_state = 9},
[486] = {.lex_state = 170, .external_lex_state = 9},
[487] = {.lex_state = 117},
[488] = {.lex_state = 173, .external_lex_state = 5},
[489] = {.lex_state = 168, .external_lex_state = 16},
[490] = {.lex_state = 117},
[491] = {.lex_state = 238, .external_lex_state = 6},
[492] = {.lex_state = 164, .external_lex_state = 8},
[493] = {.lex_state = 173, .external_lex_state = 3},
[494] = {.lex_state = 184, .external_lex_state = 3},
[495] = {.lex_state = 184, .external_lex_state = 3},
[496] = {.lex_state = 162, .external_lex_state = 4},
[497] = {.lex_state = 117},
[498] = {.lex_state = 54},
[499] = {.lex_state = 138},
[500] = {.lex_state = 173, .external_lex_state = 5},
[501] = {.lex_state = 173, .external_lex_state = 5},
[502] = {.lex_state = 168, .external_lex_state = 7},
[503] = {.lex_state = 138},
[504] = {.lex_state = 213, .external_lex_state = 4},
[505] = {.lex_state = 162, .external_lex_state = 6},
[506] = {.lex_state = 213, .external_lex_state = 6},
[507] = {.lex_state = 213, .external_lex_state = 6},
[508] = {.lex_state = 240, .external_lex_state = 2},
[509] = {.lex_state = 162, .external_lex_state = 6},
[510] = {.lex_state = 242, .external_lex_state = 10},
[511] = {.lex_state = 242, .external_lex_state = 10},
[512] = {.lex_state = 177, .external_lex_state = 10},
[513] = {.lex_state = 117},
[514] = {.lex_state = 117},
[515] = {.lex_state = 242, .external_lex_state = 10},
[516] = {.lex_state = 117},
[517] = {.lex_state = 220},
[518] = {.lex_state = 242, .external_lex_state = 10},
[519] = {.lex_state = 117},
[520] = {.lex_state = 220},
[521] = {.lex_state = 242, .external_lex_state = 10},
[522] = {.lex_state = 242, .external_lex_state = 10},
[523] = {.lex_state = 180, .external_lex_state = 10},
[524] = {.lex_state = 180, .external_lex_state = 10},
[525] = {.lex_state = 180, .external_lex_state = 10},
[526] = {.lex_state = 117},
[527] = {.lex_state = 117},
[528] = {.lex_state = 180, .external_lex_state = 10},
[529] = {.lex_state = 117},
[530] = {.lex_state = 220},
[531] = {.lex_state = 180, .external_lex_state = 10},
[532] = {.lex_state = 117},
[533] = {.lex_state = 220},
[534] = {.lex_state = 180, .external_lex_state = 10},
[535] = {.lex_state = 180, .external_lex_state = 10},
[536] = {.lex_state = 184, .external_lex_state = 3},
[537] = {.lex_state = 220},
[538] = {.lex_state = 143},
[539] = {.lex_state = 186, .external_lex_state = 18},
[540] = {.lex_state = 152},
[541] = {.lex_state = 152},
[542] = {.lex_state = 54, .external_lex_state = 2},
[543] = {.lex_state = 54, .external_lex_state = 2},
[544] = {.lex_state = 54, .external_lex_state = 2},
[545] = {.lex_state = 138, .external_lex_state = 11},
[546] = {.lex_state = 138, .external_lex_state = 11},
[547] = {.lex_state = 138, .external_lex_state = 11},
[548] = {.lex_state = 117},
[549] = {.lex_state = 117},
[550] = {.lex_state = 138, .external_lex_state = 11},
[551] = {.lex_state = 117},
[552] = {.lex_state = 220},
[553] = {.lex_state = 138, .external_lex_state = 11},
[554] = {.lex_state = 117},
[555] = {.lex_state = 220},
[556] = {.lex_state = 138, .external_lex_state = 11},
[557] = {.lex_state = 138, .external_lex_state = 11},
[558] = {.lex_state = 117},
[559] = {.lex_state = 117},
[560] = {.lex_state = 143},
[561] = {.lex_state = 117},
[562] = {.lex_state = 220},
[563] = {.lex_state = 143},
[564] = {.lex_state = 117},
[565] = {.lex_state = 220},
[566] = {.lex_state = 143},
[567] = {.lex_state = 162, .external_lex_state = 4},
[568] = {.lex_state = 117},
[569] = {.lex_state = 162, .external_lex_state = 4},
[570] = {.lex_state = 117},
[571] = {.lex_state = 117},
[572] = {.lex_state = 162, .external_lex_state = 4},
[573] = {.lex_state = 278, .external_lex_state = 10},
[574] = {.lex_state = 117},
[575] = {.lex_state = 117},
[576] = {.lex_state = 278, .external_lex_state = 10},
[577] = {.lex_state = 117},
[578] = {.lex_state = 195, .external_lex_state = 2},
[579] = {.lex_state = 220},
[580] = {.lex_state = 143},
[581] = {.lex_state = 195, .external_lex_state = 11},
[582] = {.lex_state = 152},
[583] = {.lex_state = 152},
[584] = {.lex_state = 54, .external_lex_state = 2},
[585] = {.lex_state = 54, .external_lex_state = 2},
[586] = {.lex_state = 54, .external_lex_state = 2},
[587] = {.lex_state = 138},
[588] = {.lex_state = 222, .external_lex_state = 2},
[589] = {.lex_state = 117},
[590] = {.lex_state = 228, .external_lex_state = 2},
[591] = {.lex_state = 170, .external_lex_state = 5},
[592] = {.lex_state = 117},
[593] = {.lex_state = 117},
[594] = {.lex_state = 248, .external_lex_state = 14},
[595] = {.lex_state = 117},
[596] = {.lex_state = 240, .external_lex_state = 2},
[597] = {.lex_state = 173, .external_lex_state = 5},
[598] = {.lex_state = 168, .external_lex_state = 7},
[599] = {.lex_state = 117},
[600] = {.lex_state = 164, .external_lex_state = 8},
[601] = {.lex_state = 244, .external_lex_state = 12},
[602] = {.lex_state = 280, .external_lex_state = 12},
[603] = {.lex_state = 188, .external_lex_state = 12},
[604] = {.lex_state = 246, .external_lex_state = 12},
[605] = {.lex_state = 246, .external_lex_state = 12},
[606] = {.lex_state = 190, .external_lex_state = 13},
[607] = {.lex_state = 190, .external_lex_state = 13},
[608] = {.lex_state = 190, .external_lex_state = 13},
[609] = {.lex_state = 117},
[610] = {.lex_state = 117},
[611] = {.lex_state = 190, .external_lex_state = 13},
[612] = {.lex_state = 117},
[613] = {.lex_state = 220},
[614] = {.lex_state = 190, .external_lex_state = 13},
[615] = {.lex_state = 117},
[616] = {.lex_state = 220},
[617] = {.lex_state = 190, .external_lex_state = 13},
[618] = {.lex_state = 190, .external_lex_state = 13},
[619] = {.lex_state = 117},
[620] = {.lex_state = 282, .external_lex_state = 14},
[621] = {.lex_state = 205, .external_lex_state = 2},
[622] = {.lex_state = 54},
[623] = {.lex_state = 138},
[624] = {.lex_state = 117},
[625] = {.lex_state = 117},
[626] = {.lex_state = 195, .external_lex_state = 2},
[627] = {.lex_state = 117},
[628] = {.lex_state = 195, .external_lex_state = 2},
[629] = {.lex_state = 138},
[630] = {.lex_state = 143},
[631] = {.lex_state = 252, .external_lex_state = 13},
[632] = {.lex_state = 152},
[633] = {.lex_state = 152},
[634] = {.lex_state = 54, .external_lex_state = 2},
[635] = {.lex_state = 54, .external_lex_state = 2},
[636] = {.lex_state = 54, .external_lex_state = 2},
[637] = {.lex_state = 250, .external_lex_state = 14},
[638] = {.lex_state = 250, .external_lex_state = 14},
[639] = {.lex_state = 260, .external_lex_state = 17},
[640] = {.lex_state = 250, .external_lex_state = 14},
[641] = {.lex_state = 190, .external_lex_state = 14},
[642] = {.lex_state = 252, .external_lex_state = 14},
[643] = {.lex_state = 252, .external_lex_state = 14},
[644] = {.lex_state = 190, .external_lex_state = 14},
[645] = {.lex_state = 203, .external_lex_state = 11},
[646] = {.lex_state = 117},
[647] = {.lex_state = 256, .external_lex_state = 14},
[648] = {.lex_state = 164, .external_lex_state = 8},
[649] = {.lex_state = 197, .external_lex_state = 12},
[650] = {.lex_state = 254, .external_lex_state = 12},
[651] = {.lex_state = 254, .external_lex_state = 12},
[652] = {.lex_state = 199, .external_lex_state = 13},
[653] = {.lex_state = 117},
[654] = {.lex_state = 54},
[655] = {.lex_state = 138},
[656] = {.lex_state = 203, .external_lex_state = 2},
[657] = {.lex_state = 117},
[658] = {.lex_state = 203, .external_lex_state = 2},
[659] = {.lex_state = 138},
[660] = {.lex_state = 258, .external_lex_state = 13},
[661] = {.lex_state = 199, .external_lex_state = 14},
[662] = {.lex_state = 258, .external_lex_state = 14},
[663] = {.lex_state = 258, .external_lex_state = 14},
[664] = {.lex_state = 199, .external_lex_state = 14},
[665] = {.lex_state = 207, .external_lex_state = 6},
[666] = {.lex_state = 238, .external_lex_state = 6},
[667] = {.lex_state = 205, .external_lex_state = 2},
[668] = {.lex_state = 138},
[669] = {.lex_state = 143},
[670] = {.lex_state = 284, .external_lex_state = 9},
[671] = {.lex_state = 152},
[672] = {.lex_state = 152},
[673] = {.lex_state = 54, .external_lex_state = 2},
[674] = {.lex_state = 54, .external_lex_state = 2},
[675] = {.lex_state = 54, .external_lex_state = 2},
[676] = {.lex_state = 173, .external_lex_state = 5},
[677] = {.lex_state = 216, .external_lex_state = 4},
[678] = {.lex_state = 213, .external_lex_state = 6},
[679] = {.lex_state = 213, .external_lex_state = 4},
[680] = {.lex_state = 143},
[681] = {.lex_state = 138},
[682] = {.lex_state = 216, .external_lex_state = 4},
[683] = {.lex_state = 213, .external_lex_state = 4},
[684] = {.lex_state = 213, .external_lex_state = 4},
[685] = {.lex_state = 213, .external_lex_state = 4},
[686] = {.lex_state = 152},
[687] = {.lex_state = 117},
[688] = {.lex_state = 117},
[689] = {.lex_state = 117},
[690] = {.lex_state = 195, .external_lex_state = 2},
[691] = {.lex_state = 117},
[692] = {.lex_state = 203, .external_lex_state = 2},
[693] = {.lex_state = 117},
[694] = {.lex_state = 195, .external_lex_state = 2},
[695] = {.lex_state = 260, .external_lex_state = 17},
[696] = {.lex_state = 213, .external_lex_state = 6},
[697] = {.lex_state = 152},
[698] = {.lex_state = 152},
[699] = {.lex_state = 260, .external_lex_state = 17},
[700] = {.lex_state = 138, .external_lex_state = 2},
[701] = {.lex_state = 220},
[702] = {.lex_state = 138, .external_lex_state = 11},
[703] = {.lex_state = 216, .external_lex_state = 6},
[704] = {.lex_state = 263, .external_lex_state = 10},
[705] = {.lex_state = 263, .external_lex_state = 10},
[706] = {.lex_state = 218, .external_lex_state = 10},
[707] = {.lex_state = 117},
[708] = {.lex_state = 117},
[709] = {.lex_state = 263, .external_lex_state = 10},
[710] = {.lex_state = 117},
[711] = {.lex_state = 220},
[712] = {.lex_state = 263, .external_lex_state = 10},
[713] = {.lex_state = 117},
[714] = {.lex_state = 220},
[715] = {.lex_state = 263, .external_lex_state = 10},
[716] = {.lex_state = 263, .external_lex_state = 10},
[717] = {.lex_state = 266, .external_lex_state = 10},
[718] = {.lex_state = 143},
[719] = {.lex_state = 138},
[720] = {.lex_state = 266, .external_lex_state = 10},
[721] = {.lex_state = 266, .external_lex_state = 10},
[722] = {.lex_state = 266, .external_lex_state = 10},
[723] = {.lex_state = 266, .external_lex_state = 10},
[724] = {.lex_state = 152},
[725] = {.lex_state = 117},
[726] = {.lex_state = 117},
[727] = {.lex_state = 117},
[728] = {.lex_state = 195, .external_lex_state = 2},
[729] = {.lex_state = 117},
[730] = {.lex_state = 203, .external_lex_state = 2},
[731] = {.lex_state = 117},
[732] = {.lex_state = 195, .external_lex_state = 2},
[733] = {.lex_state = 168, .external_lex_state = 7},
[734] = {.lex_state = 220},
[735] = {.lex_state = 168, .external_lex_state = 16},
[736] = {.lex_state = 168, .external_lex_state = 16},
[737] = {.lex_state = 160, .external_lex_state = 16},
[738] = {.lex_state = 117},
[739] = {.lex_state = 117},
[740] = {.lex_state = 168, .external_lex_state = 16},
[741] = {.lex_state = 117},
[742] = {.lex_state = 220},
[743] = {.lex_state = 168, .external_lex_state = 16},
[744] = {.lex_state = 117},
[745] = {.lex_state = 220},
[746] = {.lex_state = 168, .external_lex_state = 16},
[747] = {.lex_state = 168, .external_lex_state = 16},
[748] = {.lex_state = 268, .external_lex_state = 9},
[749] = {.lex_state = 143},
[750] = {.lex_state = 138},
[751] = {.lex_state = 268, .external_lex_state = 9},
[752] = {.lex_state = 268, .external_lex_state = 9},
[753] = {.lex_state = 268, .external_lex_state = 9},
[754] = {.lex_state = 268, .external_lex_state = 9},
[755] = {.lex_state = 152},
[756] = {.lex_state = 117},
[757] = {.lex_state = 117},
[758] = {.lex_state = 117},
[759] = {.lex_state = 195, .external_lex_state = 2},
[760] = {.lex_state = 117},
[761] = {.lex_state = 203, .external_lex_state = 2},
[762] = {.lex_state = 117},
[763] = {.lex_state = 195, .external_lex_state = 2},
[764] = {.lex_state = 117},
[765] = {.lex_state = 268, .external_lex_state = 5},
[766] = {.lex_state = 222, .external_lex_state = 2},
[767] = {.lex_state = 173, .external_lex_state = 5},
[768] = {.lex_state = 222, .external_lex_state = 2},
[769] = {.lex_state = 117},
[770] = {.lex_state = 270, .external_lex_state = 2},
[771] = {.lex_state = 140, .external_lex_state = 5},
[772] = {.lex_state = 160, .external_lex_state = 7},
[773] = {.lex_state = 270, .external_lex_state = 2},
[774] = {.lex_state = 228, .external_lex_state = 2},
[775] = {.lex_state = 173, .external_lex_state = 5},
[776] = {.lex_state = 117},
[777] = {.lex_state = 228, .external_lex_state = 2},
[778] = {.lex_state = 117},
[779] = {.lex_state = 117},
[780] = {.lex_state = 173, .external_lex_state = 5},
[781] = {.lex_state = 286, .external_lex_state = 10},
[782] = {.lex_state = 272},
[783] = {.lex_state = 263},
[784] = {.lex_state = 272},
[785] = {.lex_state = 272},
[786] = {.lex_state = 170, .external_lex_state = 9},
[787] = {.lex_state = 117},
[788] = {.lex_state = 170, .external_lex_state = 9},
[789] = {.lex_state = 117},
[790] = {.lex_state = 117},
[791] = {.lex_state = 170, .external_lex_state = 9},
[792] = {.lex_state = 278, .external_lex_state = 10},
[793] = {.lex_state = 117},
[794] = {.lex_state = 117},
[795] = {.lex_state = 278, .external_lex_state = 10},
[796] = {.lex_state = 117},
[797] = {.lex_state = 207, .external_lex_state = 6},
[798] = {.lex_state = 168, .external_lex_state = 16},
[799] = {.lex_state = 117},
[800] = {.lex_state = 184, .external_lex_state = 18},
[801] = {.lex_state = 238, .external_lex_state = 6},
[802] = {.lex_state = 138},
[803] = {.lex_state = 288, .external_lex_state = 9},
[804] = {.lex_state = 213, .external_lex_state = 4},
[805] = {.lex_state = 213, .external_lex_state = 4},
[806] = {.lex_state = 173, .external_lex_state = 5},
[807] = {.lex_state = 213, .external_lex_state = 6},
[808] = {.lex_state = 242, .external_lex_state = 10},
[809] = {.lex_state = 117},
[810] = {.lex_state = 242, .external_lex_state = 10},
[811] = {.lex_state = 117},
[812] = {.lex_state = 117},
[813] = {.lex_state = 242, .external_lex_state = 10},
[814] = {.lex_state = 278, .external_lex_state = 10},
[815] = {.lex_state = 117},
[816] = {.lex_state = 117},
[817] = {.lex_state = 278, .external_lex_state = 10},
[818] = {.lex_state = 117},
[819] = {.lex_state = 180, .external_lex_state = 10},
[820] = {.lex_state = 117},
[821] = {.lex_state = 180, .external_lex_state = 10},
[822] = {.lex_state = 117},
[823] = {.lex_state = 117},
[824] = {.lex_state = 180, .external_lex_state = 10},
[825] = {.lex_state = 278, .external_lex_state = 10},
[826] = {.lex_state = 117},
[827] = {.lex_state = 117},
[828] = {.lex_state = 278, .external_lex_state = 10},
[829] = {.lex_state = 117},
[830] = {.lex_state = 184, .external_lex_state = 3},
[831] = {.lex_state = 220},
[832] = {.lex_state = 184, .external_lex_state = 18},
[833] = {.lex_state = 143},
[834] = {.lex_state = 138},
[835] = {.lex_state = 186, .external_lex_state = 18},
[836] = {.lex_state = 184, .external_lex_state = 18},
[837] = {.lex_state = 184, .external_lex_state = 18},
[838] = {.lex_state = 184, .external_lex_state = 18},
[839] = {.lex_state = 152},
[840] = {.lex_state = 117},
[841] = {.lex_state = 117},
[842] = {.lex_state = 117},
[843] = {.lex_state = 195, .external_lex_state = 2},
[844] = {.lex_state = 117},
[845] = {.lex_state = 203, .external_lex_state = 2},
[846] = {.lex_state = 117},
[847] = {.lex_state = 195, .external_lex_state = 2},
[848] = {.lex_state = 138, .external_lex_state = 11},
[849] = {.lex_state = 117},
[850] = {.lex_state = 138, .external_lex_state = 11},
[851] = {.lex_state = 117},
[852] = {.lex_state = 117},
[853] = {.lex_state = 138, .external_lex_state = 11},
[854] = {.lex_state = 278, .external_lex_state = 10},
[855] = {.lex_state = 117},
[856] = {.lex_state = 117},
[857] = {.lex_state = 278, .external_lex_state = 10},
[858] = {.lex_state = 117},
[859] = {.lex_state = 143},
[860] = {.lex_state = 117},
[861] = {.lex_state = 143},
[862] = {.lex_state = 117},
[863] = {.lex_state = 117},
[864] = {.lex_state = 143},
[865] = {.lex_state = 278, .external_lex_state = 10},
[866] = {.lex_state = 117},
[867] = {.lex_state = 117},
[868] = {.lex_state = 278, .external_lex_state = 10},
[869] = {.lex_state = 117},
[870] = {.lex_state = 117},
[871] = {.lex_state = 117},
[872] = {.lex_state = 117},
[873] = {.lex_state = 162, .external_lex_state = 4},
[874] = {.lex_state = 278, .external_lex_state = 10},
[875] = {.lex_state = 117},
[876] = {.lex_state = 162, .external_lex_state = 4},
[877] = {.lex_state = 195, .external_lex_state = 2},
[878] = {.lex_state = 220},
[879] = {.lex_state = 195, .external_lex_state = 11},
[880] = {.lex_state = 143},
[881] = {.lex_state = 138},
[882] = {.lex_state = 195, .external_lex_state = 11},
[883] = {.lex_state = 195, .external_lex_state = 11},
[884] = {.lex_state = 195, .external_lex_state = 11},
[885] = {.lex_state = 195, .external_lex_state = 11},
[886] = {.lex_state = 152},
[887] = {.lex_state = 117},
[888] = {.lex_state = 117},
[889] = {.lex_state = 117},
[890] = {.lex_state = 195, .external_lex_state = 2},
[891] = {.lex_state = 117},
[892] = {.lex_state = 203, .external_lex_state = 2},
[893] = {.lex_state = 117},
[894] = {.lex_state = 195, .external_lex_state = 2},
[895] = {.lex_state = 268, .external_lex_state = 5},
[896] = {.lex_state = 117},
[897] = {.lex_state = 222, .external_lex_state = 2},
[898] = {.lex_state = 117},
[899] = {.lex_state = 117},
[900] = {.lex_state = 228, .external_lex_state = 2},
[901] = {.lex_state = 117},
[902] = {.lex_state = 272},
[903] = {.lex_state = 170, .external_lex_state = 5},
[904] = {.lex_state = 117},
[905] = {.lex_state = 117},
[906] = {.lex_state = 117},
[907] = {.lex_state = 240, .external_lex_state = 2},
[908] = {.lex_state = 244, .external_lex_state = 12},
[909] = {.lex_state = 220},
[910] = {.lex_state = 143},
[911] = {.lex_state = 246, .external_lex_state = 19},
[912] = {.lex_state = 152},
[913] = {.lex_state = 152},
[914] = {.lex_state = 54, .external_lex_state = 2},
[915] = {.lex_state = 54, .external_lex_state = 2},
[916] = {.lex_state = 54, .external_lex_state = 2},
[917] = {.lex_state = 190, .external_lex_state = 13},
[918] = {.lex_state = 117},
[919] = {.lex_state = 190, .external_lex_state = 13},
[920] = {.lex_state = 117},
[921] = {.lex_state = 117},
[922] = {.lex_state = 190, .external_lex_state = 13},
[923] = {.lex_state = 278, .external_lex_state = 10},
[924] = {.lex_state = 117},
[925] = {.lex_state = 117},
[926] = {.lex_state = 278, .external_lex_state = 10},
[927] = {.lex_state = 117},
[928] = {.lex_state = 248, .external_lex_state = 14},
[929] = {.lex_state = 282, .external_lex_state = 14},
[930] = {.lex_state = 138},
[931] = {.lex_state = 143},
[932] = {.lex_state = 290, .external_lex_state = 10},
[933] = {.lex_state = 152},
[934] = {.lex_state = 152},
[935] = {.lex_state = 54, .external_lex_state = 2},
[936] = {.lex_state = 54, .external_lex_state = 2},
[937] = {.lex_state = 54, .external_lex_state = 2},
[938] = {.lex_state = 117},
[939] = {.lex_state = 252, .external_lex_state = 13},
[940] = {.lex_state = 250, .external_lex_state = 14},
[941] = {.lex_state = 250, .external_lex_state = 13},
[942] = {.lex_state = 143},
[943] = {.lex_state = 138},
[944] = {.lex_state = 252, .external_lex_state = 13},
[945] = {.lex_state = 250, .external_lex_state = 13},
[946] = {.lex_state = 250, .external_lex_state = 13},
[947] = {.lex_state = 250, .external_lex_state = 13},
[948] = {.lex_state = 152},
[949] = {.lex_state = 117},
[950] = {.lex_state = 117},
[951] = {.lex_state = 117},
[952] = {.lex_state = 195, .external_lex_state = 2},
[953] = {.lex_state = 117},
[954] = {.lex_state = 203, .external_lex_state = 2},
[955] = {.lex_state = 117},
[956] = {.lex_state = 195, .external_lex_state = 2},
[957] = {.lex_state = 250, .external_lex_state = 14},
[958] = {.lex_state = 260, .external_lex_state = 17},
[959] = {.lex_state = 252, .external_lex_state = 14},
[960] = {.lex_state = 203, .external_lex_state = 11},
[961] = {.lex_state = 117},
[962] = {.lex_state = 254, .external_lex_state = 19},
[963] = {.lex_state = 256, .external_lex_state = 14},
[964] = {.lex_state = 138},
[965] = {.lex_state = 292, .external_lex_state = 10},
[966] = {.lex_state = 258, .external_lex_state = 13},
[967] = {.lex_state = 258, .external_lex_state = 13},
[968] = {.lex_state = 258, .external_lex_state = 14},
[969] = {.lex_state = 173, .external_lex_state = 5},
[970] = {.lex_state = 284, .external_lex_state = 9},
[971] = {.lex_state = 173, .external_lex_state = 5},
[972] = {.lex_state = 288, .external_lex_state = 9},
[973] = {.lex_state = 143},
[974] = {.lex_state = 138},
[975] = {.lex_state = 284, .external_lex_state = 9},
[976] = {.lex_state = 288, .external_lex_state = 9},
[977] = {.lex_state = 288, .external_lex_state = 9},
[978] = {.lex_state = 288, .external_lex_state = 9},
[979] = {.lex_state = 152},
[980] = {.lex_state = 117},
[981] = {.lex_state = 117},
[982] = {.lex_state = 117},
[983] = {.lex_state = 195, .external_lex_state = 2},
[984] = {.lex_state = 117},
[985] = {.lex_state = 203, .external_lex_state = 2},
[986] = {.lex_state = 117},
[987] = {.lex_state = 195, .external_lex_state = 2},
[988] = {.lex_state = 213, .external_lex_state = 4},
[989] = {.lex_state = 213, .external_lex_state = 4},
[990] = {.lex_state = 216, .external_lex_state = 4},
[991] = {.lex_state = 117},
[992] = {.lex_state = 117},
[993] = {.lex_state = 213, .external_lex_state = 4},
[994] = {.lex_state = 117},
[995] = {.lex_state = 220},
[996] = {.lex_state = 213, .external_lex_state = 4},
[997] = {.lex_state = 117},
[998] = {.lex_state = 220},
[999] = {.lex_state = 213, .external_lex_state = 4},
[1000] = {.lex_state = 213, .external_lex_state = 4},
[1001] = {.lex_state = 260, .external_lex_state = 17},
[1002] = {.lex_state = 260, .external_lex_state = 17},
[1003] = {.lex_state = 260, .external_lex_state = 17},
[1004] = {.lex_state = 152},
[1005] = {.lex_state = 117},
[1006] = {.lex_state = 117},
[1007] = {.lex_state = 213, .external_lex_state = 6},
[1008] = {.lex_state = 260, .external_lex_state = 17},
[1009] = {.lex_state = 138, .external_lex_state = 2},
[1010] = {.lex_state = 220},
[1011] = {.lex_state = 263, .external_lex_state = 10},
[1012] = {.lex_state = 117},
[1013] = {.lex_state = 263, .external_lex_state = 10},
[1014] = {.lex_state = 117},
[1015] = {.lex_state = 117},
[1016] = {.lex_state = 263, .external_lex_state = 10},
[1017] = {.lex_state = 278, .external_lex_state = 10},
[1018] = {.lex_state = 117},
[1019] = {.lex_state = 117},
[1020] = {.lex_state = 278, .external_lex_state = 10},
[1021] = {.lex_state = 117},
[1022] = {.lex_state = 266, .external_lex_state = 10},
[1023] = {.lex_state = 266, .external_lex_state = 10},
[1024] = {.lex_state = 266, .external_lex_state = 10},
[1025] = {.lex_state = 117},
[1026] = {.lex_state = 117},
[1027] = {.lex_state = 266, .external_lex_state = 10},
[1028] = {.lex_state = 117},
[1029] = {.lex_state = 220},
[1030] = {.lex_state = 266, .external_lex_state = 10},
[1031] = {.lex_state = 117},
[1032] = {.lex_state = 220},
[1033] = {.lex_state = 266, .external_lex_state = 10},
[1034] = {.lex_state = 266, .external_lex_state = 10},
[1035] = {.lex_state = 168, .external_lex_state = 16},
[1036] = {.lex_state = 117},
[1037] = {.lex_state = 168, .external_lex_state = 16},
[1038] = {.lex_state = 117},
[1039] = {.lex_state = 117},
[1040] = {.lex_state = 168, .external_lex_state = 16},
[1041] = {.lex_state = 278, .external_lex_state = 10},
[1042] = {.lex_state = 117},
[1043] = {.lex_state = 117},
[1044] = {.lex_state = 278, .external_lex_state = 10},
[1045] = {.lex_state = 117},
[1046] = {.lex_state = 268, .external_lex_state = 9},
[1047] = {.lex_state = 268, .external_lex_state = 9},
[1048] = {.lex_state = 268, .external_lex_state = 9},
[1049] = {.lex_state = 117},
[1050] = {.lex_state = 117},
[1051] = {.lex_state = 268, .external_lex_state = 9},
[1052] = {.lex_state = 117},
[1053] = {.lex_state = 220},
[1054] = {.lex_state = 268, .external_lex_state = 9},
[1055] = {.lex_state = 117},
[1056] = {.lex_state = 220},
[1057] = {.lex_state = 268, .external_lex_state = 9},
[1058] = {.lex_state = 268, .external_lex_state = 9},
[1059] = {.lex_state = 173, .external_lex_state = 5},
[1060] = {.lex_state = 228, .external_lex_state = 2},
[1061] = {.lex_state = 270, .external_lex_state = 2},
[1062] = {.lex_state = 270, .external_lex_state = 2},
[1063] = {.lex_state = 173, .external_lex_state = 5},
[1064] = {.lex_state = 117},
[1065] = {.lex_state = 138},
[1066] = {.lex_state = 294, .external_lex_state = 2},
[1067] = {.lex_state = 263},
[1068] = {.lex_state = 286, .external_lex_state = 10},
[1069] = {.lex_state = 173, .external_lex_state = 5},
[1070] = {.lex_state = 272},
[1071] = {.lex_state = 272},
[1072] = {.lex_state = 117},
[1073] = {.lex_state = 117},
[1074] = {.lex_state = 117},
[1075] = {.lex_state = 170, .external_lex_state = 9},
[1076] = {.lex_state = 117},
[1077] = {.lex_state = 170, .external_lex_state = 9},
[1078] = {.lex_state = 173, .external_lex_state = 5},
[1079] = {.lex_state = 168, .external_lex_state = 16},
[1080] = {.lex_state = 238, .external_lex_state = 6},
[1081] = {.lex_state = 184, .external_lex_state = 18},
[1082] = {.lex_state = 288, .external_lex_state = 9},
[1083] = {.lex_state = 288, .external_lex_state = 9},
[1084] = {.lex_state = 213, .external_lex_state = 4},
[1085] = {.lex_state = 117},
[1086] = {.lex_state = 117},
[1087] = {.lex_state = 117},
[1088] = {.lex_state = 242, .external_lex_state = 10},
[1089] = {.lex_state = 117},
[1090] = {.lex_state = 242, .external_lex_state = 10},
[1091] = {.lex_state = 117},
[1092] = {.lex_state = 117},
[1093] = {.lex_state = 117},
[1094] = {.lex_state = 180, .external_lex_state = 10},
[1095] = {.lex_state = 117},
[1096] = {.lex_state = 180, .external_lex_state = 10},
[1097] = {.lex_state = 184, .external_lex_state = 3},
[1098] = {.lex_state = 184, .external_lex_state = 18},
[1099] = {.lex_state = 184, .external_lex_state = 18},
[1100] = {.lex_state = 186, .external_lex_state = 18},
[1101] = {.lex_state = 117},
[1102] = {.lex_state = 117},
[1103] = {.lex_state = 184, .external_lex_state = 18},
[1104] = {.lex_state = 117},
[1105] = {.lex_state = 220},
[1106] = {.lex_state = 184, .external_lex_state = 18},
[1107] = {.lex_state = 117},
[1108] = {.lex_state = 220},
[1109] = {.lex_state = 184, .external_lex_state = 18},
[1110] = {.lex_state = 184, .external_lex_state = 18},
[1111] = {.lex_state = 117},
[1112] = {.lex_state = 117},
[1113] = {.lex_state = 117},
[1114] = {.lex_state = 138, .external_lex_state = 11},
[1115] = {.lex_state = 117},
[1116] = {.lex_state = 138, .external_lex_state = 11},
[1117] = {.lex_state = 117},
[1118] = {.lex_state = 117},
[1119] = {.lex_state = 117},
[1120] = {.lex_state = 143},
[1121] = {.lex_state = 117},
[1122] = {.lex_state = 143},
[1123] = {.lex_state = 117},
[1124] = {.lex_state = 117},
[1125] = {.lex_state = 162, .external_lex_state = 4},
[1126] = {.lex_state = 278, .external_lex_state = 10},
[1127] = {.lex_state = 162, .external_lex_state = 4},
[1128] = {.lex_state = 195, .external_lex_state = 2},
[1129] = {.lex_state = 195, .external_lex_state = 11},
[1130] = {.lex_state = 195, .external_lex_state = 11},
[1131] = {.lex_state = 195, .external_lex_state = 11},
[1132] = {.lex_state = 117},
[1133] = {.lex_state = 117},
[1134] = {.lex_state = 195, .external_lex_state = 11},
[1135] = {.lex_state = 117},
[1136] = {.lex_state = 220},
[1137] = {.lex_state = 195, .external_lex_state = 11},
[1138] = {.lex_state = 117},
[1139] = {.lex_state = 220},
[1140] = {.lex_state = 195, .external_lex_state = 11},
[1141] = {.lex_state = 195, .external_lex_state = 11},
[1142] = {.lex_state = 117},
[1143] = {.lex_state = 117},
[1144] = {.lex_state = 117},
[1145] = {.lex_state = 117},
[1146] = {.lex_state = 117},
[1147] = {.lex_state = 117},
[1148] = {.lex_state = 272},
[1149] = {.lex_state = 272},
[1150] = {.lex_state = 248, .external_lex_state = 14},
[1151] = {.lex_state = 117},
[1152] = {.lex_state = 244, .external_lex_state = 12},
[1153] = {.lex_state = 220},
[1154] = {.lex_state = 244, .external_lex_state = 19},
[1155] = {.lex_state = 143},
[1156] = {.lex_state = 138},
[1157] = {.lex_state = 246, .external_lex_state = 19},
[1158] = {.lex_state = 244, .external_lex_state = 19},
[1159] = {.lex_state = 244, .external_lex_state = 19},
[1160] = {.lex_state = 244, .external_lex_state = 19},
[1161] = {.lex_state = 152},
[1162] = {.lex_state = 117},
[1163] = {.lex_state = 117},
[1164] = {.lex_state = 117},
[1165] = {.lex_state = 195, .external_lex_state = 2},
[1166] = {.lex_state = 117},
[1167] = {.lex_state = 203, .external_lex_state = 2},
[1168] = {.lex_state = 117},
[1169] = {.lex_state = 195, .external_lex_state = 2},
[1170] = {.lex_state = 117},
[1171] = {.lex_state = 117},
[1172] = {.lex_state = 117},
[1173] = {.lex_state = 190, .external_lex_state = 13},
[1174] = {.lex_state = 117},
[1175] = {.lex_state = 190, .external_lex_state = 13},
[1176] = {.lex_state = 117},
[1177] = {.lex_state = 290, .external_lex_state = 10},
[1178] = {.lex_state = 117},
[1179] = {.lex_state = 296, .external_lex_state = 10},
[1180] = {.lex_state = 143},
[1181] = {.lex_state = 138},
[1182] = {.lex_state = 290, .external_lex_state = 10},
[1183] = {.lex_state = 296, .external_lex_state = 10},
[1184] = {.lex_state = 296, .external_lex_state = 10},
[1185] = {.lex_state = 296, .external_lex_state = 10},
[1186] = {.lex_state = 152},
[1187] = {.lex_state = 117},
[1188] = {.lex_state = 117},
[1189] = {.lex_state = 117},
[1190] = {.lex_state = 195, .external_lex_state = 2},
[1191] = {.lex_state = 117},
[1192] = {.lex_state = 203, .external_lex_state = 2},
[1193] = {.lex_state = 117},
[1194] = {.lex_state = 195, .external_lex_state = 2},
[1195] = {.lex_state = 250, .external_lex_state = 13},
[1196] = {.lex_state = 250, .external_lex_state = 13},
[1197] = {.lex_state = 252, .external_lex_state = 13},
[1198] = {.lex_state = 117},
[1199] = {.lex_state = 117},
[1200] = {.lex_state = 250, .external_lex_state = 13},
[1201] = {.lex_state = 117},
[1202] = {.lex_state = 220},
[1203] = {.lex_state = 250, .external_lex_state = 13},
[1204] = {.lex_state = 117},
[1205] = {.lex_state = 220},
[1206] = {.lex_state = 250, .external_lex_state = 13},
[1207] = {.lex_state = 250, .external_lex_state = 13},
[1208] = {.lex_state = 250, .external_lex_state = 14},
[1209] = {.lex_state = 203, .external_lex_state = 11},
[1210] = {.lex_state = 256, .external_lex_state = 14},
[1211] = {.lex_state = 254, .external_lex_state = 19},
[1212] = {.lex_state = 292, .external_lex_state = 10},
[1213] = {.lex_state = 292, .external_lex_state = 10},
[1214] = {.lex_state = 258, .external_lex_state = 13},
[1215] = {.lex_state = 288, .external_lex_state = 9},
[1216] = {.lex_state = 288, .external_lex_state = 9},
[1217] = {.lex_state = 284, .external_lex_state = 9},
[1218] = {.lex_state = 117},
[1219] = {.lex_state = 117},
[1220] = {.lex_state = 288, .external_lex_state = 9},
[1221] = {.lex_state = 117},
[1222] = {.lex_state = 220},
[1223] = {.lex_state = 288, .external_lex_state = 9},
[1224] = {.lex_state = 117},
[1225] = {.lex_state = 220},
[1226] = {.lex_state = 288, .external_lex_state = 9},
[1227] = {.lex_state = 288, .external_lex_state = 9},
[1228] = {.lex_state = 213, .external_lex_state = 4},
[1229] = {.lex_state = 117},
[1230] = {.lex_state = 213, .external_lex_state = 4},
[1231] = {.lex_state = 117},
[1232] = {.lex_state = 117},
[1233] = {.lex_state = 213, .external_lex_state = 4},
[1234] = {.lex_state = 278, .external_lex_state = 10},
[1235] = {.lex_state = 117},
[1236] = {.lex_state = 117},
[1237] = {.lex_state = 278, .external_lex_state = 10},
[1238] = {.lex_state = 117},
[1239] = {.lex_state = 117},
[1240] = {.lex_state = 117},
[1241] = {.lex_state = 260, .external_lex_state = 17},
[1242] = {.lex_state = 117},
[1243] = {.lex_state = 220},
[1244] = {.lex_state = 260, .external_lex_state = 17},
[1245] = {.lex_state = 117},
[1246] = {.lex_state = 220},
[1247] = {.lex_state = 138, .external_lex_state = 2},
[1248] = {.lex_state = 117},
[1249] = {.lex_state = 117},
[1250] = {.lex_state = 117},
[1251] = {.lex_state = 263, .external_lex_state = 10},
[1252] = {.lex_state = 117},
[1253] = {.lex_state = 263, .external_lex_state = 10},
[1254] = {.lex_state = 266, .external_lex_state = 10},
[1255] = {.lex_state = 117},
[1256] = {.lex_state = 266, .external_lex_state = 10},
[1257] = {.lex_state = 117},
[1258] = {.lex_state = 117},
[1259] = {.lex_state = 266, .external_lex_state = 10},
[1260] = {.lex_state = 278, .external_lex_state = 10},
[1261] = {.lex_state = 117},
[1262] = {.lex_state = 117},
[1263] = {.lex_state = 278, .external_lex_state = 10},
[1264] = {.lex_state = 117},
[1265] = {.lex_state = 117},
[1266] = {.lex_state = 117},
[1267] = {.lex_state = 117},
[1268] = {.lex_state = 168, .external_lex_state = 16},
[1269] = {.lex_state = 117},
[1270] = {.lex_state = 168, .external_lex_state = 16},
[1271] = {.lex_state = 268, .external_lex_state = 9},
[1272] = {.lex_state = 117},
[1273] = {.lex_state = 268, .external_lex_state = 9},
[1274] = {.lex_state = 117},
[1275] = {.lex_state = 117},
[1276] = {.lex_state = 268, .external_lex_state = 9},
[1277] = {.lex_state = 278, .external_lex_state = 10},
[1278] = {.lex_state = 117},
[1279] = {.lex_state = 117},
[1280] = {.lex_state = 278, .external_lex_state = 10},
[1281] = {.lex_state = 117},
[1282] = {.lex_state = 228, .external_lex_state = 2},
[1283] = {.lex_state = 173, .external_lex_state = 5},
[1284] = {.lex_state = 286, .external_lex_state = 10},
[1285] = {.lex_state = 263},
[1286] = {.lex_state = 272},
[1287] = {.lex_state = 294, .external_lex_state = 2},
[1288] = {.lex_state = 294, .external_lex_state = 2},
[1289] = {.lex_state = 263},
[1290] = {.lex_state = 286, .external_lex_state = 10},
[1291] = {.lex_state = 173, .external_lex_state = 5},
[1292] = {.lex_state = 117},
[1293] = {.lex_state = 117},
[1294] = {.lex_state = 170, .external_lex_state = 9},
[1295] = {.lex_state = 170, .external_lex_state = 9},
[1296] = {.lex_state = 184, .external_lex_state = 18},
[1297] = {.lex_state = 288, .external_lex_state = 9},
[1298] = {.lex_state = 117},
[1299] = {.lex_state = 117},
[1300] = {.lex_state = 242, .external_lex_state = 10},
[1301] = {.lex_state = 242, .external_lex_state = 10},
[1302] = {.lex_state = 117},
[1303] = {.lex_state = 117},
[1304] = {.lex_state = 180, .external_lex_state = 10},
[1305] = {.lex_state = 180, .external_lex_state = 10},
[1306] = {.lex_state = 184, .external_lex_state = 18},
[1307] = {.lex_state = 117},
[1308] = {.lex_state = 184, .external_lex_state = 18},
[1309] = {.lex_state = 117},
[1310] = {.lex_state = 117},
[1311] = {.lex_state = 184, .external_lex_state = 18},
[1312] = {.lex_state = 278, .external_lex_state = 10},
[1313] = {.lex_state = 117},
[1314] = {.lex_state = 117},
[1315] = {.lex_state = 278, .external_lex_state = 10},
[1316] = {.lex_state = 117},
[1317] = {.lex_state = 117},
[1318] = {.lex_state = 117},
[1319] = {.lex_state = 138, .external_lex_state = 11},
[1320] = {.lex_state = 138, .external_lex_state = 11},
[1321] = {.lex_state = 117},
[1322] = {.lex_state = 117},
[1323] = {.lex_state = 143},
[1324] = {.lex_state = 143},
[1325] = {.lex_state = 162, .external_lex_state = 4},
[1326] = {.lex_state = 162, .external_lex_state = 4},
[1327] = {.lex_state = 195, .external_lex_state = 11},
[1328] = {.lex_state = 117},
[1329] = {.lex_state = 195, .external_lex_state = 11},
[1330] = {.lex_state = 117},
[1331] = {.lex_state = 117},
[1332] = {.lex_state = 195, .external_lex_state = 11},
[1333] = {.lex_state = 278, .external_lex_state = 10},
[1334] = {.lex_state = 117},
[1335] = {.lex_state = 117},
[1336] = {.lex_state = 278, .external_lex_state = 10},
[1337] = {.lex_state = 117},
[1338] = {.lex_state = 117},
[1339] = {.lex_state = 117},
[1340] = {.lex_state = 117},
[1341] = {.lex_state = 117},
[1342] = {.lex_state = 272},
[1343] = {.lex_state = 117},
[1344] = {.lex_state = 244, .external_lex_state = 12},
[1345] = {.lex_state = 244, .external_lex_state = 19},
[1346] = {.lex_state = 244, .external_lex_state = 19},
[1347] = {.lex_state = 246, .external_lex_state = 19},
[1348] = {.lex_state = 117},
[1349] = {.lex_state = 117},
[1350] = {.lex_state = 244, .external_lex_state = 19},
[1351] = {.lex_state = 117},
[1352] = {.lex_state = 220},
[1353] = {.lex_state = 244, .external_lex_state = 19},
[1354] = {.lex_state = 117},
[1355] = {.lex_state = 220},
[1356] = {.lex_state = 244, .external_lex_state = 19},
[1357] = {.lex_state = 244, .external_lex_state = 19},
[1358] = {.lex_state = 117},
[1359] = {.lex_state = 117},
[1360] = {.lex_state = 190, .external_lex_state = 13},
[1361] = {.lex_state = 190, .external_lex_state = 13},
[1362] = {.lex_state = 296, .external_lex_state = 10},
[1363] = {.lex_state = 296, .external_lex_state = 10},
[1364] = {.lex_state = 290, .external_lex_state = 10},
[1365] = {.lex_state = 117},
[1366] = {.lex_state = 117},
[1367] = {.lex_state = 296, .external_lex_state = 10},
[1368] = {.lex_state = 117},
[1369] = {.lex_state = 220},
[1370] = {.lex_state = 296, .external_lex_state = 10},
[1371] = {.lex_state = 117},
[1372] = {.lex_state = 220},
[1373] = {.lex_state = 296, .external_lex_state = 10},
[1374] = {.lex_state = 296, .external_lex_state = 10},
[1375] = {.lex_state = 250, .external_lex_state = 13},
[1376] = {.lex_state = 117},
[1377] = {.lex_state = 250, .external_lex_state = 13},
[1378] = {.lex_state = 117},
[1379] = {.lex_state = 117},
[1380] = {.lex_state = 250, .external_lex_state = 13},
[1381] = {.lex_state = 278, .external_lex_state = 10},
[1382] = {.lex_state = 117},
[1383] = {.lex_state = 117},
[1384] = {.lex_state = 278, .external_lex_state = 10},
[1385] = {.lex_state = 117},
[1386] = {.lex_state = 254, .external_lex_state = 19},
[1387] = {.lex_state = 292, .external_lex_state = 10},
[1388] = {.lex_state = 288, .external_lex_state = 9},
[1389] = {.lex_state = 117},
[1390] = {.lex_state = 288, .external_lex_state = 9},
[1391] = {.lex_state = 117},
[1392] = {.lex_state = 117},
[1393] = {.lex_state = 288, .external_lex_state = 9},
[1394] = {.lex_state = 278, .external_lex_state = 10},
[1395] = {.lex_state = 117},
[1396] = {.lex_state = 117},
[1397] = {.lex_state = 278, .external_lex_state = 10},
[1398] = {.lex_state = 117},
[1399] = {.lex_state = 117},
[1400] = {.lex_state = 117},
[1401] = {.lex_state = 117},
[1402] = {.lex_state = 213, .external_lex_state = 4},
[1403] = {.lex_state = 117},
[1404] = {.lex_state = 213, .external_lex_state = 4},
[1405] = {.lex_state = 260, .external_lex_state = 17},
[1406] = {.lex_state = 117},
[1407] = {.lex_state = 260, .external_lex_state = 17},
[1408] = {.lex_state = 117},
[1409] = {.lex_state = 117},
[1410] = {.lex_state = 260, .external_lex_state = 17},
[1411] = {.lex_state = 278, .external_lex_state = 10},
[1412] = {.lex_state = 117},
[1413] = {.lex_state = 117},
[1414] = {.lex_state = 278, .external_lex_state = 10},
[1415] = {.lex_state = 117},
[1416] = {.lex_state = 117},
[1417] = {.lex_state = 117},
[1418] = {.lex_state = 263, .external_lex_state = 10},
[1419] = {.lex_state = 263, .external_lex_state = 10},
[1420] = {.lex_state = 117},
[1421] = {.lex_state = 117},
[1422] = {.lex_state = 117},
[1423] = {.lex_state = 266, .external_lex_state = 10},
[1424] = {.lex_state = 117},
[1425] = {.lex_state = 266, .external_lex_state = 10},
[1426] = {.lex_state = 117},
[1427] = {.lex_state = 117},
[1428] = {.lex_state = 168, .external_lex_state = 16},
[1429] = {.lex_state = 168, .external_lex_state = 16},
[1430] = {.lex_state = 117},
[1431] = {.lex_state = 117},
[1432] = {.lex_state = 117},
[1433] = {.lex_state = 268, .external_lex_state = 9},
[1434] = {.lex_state = 117},
[1435] = {.lex_state = 268, .external_lex_state = 9},
[1436] = {.lex_state = 272},
[1437] = {.lex_state = 294, .external_lex_state = 2},
[1438] = {.lex_state = 294, .external_lex_state = 2},
[1439] = {.lex_state = 170, .external_lex_state = 9},
[1440] = {.lex_state = 170, .external_lex_state = 9},
[1441] = {.lex_state = 242, .external_lex_state = 10},
[1442] = {.lex_state = 242, .external_lex_state = 10},
[1443] = {.lex_state = 180, .external_lex_state = 10},
[1444] = {.lex_state = 180, .external_lex_state = 10},
[1445] = {.lex_state = 117},
[1446] = {.lex_state = 117},
[1447] = {.lex_state = 117},
[1448] = {.lex_state = 184, .external_lex_state = 18},
[1449] = {.lex_state = 117},
[1450] = {.lex_state = 184, .external_lex_state = 18},
[1451] = {.lex_state = 138, .external_lex_state = 11},
[1452] = {.lex_state = 138, .external_lex_state = 11},
[1453] = {.lex_state = 143},
[1454] = {.lex_state = 143},
[1455] = {.lex_state = 117},
[1456] = {.lex_state = 117},
[1457] = {.lex_state = 117},
[1458] = {.lex_state = 195, .external_lex_state = 11},
[1459] = {.lex_state = 117},
[1460] = {.lex_state = 195, .external_lex_state = 11},
[1461] = {.lex_state = 117},
[1462] = {.lex_state = 117},
[1463] = {.lex_state = 244, .external_lex_state = 19},
[1464] = {.lex_state = 117},
[1465] = {.lex_state = 244, .external_lex_state = 19},
[1466] = {.lex_state = 117},
[1467] = {.lex_state = 117},
[1468] = {.lex_state = 244, .external_lex_state = 19},
[1469] = {.lex_state = 278, .external_lex_state = 10},
[1470] = {.lex_state = 117},
[1471] = {.lex_state = 117},
[1472] = {.lex_state = 278, .external_lex_state = 10},
[1473] = {.lex_state = 117},
[1474] = {.lex_state = 190, .external_lex_state = 13},
[1475] = {.lex_state = 190, .external_lex_state = 13},
[1476] = {.lex_state = 296, .external_lex_state = 10},
[1477] = {.lex_state = 117},
[1478] = {.lex_state = 296, .external_lex_state = 10},
[1479] = {.lex_state = 117},
[1480] = {.lex_state = 117},
[1481] = {.lex_state = 296, .external_lex_state = 10},
[1482] = {.lex_state = 278, .external_lex_state = 10},
[1483] = {.lex_state = 117},
[1484] = {.lex_state = 117},
[1485] = {.lex_state = 278, .external_lex_state = 10},
[1486] = {.lex_state = 117},
[1487] = {.lex_state = 117},
[1488] = {.lex_state = 117},
[1489] = {.lex_state = 117},
[1490] = {.lex_state = 250, .external_lex_state = 13},
[1491] = {.lex_state = 117},
[1492] = {.lex_state = 250, .external_lex_state = 13},
[1493] = {.lex_state = 117},
[1494] = {.lex_state = 117},
[1495] = {.lex_state = 117},
[1496] = {.lex_state = 288, .external_lex_state = 9},
[1497] = {.lex_state = 117},
[1498] = {.lex_state = 288, .external_lex_state = 9},
[1499] = {.lex_state = 117},
[1500] = {.lex_state = 117},
[1501] = {.lex_state = 213, .external_lex_state = 4},
[1502] = {.lex_state = 213, .external_lex_state = 4},
[1503] = {.lex_state = 117},
[1504] = {.lex_state = 117},
[1505] = {.lex_state = 117},
[1506] = {.lex_state = 260, .external_lex_state = 17},
[1507] = {.lex_state = 117},
[1508] = {.lex_state = 260, .external_lex_state = 17},
[1509] = {.lex_state = 263, .external_lex_state = 10},
[1510] = {.lex_state = 263, .external_lex_state = 10},
[1511] = {.lex_state = 117},
[1512] = {.lex_state = 117},
[1513] = {.lex_state = 266, .external_lex_state = 10},
[1514] = {.lex_state = 266, .external_lex_state = 10},
[1515] = {.lex_state = 168, .external_lex_state = 16},
[1516] = {.lex_state = 168, .external_lex_state = 16},
[1517] = {.lex_state = 117},
[1518] = {.lex_state = 117},
[1519] = {.lex_state = 268, .external_lex_state = 9},
[1520] = {.lex_state = 268, .external_lex_state = 9},
[1521] = {.lex_state = 272},
[1522] = {.lex_state = 117},
[1523] = {.lex_state = 117},
[1524] = {.lex_state = 184, .external_lex_state = 18},
[1525] = {.lex_state = 184, .external_lex_state = 18},
[1526] = {.lex_state = 117},
[1527] = {.lex_state = 117},
[1528] = {.lex_state = 195, .external_lex_state = 11},
[1529] = {.lex_state = 195, .external_lex_state = 11},
[1530] = {.lex_state = 117},
[1531] = {.lex_state = 117},
[1532] = {.lex_state = 117},
[1533] = {.lex_state = 244, .external_lex_state = 19},
[1534] = {.lex_state = 117},
[1535] = {.lex_state = 244, .external_lex_state = 19},
[1536] = {.lex_state = 117},
[1537] = {.lex_state = 117},
[1538] = {.lex_state = 117},
[1539] = {.lex_state = 296, .external_lex_state = 10},
[1540] = {.lex_state = 117},
[1541] = {.lex_state = 296, .external_lex_state = 10},
[1542] = {.lex_state = 117},
[1543] = {.lex_state = 117},
[1544] = {.lex_state = 250, .external_lex_state = 13},
[1545] = {.lex_state = 250, .external_lex_state = 13},
[1546] = {.lex_state = 117},
[1547] = {.lex_state = 117},
[1548] = {.lex_state = 288, .external_lex_state = 9},
[1549] = {.lex_state = 288, .external_lex_state = 9},
[1550] = {.lex_state = 213, .external_lex_state = 4},
[1551] = {.lex_state = 213, .external_lex_state = 4},
[1552] = {.lex_state = 117},
[1553] = {.lex_state = 117},
[1554] = {.lex_state = 260, .external_lex_state = 17},
[1555] = {.lex_state = 260, .external_lex_state = 17},
[1556] = {.lex_state = 266, .external_lex_state = 10},
[1557] = {.lex_state = 266, .external_lex_state = 10},
[1558] = {.lex_state = 268, .external_lex_state = 9},
[1559] = {.lex_state = 268, .external_lex_state = 9},
[1560] = {.lex_state = 184, .external_lex_state = 18},
[1561] = {.lex_state = 184, .external_lex_state = 18},
[1562] = {.lex_state = 195, .external_lex_state = 11},
[1563] = {.lex_state = 195, .external_lex_state = 11},
[1564] = {.lex_state = 117},
[1565] = {.lex_state = 117},
[1566] = {.lex_state = 244, .external_lex_state = 19},
[1567] = {.lex_state = 244, .external_lex_state = 19},
[1568] = {.lex_state = 117},
[1569] = {.lex_state = 117},
[1570] = {.lex_state = 296, .external_lex_state = 10},
[1571] = {.lex_state = 296, .external_lex_state = 10},
[1572] = {.lex_state = 250, .external_lex_state = 13},
[1573] = {.lex_state = 250, .external_lex_state = 13},
[1574] = {.lex_state = 288, .external_lex_state = 9},
[1575] = {.lex_state = 288, .external_lex_state = 9},
[1576] = {.lex_state = 260, .external_lex_state = 17},
[1577] = {.lex_state = 260, .external_lex_state = 17},
[1578] = {.lex_state = 244, .external_lex_state = 19},
[1579] = {.lex_state = 244, .external_lex_state = 19},
[1580] = {.lex_state = 296, .external_lex_state = 10},
[1581] = {.lex_state = 296, .external_lex_state = 10},
};
enum {
ts_external_token__simple_heredoc,
ts_external_token__heredoc_beginning,
ts_external_token__heredoc_middle,
ts_external_token__heredoc_end,
ts_external_token_file_descriptor,
ts_external_token__empty_value,
ts_external_token__concat,
ts_external_token_variable_name,
ts_external_token_LF,
};
static TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = {
[ts_external_token__simple_heredoc] = sym__simple_heredoc,
[ts_external_token__heredoc_beginning] = sym__heredoc_beginning,
[ts_external_token__heredoc_middle] = sym__heredoc_middle,
[ts_external_token__heredoc_end] = sym__heredoc_end,
[ts_external_token_file_descriptor] = sym_file_descriptor,
[ts_external_token__empty_value] = sym__empty_value,
[ts_external_token__concat] = sym__concat,
[ts_external_token_variable_name] = sym_variable_name,
[ts_external_token_LF] = anon_sym_LF,
};
static bool ts_external_scanner_states[20][EXTERNAL_TOKEN_COUNT] = {
[1] = {
[ts_external_token__simple_heredoc] = true,
[ts_external_token__heredoc_beginning] = true,
[ts_external_token__heredoc_middle] = true,
[ts_external_token__heredoc_end] = true,
[ts_external_token_file_descriptor] = true,
[ts_external_token__empty_value] = true,
[ts_external_token__concat] = true,
[ts_external_token_variable_name] = true,
[ts_external_token_LF] = true,
},
[2] = {
[ts_external_token_file_descriptor] = true,
[ts_external_token_variable_name] = true,
},
[3] = {
[ts_external_token_variable_name] = true,
[ts_external_token_LF] = true,
},
[4] = {
[ts_external_token_file_descriptor] = true,
[ts_external_token__concat] = true,
[ts_external_token_LF] = true,
},
[5] = {
[ts_external_token_LF] = true,
},
[6] = {
[ts_external_token_file_descriptor] = true,
[ts_external_token_LF] = true,
},
[7] = {
[ts_external_token_file_descriptor] = true,
[ts_external_token_variable_name] = true,
[ts_external_token_LF] = true,
},
[8] = {
[ts_external_token__empty_value] = true,
},
[9] = {
[ts_external_token__concat] = true,
[ts_external_token_LF] = true,
},
[10] = {
[ts_external_token__concat] = true,
},
[11] = {
[ts_external_token_file_descriptor] = true,
[ts_external_token__concat] = true,
[ts_external_token_variable_name] = true,
},
[12] = {
[ts_external_token_variable_name] = true,
},
[13] = {
[ts_external_token_file_descriptor] = true,
[ts_external_token__concat] = true,
},
[14] = {
[ts_external_token_file_descriptor] = true,
},
[15] = {
[ts_external_token__simple_heredoc] = true,
[ts_external_token__heredoc_beginning] = true,
},
[16] = {
[ts_external_token_file_descriptor] = true,
[ts_external_token__concat] = true,
[ts_external_token_variable_name] = true,
[ts_external_token_LF] = true,
},
[17] = {
[ts_external_token__heredoc_middle] = true,
[ts_external_token__heredoc_end] = true,
},
[18] = {
[ts_external_token__concat] = true,
[ts_external_token_variable_name] = true,
[ts_external_token_LF] = true,
},
[19] = {
[ts_external_token__concat] = true,
[ts_external_token_variable_name] = true,
},
};
static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = {
[0] = {
[sym__simple_heredoc] = ACTIONS(1),
[sym__heredoc_beginning] = ACTIONS(1),
[sym__heredoc_middle] = ACTIONS(1),
[sym__heredoc_end] = ACTIONS(1),
[sym_file_descriptor] = ACTIONS(1),
[sym__empty_value] = ACTIONS(1),
[sym__concat] = ACTIONS(1),
[sym_variable_name] = ACTIONS(1),
[ts_builtin_sym_end] = ACTIONS(3),
[anon_sym_PIPE] = ACTIONS(3),
[anon_sym_RPAREN] = ACTIONS(3),
[anon_sym_SEMI_SEMI] = ACTIONS(3),
[anon_sym_LPAREN] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(3),
[anon_sym_RBRACE] = ACTIONS(3),
[anon_sym_PIPE_AMP] = ACTIONS(3),
[anon_sym_AMP_AMP] = ACTIONS(3),
[anon_sym_PIPE_PIPE] = ACTIONS(3),
[anon_sym_LBRACK] = ACTIONS(3),
[anon_sym_RBRACK] = ACTIONS(3),
[anon_sym_LBRACK_LBRACK] = ACTIONS(3),
[anon_sym_RBRACK_RBRACK] = ACTIONS(3),
[anon_sym_DASH] = ACTIONS(3),
[anon_sym_EQ] = ACTIONS(3),
[anon_sym_PLUS_EQ] = ACTIONS(3),
[anon_sym_LT] = ACTIONS(3),
[anon_sym_GT] = ACTIONS(3),
[anon_sym_GT_GT] = ACTIONS(3),
[anon_sym_AMP_GT] = ACTIONS(3),
[anon_sym_AMP_GT_GT] = ACTIONS(3),
[anon_sym_LT_AMP] = ACTIONS(3),
[anon_sym_GT_AMP] = ACTIONS(3),
[anon_sym_LT_LT] = ACTIONS(3),
[anon_sym_LT_LT_DASH] = ACTIONS(3),
[anon_sym_DQUOTE] = ACTIONS(3),
[sym_raw_string] = ACTIONS(3),
[anon_sym_DOLLAR] = ACTIONS(3),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(3),
[anon_sym_POUND] = ACTIONS(3),
[anon_sym_AT] = ACTIONS(3),
[anon_sym_COLON] = ACTIONS(3),
[anon_sym_COLON_QMARK] = ACTIONS(3),
[anon_sym_COLON_DASH] = ACTIONS(3),
[anon_sym_PERCENT] = ACTIONS(3),
[anon_sym_SLASH] = ACTIONS(3),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(3),
[anon_sym_BQUOTE] = ACTIONS(3),
[anon_sym_LT_LPAREN] = ACTIONS(3),
[anon_sym_GT_LPAREN] = ACTIONS(3),
[sym_comment] = ACTIONS(5),
[sym_simple_variable_name] = ACTIONS(3),
[anon_sym_STAR] = ACTIONS(3),
[anon_sym_QMARK] = ACTIONS(3),
[anon_sym_BANG] = ACTIONS(3),
[anon_sym_0] = ACTIONS(3),
[anon_sym__] = ACTIONS(3),
[anon_sym_SEMI] = ACTIONS(3),
[anon_sym_LF] = ACTIONS(3),
[anon_sym_AMP] = ACTIONS(3),
},
[1] = {
[sym_program] = STATE(22),
[sym__terminated_statement] = STATE(23),
[sym_for_statement] = STATE(24),
[sym_while_statement] = STATE(24),
[sym_if_statement] = STATE(24),
[sym_case_statement] = STATE(24),
[sym_function_definition] = STATE(24),
[sym_subshell] = STATE(24),
[sym_pipeline] = STATE(24),
[sym_list] = STATE(24),
[sym_bracket_command] = STATE(24),
[sym_command] = STATE(24),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(26),
[sym_declaration_command] = STATE(24),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(30),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[ts_builtin_sym_end] = ACTIONS(12),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[2] = {
[anon_sym_LT] = ACTIONS(54),
[anon_sym_GT] = ACTIONS(54),
[anon_sym_GT_GT] = ACTIONS(56),
[anon_sym_AMP_GT] = ACTIONS(54),
[anon_sym_AMP_GT_GT] = ACTIONS(56),
[anon_sym_LT_AMP] = ACTIONS(56),
[anon_sym_GT_AMP] = ACTIONS(56),
[sym_comment] = ACTIONS(52),
},
[3] = {
[sym__assignment] = STATE(35),
[anon_sym_LBRACK] = ACTIONS(58),
[anon_sym_EQ] = ACTIONS(60),
[anon_sym_PLUS_EQ] = ACTIONS(60),
[sym_comment] = ACTIONS(52),
},
[4] = {
[sym_word] = ACTIONS(62),
[sym_comment] = ACTIONS(52),
},
[5] = {
[sym__terminated_statement] = STATE(37),
[sym_for_statement] = STATE(38),
[sym_while_statement] = STATE(38),
[sym_if_statement] = STATE(38),
[sym_case_statement] = STATE(38),
[sym_function_definition] = STATE(38),
[sym_subshell] = STATE(38),
[sym_pipeline] = STATE(38),
[sym_list] = STATE(38),
[sym_bracket_command] = STATE(38),
[sym_command] = STATE(38),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(39),
[sym_declaration_command] = STATE(38),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[6] = {
[sym__terminated_statement] = STATE(40),
[sym_for_statement] = STATE(38),
[sym_while_statement] = STATE(38),
[sym_if_statement] = STATE(38),
[sym_case_statement] = STATE(38),
[sym_function_definition] = STATE(38),
[sym_subshell] = STATE(38),
[sym_pipeline] = STATE(38),
[sym_list] = STATE(38),
[sym_bracket_command] = STATE(38),
[sym_command] = STATE(38),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(39),
[sym_declaration_command] = STATE(38),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[7] = {
[sym_concatenation] = STATE(48),
[sym_string] = STATE(42),
[sym_simple_expansion] = STATE(42),
[sym_expansion] = STATE(42),
[sym_command_substitution] = STATE(42),
[sym_process_substitution] = STATE(42),
[anon_sym_DQUOTE] = ACTIONS(64),
[sym_raw_string] = ACTIONS(66),
[anon_sym_DOLLAR] = ACTIONS(68),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(70),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(72),
[anon_sym_BQUOTE] = ACTIONS(74),
[anon_sym_LT_LPAREN] = ACTIONS(76),
[anon_sym_GT_LPAREN] = ACTIONS(76),
[sym_word] = ACTIONS(78),
[sym_comment] = ACTIONS(52),
},
[8] = {
[sym_word] = ACTIONS(80),
[sym_comment] = ACTIONS(52),
},
[9] = {
[sym__terminated_statement] = STATE(23),
[sym_for_statement] = STATE(55),
[sym_while_statement] = STATE(55),
[sym_if_statement] = STATE(55),
[sym_case_statement] = STATE(55),
[sym_function_definition] = STATE(55),
[sym_subshell] = STATE(55),
[sym_pipeline] = STATE(55),
[sym_list] = STATE(55),
[sym_bracket_command] = STATE(55),
[sym_command] = STATE(55),
[sym_command_name] = STATE(56),
[sym_variable_assignment] = STATE(57),
[sym_declaration_command] = STATE(55),
[sym_subscript] = STATE(58),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(53),
[sym_simple_expansion] = STATE(53),
[sym_expansion] = STATE(53),
[sym_command_substitution] = STATE(53),
[sym_process_substitution] = STATE(53),
[aux_sym_program_repeat1] = STATE(59),
[aux_sym_command_repeat1] = STATE(60),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(82),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(84),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(86),
[anon_sym_typeset] = ACTIONS(86),
[anon_sym_export] = ACTIONS(86),
[anon_sym_readonly] = ACTIONS(86),
[anon_sym_local] = ACTIONS(86),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(88),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(90),
[sym_comment] = ACTIONS(52),
},
[10] = {
[sym_concatenation] = STATE(68),
[sym_string] = STATE(62),
[sym_simple_expansion] = STATE(62),
[sym_expansion] = STATE(62),
[sym_command_substitution] = STATE(62),
[sym_process_substitution] = STATE(62),
[aux_sym_for_statement_repeat1] = STATE(69),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(94),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(106),
[sym_comment] = ACTIONS(52),
},
[11] = {
[sym_concatenation] = STATE(77),
[sym_string] = STATE(71),
[sym_simple_expansion] = STATE(71),
[sym_expansion] = STATE(71),
[sym_command_substitution] = STATE(71),
[sym_process_substitution] = STATE(71),
[aux_sym_for_statement_repeat1] = STATE(78),
[anon_sym_DQUOTE] = ACTIONS(108),
[sym_raw_string] = ACTIONS(110),
[anon_sym_DOLLAR] = ACTIONS(112),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(114),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(116),
[anon_sym_BQUOTE] = ACTIONS(118),
[anon_sym_LT_LPAREN] = ACTIONS(120),
[anon_sym_GT_LPAREN] = ACTIONS(120),
[sym_word] = ACTIONS(122),
[sym_comment] = ACTIONS(52),
},
[12] = {
[sym_variable_assignment] = STATE(81),
[sym_subscript] = STATE(82),
[aux_sym_declaration_command_repeat1] = STATE(83),
[aux_sym_declaration_command_repeat2] = STATE(84),
[sym_variable_name] = ACTIONS(124),
[anon_sym_PIPE] = ACTIONS(126),
[anon_sym_SEMI_SEMI] = ACTIONS(126),
[anon_sym_PIPE_AMP] = ACTIONS(126),
[anon_sym_AMP_AMP] = ACTIONS(126),
[anon_sym_PIPE_PIPE] = ACTIONS(126),
[anon_sym_DASH] = ACTIONS(128),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(132),
[anon_sym_SEMI] = ACTIONS(126),
[anon_sym_LF] = ACTIONS(126),
[anon_sym_AMP] = ACTIONS(126),
},
[13] = {
[sym_concatenation] = STATE(92),
[sym_string] = STATE(86),
[sym_simple_expansion] = STATE(86),
[sym_expansion] = STATE(86),
[sym_command_substitution] = STATE(86),
[sym_process_substitution] = STATE(86),
[anon_sym_DQUOTE] = ACTIONS(134),
[sym_raw_string] = ACTIONS(136),
[anon_sym_DOLLAR] = ACTIONS(138),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(140),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(142),
[anon_sym_BQUOTE] = ACTIONS(144),
[anon_sym_LT_LPAREN] = ACTIONS(146),
[anon_sym_GT_LPAREN] = ACTIONS(146),
[sym_word] = ACTIONS(148),
[sym_comment] = ACTIONS(52),
},
[14] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(99),
[anon_sym_DQUOTE] = ACTIONS(150),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[15] = {
[aux_sym_concatenation_repeat1] = STATE(101),
[sym_file_descriptor] = ACTIONS(162),
[sym__concat] = ACTIONS(164),
[anon_sym_PIPE] = ACTIONS(166),
[anon_sym_SEMI_SEMI] = ACTIONS(166),
[anon_sym_PIPE_AMP] = ACTIONS(166),
[anon_sym_AMP_AMP] = ACTIONS(166),
[anon_sym_PIPE_PIPE] = ACTIONS(166),
[anon_sym_LT] = ACTIONS(166),
[anon_sym_GT] = ACTIONS(166),
[anon_sym_GT_GT] = ACTIONS(166),
[anon_sym_AMP_GT] = ACTIONS(166),
[anon_sym_AMP_GT_GT] = ACTIONS(166),
[anon_sym_LT_AMP] = ACTIONS(166),
[anon_sym_GT_AMP] = ACTIONS(166),
[anon_sym_LT_LT] = ACTIONS(166),
[anon_sym_LT_LT_DASH] = ACTIONS(166),
[anon_sym_DQUOTE] = ACTIONS(166),
[sym_raw_string] = ACTIONS(166),
[anon_sym_DOLLAR] = ACTIONS(166),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(166),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(166),
[anon_sym_BQUOTE] = ACTIONS(166),
[anon_sym_LT_LPAREN] = ACTIONS(166),
[anon_sym_GT_LPAREN] = ACTIONS(166),
[sym_word] = ACTIONS(166),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(166),
[anon_sym_LF] = ACTIONS(166),
[anon_sym_AMP] = ACTIONS(166),
},
[16] = {
[sym_special_variable_name] = STATE(104),
[anon_sym_DASH] = ACTIONS(168),
[anon_sym_DOLLAR] = ACTIONS(168),
[anon_sym_POUND] = ACTIONS(168),
[anon_sym_AT] = ACTIONS(168),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(170),
[anon_sym_STAR] = ACTIONS(168),
[anon_sym_QMARK] = ACTIONS(168),
[anon_sym_BANG] = ACTIONS(168),
[anon_sym_0] = ACTIONS(172),
[anon_sym__] = ACTIONS(172),
},
[17] = {
[sym_special_variable_name] = STATE(108),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(176),
[anon_sym_AT] = ACTIONS(174),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(178),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[18] = {
[sym_for_statement] = STATE(127),
[sym_while_statement] = STATE(127),
[sym_if_statement] = STATE(127),
[sym_case_statement] = STATE(127),
[sym_function_definition] = STATE(127),
[sym_subshell] = STATE(127),
[sym_pipeline] = STATE(127),
[sym_list] = STATE(127),
[sym_bracket_command] = STATE(127),
[sym_command] = STATE(127),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(129),
[sym_declaration_command] = STATE(127),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[19] = {
[sym_for_statement] = STATE(138),
[sym_while_statement] = STATE(138),
[sym_if_statement] = STATE(138),
[sym_case_statement] = STATE(138),
[sym_function_definition] = STATE(138),
[sym_subshell] = STATE(138),
[sym_pipeline] = STATE(138),
[sym_list] = STATE(138),
[sym_bracket_command] = STATE(138),
[sym_command] = STATE(138),
[sym_command_name] = STATE(139),
[sym_variable_assignment] = STATE(140),
[sym_declaration_command] = STATE(138),
[sym_subscript] = STATE(141),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(136),
[sym_simple_expansion] = STATE(136),
[sym_expansion] = STATE(136),
[sym_command_substitution] = STATE(136),
[sym_process_substitution] = STATE(136),
[aux_sym_command_repeat1] = STATE(142),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(218),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(220),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(222),
[anon_sym_typeset] = ACTIONS(222),
[anon_sym_export] = ACTIONS(222),
[anon_sym_readonly] = ACTIONS(222),
[anon_sym_local] = ACTIONS(222),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(224),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(226),
[sym_comment] = ACTIONS(52),
},
[20] = {
[sym_for_statement] = STATE(143),
[sym_while_statement] = STATE(143),
[sym_if_statement] = STATE(143),
[sym_case_statement] = STATE(143),
[sym_function_definition] = STATE(143),
[sym_subshell] = STATE(143),
[sym_pipeline] = STATE(143),
[sym_list] = STATE(143),
[sym_bracket_command] = STATE(143),
[sym_command] = STATE(143),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(144),
[sym_declaration_command] = STATE(143),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[21] = {
[sym_compound_statement] = STATE(147),
[aux_sym_concatenation_repeat1] = STATE(101),
[sym_file_descriptor] = ACTIONS(162),
[sym__concat] = ACTIONS(164),
[anon_sym_PIPE] = ACTIONS(166),
[anon_sym_SEMI_SEMI] = ACTIONS(166),
[anon_sym_LPAREN] = ACTIONS(228),
[anon_sym_LBRACE] = ACTIONS(230),
[anon_sym_PIPE_AMP] = ACTIONS(166),
[anon_sym_AMP_AMP] = ACTIONS(166),
[anon_sym_PIPE_PIPE] = ACTIONS(166),
[anon_sym_LT] = ACTIONS(166),
[anon_sym_GT] = ACTIONS(166),
[anon_sym_GT_GT] = ACTIONS(166),
[anon_sym_AMP_GT] = ACTIONS(166),
[anon_sym_AMP_GT_GT] = ACTIONS(166),
[anon_sym_LT_AMP] = ACTIONS(166),
[anon_sym_GT_AMP] = ACTIONS(166),
[anon_sym_LT_LT] = ACTIONS(166),
[anon_sym_LT_LT_DASH] = ACTIONS(166),
[anon_sym_DQUOTE] = ACTIONS(166),
[sym_raw_string] = ACTIONS(166),
[anon_sym_DOLLAR] = ACTIONS(166),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(166),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(166),
[anon_sym_BQUOTE] = ACTIONS(166),
[anon_sym_LT_LPAREN] = ACTIONS(166),
[anon_sym_GT_LPAREN] = ACTIONS(166),
[sym_word] = ACTIONS(166),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(166),
[anon_sym_LF] = ACTIONS(166),
[anon_sym_AMP] = ACTIONS(166),
},
[22] = {
[ts_builtin_sym_end] = ACTIONS(232),
[sym_comment] = ACTIONS(52),
},
[23] = {
[sym_file_descriptor] = ACTIONS(234),
[sym_variable_name] = ACTIONS(234),
[ts_builtin_sym_end] = ACTIONS(234),
[anon_sym_for] = ACTIONS(236),
[anon_sym_while] = ACTIONS(236),
[anon_sym_if] = ACTIONS(236),
[anon_sym_case] = ACTIONS(236),
[anon_sym_SEMI_SEMI] = ACTIONS(234),
[anon_sym_function] = ACTIONS(236),
[anon_sym_LPAREN] = ACTIONS(234),
[anon_sym_RBRACE] = ACTIONS(234),
[anon_sym_LBRACK] = ACTIONS(236),
[anon_sym_LBRACK_LBRACK] = ACTIONS(236),
[anon_sym_declare] = ACTIONS(236),
[anon_sym_typeset] = ACTIONS(236),
[anon_sym_export] = ACTIONS(236),
[anon_sym_readonly] = ACTIONS(236),
[anon_sym_local] = ACTIONS(236),
[anon_sym_LT] = ACTIONS(236),
[anon_sym_GT] = ACTIONS(236),
[anon_sym_GT_GT] = ACTIONS(234),
[anon_sym_AMP_GT] = ACTIONS(236),
[anon_sym_AMP_GT_GT] = ACTIONS(234),
[anon_sym_LT_AMP] = ACTIONS(234),
[anon_sym_GT_AMP] = ACTIONS(234),
[anon_sym_DQUOTE] = ACTIONS(234),
[sym_raw_string] = ACTIONS(234),
[anon_sym_DOLLAR] = ACTIONS(236),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(234),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(234),
[anon_sym_BQUOTE] = ACTIONS(234),
[anon_sym_LT_LPAREN] = ACTIONS(234),
[anon_sym_GT_LPAREN] = ACTIONS(234),
[sym_word] = ACTIONS(238),
[sym_comment] = ACTIONS(52),
},
[24] = {
[anon_sym_PIPE] = ACTIONS(240),
[anon_sym_SEMI_SEMI] = ACTIONS(242),
[anon_sym_PIPE_AMP] = ACTIONS(240),
[anon_sym_AMP_AMP] = ACTIONS(244),
[anon_sym_PIPE_PIPE] = ACTIONS(244),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(242),
[anon_sym_LF] = ACTIONS(242),
[anon_sym_AMP] = ACTIONS(242),
},
[25] = {
[sym_file_redirect] = STATE(155),
[sym_heredoc_redirect] = STATE(155),
[sym_concatenation] = STATE(156),
[sym_string] = STATE(154),
[sym_simple_expansion] = STATE(154),
[sym_expansion] = STATE(154),
[sym_command_substitution] = STATE(154),
[sym_process_substitution] = STATE(154),
[aux_sym_for_statement_repeat1] = STATE(157),
[aux_sym_command_repeat2] = STATE(158),
[sym_file_descriptor] = ACTIONS(246),
[anon_sym_PIPE] = ACTIONS(248),
[anon_sym_SEMI_SEMI] = ACTIONS(248),
[anon_sym_PIPE_AMP] = ACTIONS(248),
[anon_sym_AMP_AMP] = ACTIONS(248),
[anon_sym_PIPE_PIPE] = ACTIONS(248),
[anon_sym_LT] = ACTIONS(250),
[anon_sym_GT] = ACTIONS(250),
[anon_sym_GT_GT] = ACTIONS(250),
[anon_sym_AMP_GT] = ACTIONS(250),
[anon_sym_AMP_GT_GT] = ACTIONS(250),
[anon_sym_LT_AMP] = ACTIONS(250),
[anon_sym_GT_AMP] = ACTIONS(250),
[anon_sym_LT_LT] = ACTIONS(252),
[anon_sym_LT_LT_DASH] = ACTIONS(252),
[anon_sym_DQUOTE] = ACTIONS(254),
[sym_raw_string] = ACTIONS(256),
[anon_sym_DOLLAR] = ACTIONS(258),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(260),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(262),
[anon_sym_BQUOTE] = ACTIONS(264),
[anon_sym_LT_LPAREN] = ACTIONS(266),
[anon_sym_GT_LPAREN] = ACTIONS(266),
[sym_word] = ACTIONS(256),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(248),
[anon_sym_LF] = ACTIONS(248),
[anon_sym_AMP] = ACTIONS(248),
},
[26] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(240),
[anon_sym_SEMI_SEMI] = ACTIONS(242),
[anon_sym_PIPE_AMP] = ACTIONS(240),
[anon_sym_AMP_AMP] = ACTIONS(244),
[anon_sym_PIPE_PIPE] = ACTIONS(244),
[anon_sym_LT] = ACTIONS(270),
[anon_sym_GT] = ACTIONS(270),
[anon_sym_GT_GT] = ACTIONS(270),
[anon_sym_AMP_GT] = ACTIONS(270),
[anon_sym_AMP_GT_GT] = ACTIONS(270),
[anon_sym_LT_AMP] = ACTIONS(270),
[anon_sym_GT_AMP] = ACTIONS(270),
[anon_sym_DQUOTE] = ACTIONS(270),
[sym_raw_string] = ACTIONS(270),
[anon_sym_DOLLAR] = ACTIONS(270),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(270),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(270),
[anon_sym_BQUOTE] = ACTIONS(270),
[anon_sym_LT_LPAREN] = ACTIONS(270),
[anon_sym_GT_LPAREN] = ACTIONS(270),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(242),
[anon_sym_LF] = ACTIONS(242),
[anon_sym_AMP] = ACTIONS(242),
},
[27] = {
[sym__assignment] = STATE(35),
[anon_sym_EQ] = ACTIONS(60),
[anon_sym_PLUS_EQ] = ACTIONS(60),
[sym_comment] = ACTIONS(52),
},
[28] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(272),
[sym_comment] = ACTIONS(52),
},
[29] = {
[sym_file_descriptor] = ACTIONS(162),
[anon_sym_PIPE] = ACTIONS(166),
[anon_sym_RPAREN] = ACTIONS(166),
[anon_sym_SEMI_SEMI] = ACTIONS(166),
[anon_sym_PIPE_AMP] = ACTIONS(166),
[anon_sym_AMP_AMP] = ACTIONS(166),
[anon_sym_PIPE_PIPE] = ACTIONS(166),
[anon_sym_LT] = ACTIONS(166),
[anon_sym_GT] = ACTIONS(166),
[anon_sym_GT_GT] = ACTIONS(166),
[anon_sym_AMP_GT] = ACTIONS(166),
[anon_sym_AMP_GT_GT] = ACTIONS(166),
[anon_sym_LT_AMP] = ACTIONS(166),
[anon_sym_GT_AMP] = ACTIONS(166),
[anon_sym_LT_LT] = ACTIONS(166),
[anon_sym_LT_LT_DASH] = ACTIONS(166),
[anon_sym_DQUOTE] = ACTIONS(166),
[sym_raw_string] = ACTIONS(166),
[anon_sym_DOLLAR] = ACTIONS(166),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(166),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(166),
[anon_sym_BQUOTE] = ACTIONS(166),
[anon_sym_LT_LPAREN] = ACTIONS(166),
[anon_sym_GT_LPAREN] = ACTIONS(166),
[sym_word] = ACTIONS(166),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(166),
[anon_sym_LF] = ACTIONS(166),
[anon_sym_AMP] = ACTIONS(166),
},
[30] = {
[sym__terminated_statement] = STATE(23),
[sym_for_statement] = STATE(24),
[sym_while_statement] = STATE(24),
[sym_if_statement] = STATE(24),
[sym_case_statement] = STATE(24),
[sym_function_definition] = STATE(24),
[sym_subshell] = STATE(24),
[sym_pipeline] = STATE(24),
[sym_list] = STATE(24),
[sym_bracket_command] = STATE(24),
[sym_command] = STATE(24),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(26),
[sym_declaration_command] = STATE(24),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(159),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[ts_builtin_sym_end] = ACTIONS(274),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[31] = {
[sym_command_name] = STATE(161),
[sym_variable_assignment] = STATE(28),
[sym_subscript] = STATE(162),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_command_repeat1] = STATE(163),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(276),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(278),
[sym_comment] = ACTIONS(52),
},
[32] = {
[sym_concatenation] = STATE(165),
[sym_string] = STATE(164),
[sym_simple_expansion] = STATE(164),
[sym_expansion] = STATE(164),
[sym_command_substitution] = STATE(164),
[sym_process_substitution] = STATE(164),
[anon_sym_DQUOTE] = ACTIONS(134),
[sym_raw_string] = ACTIONS(280),
[anon_sym_DOLLAR] = ACTIONS(138),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(140),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(142),
[anon_sym_BQUOTE] = ACTIONS(144),
[anon_sym_LT_LPAREN] = ACTIONS(146),
[anon_sym_GT_LPAREN] = ACTIONS(146),
[sym_word] = ACTIONS(282),
[sym_comment] = ACTIONS(52),
},
[33] = {
[sym_concatenation] = STATE(173),
[sym_string] = STATE(167),
[sym_simple_expansion] = STATE(167),
[sym_expansion] = STATE(167),
[sym_command_substitution] = STATE(167),
[sym_process_substitution] = STATE(167),
[anon_sym_DQUOTE] = ACTIONS(284),
[sym_raw_string] = ACTIONS(286),
[anon_sym_DOLLAR] = ACTIONS(288),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(290),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(292),
[anon_sym_BQUOTE] = ACTIONS(294),
[anon_sym_LT_LPAREN] = ACTIONS(296),
[anon_sym_GT_LPAREN] = ACTIONS(296),
[sym_word] = ACTIONS(298),
[sym_comment] = ACTIONS(52),
},
[34] = {
[sym_concatenation] = STATE(174),
[sym_string] = STATE(177),
[sym_array] = STATE(174),
[sym_simple_expansion] = STATE(177),
[sym_expansion] = STATE(177),
[sym_command_substitution] = STATE(177),
[sym_process_substitution] = STATE(177),
[sym__empty_value] = ACTIONS(300),
[anon_sym_LPAREN] = ACTIONS(302),
[anon_sym_DQUOTE] = ACTIONS(304),
[sym_raw_string] = ACTIONS(306),
[anon_sym_DOLLAR] = ACTIONS(308),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(310),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(312),
[anon_sym_BQUOTE] = ACTIONS(314),
[anon_sym_LT_LPAREN] = ACTIONS(316),
[anon_sym_GT_LPAREN] = ACTIONS(316),
[sym_word] = ACTIONS(318),
[sym_comment] = ACTIONS(52),
},
[35] = {
[sym_file_descriptor] = ACTIONS(320),
[sym_variable_name] = ACTIONS(320),
[anon_sym_PIPE] = ACTIONS(322),
[anon_sym_RPAREN] = ACTIONS(322),
[anon_sym_SEMI_SEMI] = ACTIONS(322),
[anon_sym_PIPE_AMP] = ACTIONS(322),
[anon_sym_AMP_AMP] = ACTIONS(322),
[anon_sym_PIPE_PIPE] = ACTIONS(322),
[anon_sym_LT] = ACTIONS(322),
[anon_sym_GT] = ACTIONS(322),
[anon_sym_GT_GT] = ACTIONS(322),
[anon_sym_AMP_GT] = ACTIONS(322),
[anon_sym_AMP_GT_GT] = ACTIONS(322),
[anon_sym_LT_AMP] = ACTIONS(322),
[anon_sym_GT_AMP] = ACTIONS(322),
[anon_sym_DQUOTE] = ACTIONS(322),
[sym_raw_string] = ACTIONS(322),
[anon_sym_DOLLAR] = ACTIONS(322),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(322),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(322),
[anon_sym_BQUOTE] = ACTIONS(322),
[anon_sym_LT_LPAREN] = ACTIONS(322),
[anon_sym_GT_LPAREN] = ACTIONS(322),
[sym_word] = ACTIONS(322),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(322),
[anon_sym_LF] = ACTIONS(322),
[anon_sym_AMP] = ACTIONS(322),
},
[36] = {
[anon_sym_in] = ACTIONS(324),
[sym_comment] = ACTIONS(52),
},
[37] = {
[sym_do_group] = STATE(185),
[anon_sym_do] = ACTIONS(326),
[sym_comment] = ACTIONS(52),
},
[38] = {
[anon_sym_PIPE] = ACTIONS(240),
[anon_sym_SEMI_SEMI] = ACTIONS(328),
[anon_sym_PIPE_AMP] = ACTIONS(240),
[anon_sym_AMP_AMP] = ACTIONS(244),
[anon_sym_PIPE_PIPE] = ACTIONS(244),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(328),
[anon_sym_LF] = ACTIONS(328),
[anon_sym_AMP] = ACTIONS(328),
},
[39] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(240),
[anon_sym_SEMI_SEMI] = ACTIONS(328),
[anon_sym_PIPE_AMP] = ACTIONS(240),
[anon_sym_AMP_AMP] = ACTIONS(244),
[anon_sym_PIPE_PIPE] = ACTIONS(244),
[anon_sym_LT] = ACTIONS(270),
[anon_sym_GT] = ACTIONS(270),
[anon_sym_GT_GT] = ACTIONS(270),
[anon_sym_AMP_GT] = ACTIONS(270),
[anon_sym_AMP_GT_GT] = ACTIONS(270),
[anon_sym_LT_AMP] = ACTIONS(270),
[anon_sym_GT_AMP] = ACTIONS(270),
[anon_sym_DQUOTE] = ACTIONS(270),
[sym_raw_string] = ACTIONS(270),
[anon_sym_DOLLAR] = ACTIONS(270),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(270),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(270),
[anon_sym_BQUOTE] = ACTIONS(270),
[anon_sym_LT_LPAREN] = ACTIONS(270),
[anon_sym_GT_LPAREN] = ACTIONS(270),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(328),
[anon_sym_LF] = ACTIONS(328),
[anon_sym_AMP] = ACTIONS(328),
},
[40] = {
[anon_sym_then] = ACTIONS(330),
[sym_comment] = ACTIONS(52),
},
[41] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(189),
[anon_sym_DQUOTE] = ACTIONS(332),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[42] = {
[aux_sym_concatenation_repeat1] = STATE(193),
[sym__concat] = ACTIONS(334),
[anon_sym_in] = ACTIONS(336),
[anon_sym_SEMI_SEMI] = ACTIONS(338),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(338),
[anon_sym_LF] = ACTIONS(338),
[anon_sym_AMP] = ACTIONS(338),
},
[43] = {
[sym_special_variable_name] = STATE(196),
[anon_sym_DASH] = ACTIONS(340),
[anon_sym_DOLLAR] = ACTIONS(340),
[anon_sym_POUND] = ACTIONS(340),
[anon_sym_AT] = ACTIONS(340),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(342),
[anon_sym_STAR] = ACTIONS(340),
[anon_sym_QMARK] = ACTIONS(340),
[anon_sym_BANG] = ACTIONS(340),
[anon_sym_0] = ACTIONS(344),
[anon_sym__] = ACTIONS(344),
},
[44] = {
[sym_special_variable_name] = STATE(199),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(346),
[anon_sym_AT] = ACTIONS(174),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(348),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[45] = {
[sym_for_statement] = STATE(200),
[sym_while_statement] = STATE(200),
[sym_if_statement] = STATE(200),
[sym_case_statement] = STATE(200),
[sym_function_definition] = STATE(200),
[sym_subshell] = STATE(200),
[sym_pipeline] = STATE(200),
[sym_list] = STATE(200),
[sym_bracket_command] = STATE(200),
[sym_command] = STATE(200),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(201),
[sym_declaration_command] = STATE(200),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[46] = {
[sym_for_statement] = STATE(202),
[sym_while_statement] = STATE(202),
[sym_if_statement] = STATE(202),
[sym_case_statement] = STATE(202),
[sym_function_definition] = STATE(202),
[sym_subshell] = STATE(202),
[sym_pipeline] = STATE(202),
[sym_list] = STATE(202),
[sym_bracket_command] = STATE(202),
[sym_command] = STATE(202),
[sym_command_name] = STATE(139),
[sym_variable_assignment] = STATE(203),
[sym_declaration_command] = STATE(202),
[sym_subscript] = STATE(141),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(136),
[sym_simple_expansion] = STATE(136),
[sym_expansion] = STATE(136),
[sym_command_substitution] = STATE(136),
[sym_process_substitution] = STATE(136),
[aux_sym_command_repeat1] = STATE(142),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(218),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(220),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(222),
[anon_sym_typeset] = ACTIONS(222),
[anon_sym_export] = ACTIONS(222),
[anon_sym_readonly] = ACTIONS(222),
[anon_sym_local] = ACTIONS(222),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(224),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(226),
[sym_comment] = ACTIONS(52),
},
[47] = {
[sym_for_statement] = STATE(204),
[sym_while_statement] = STATE(204),
[sym_if_statement] = STATE(204),
[sym_case_statement] = STATE(204),
[sym_function_definition] = STATE(204),
[sym_subshell] = STATE(204),
[sym_pipeline] = STATE(204),
[sym_list] = STATE(204),
[sym_bracket_command] = STATE(204),
[sym_command] = STATE(204),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(205),
[sym_declaration_command] = STATE(204),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[48] = {
[anon_sym_in] = ACTIONS(336),
[anon_sym_SEMI_SEMI] = ACTIONS(338),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(338),
[anon_sym_LF] = ACTIONS(338),
[anon_sym_AMP] = ACTIONS(338),
},
[49] = {
[sym_compound_statement] = STATE(207),
[anon_sym_LPAREN] = ACTIONS(350),
[anon_sym_LBRACE] = ACTIONS(352),
[sym_comment] = ACTIONS(52),
},
[50] = {
[sym__assignment] = STATE(35),
[anon_sym_LBRACK] = ACTIONS(58),
[anon_sym_EQ] = ACTIONS(354),
[anon_sym_PLUS_EQ] = ACTIONS(354),
[sym_comment] = ACTIONS(52),
},
[51] = {
[sym_word] = ACTIONS(356),
[sym_comment] = ACTIONS(52),
},
[52] = {
[sym_variable_assignment] = STATE(81),
[sym_subscript] = STATE(211),
[aux_sym_declaration_command_repeat1] = STATE(212),
[aux_sym_declaration_command_repeat2] = STATE(213),
[sym_variable_name] = ACTIONS(358),
[anon_sym_PIPE] = ACTIONS(126),
[anon_sym_RPAREN] = ACTIONS(126),
[anon_sym_SEMI_SEMI] = ACTIONS(126),
[anon_sym_PIPE_AMP] = ACTIONS(126),
[anon_sym_AMP_AMP] = ACTIONS(126),
[anon_sym_PIPE_PIPE] = ACTIONS(126),
[anon_sym_DASH] = ACTIONS(128),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(132),
[anon_sym_SEMI] = ACTIONS(126),
[anon_sym_LF] = ACTIONS(126),
[anon_sym_AMP] = ACTIONS(126),
},
[53] = {
[aux_sym_concatenation_repeat1] = STATE(214),
[sym_file_descriptor] = ACTIONS(162),
[sym__concat] = ACTIONS(164),
[anon_sym_PIPE] = ACTIONS(166),
[anon_sym_RPAREN] = ACTIONS(166),
[anon_sym_SEMI_SEMI] = ACTIONS(166),
[anon_sym_PIPE_AMP] = ACTIONS(166),
[anon_sym_AMP_AMP] = ACTIONS(166),
[anon_sym_PIPE_PIPE] = ACTIONS(166),
[anon_sym_LT] = ACTIONS(166),
[anon_sym_GT] = ACTIONS(166),
[anon_sym_GT_GT] = ACTIONS(166),
[anon_sym_AMP_GT] = ACTIONS(166),
[anon_sym_AMP_GT_GT] = ACTIONS(166),
[anon_sym_LT_AMP] = ACTIONS(166),
[anon_sym_GT_AMP] = ACTIONS(166),
[anon_sym_LT_LT] = ACTIONS(166),
[anon_sym_LT_LT_DASH] = ACTIONS(166),
[anon_sym_DQUOTE] = ACTIONS(166),
[sym_raw_string] = ACTIONS(166),
[anon_sym_DOLLAR] = ACTIONS(166),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(166),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(166),
[anon_sym_BQUOTE] = ACTIONS(166),
[anon_sym_LT_LPAREN] = ACTIONS(166),
[anon_sym_GT_LPAREN] = ACTIONS(166),
[sym_word] = ACTIONS(166),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(166),
[anon_sym_LF] = ACTIONS(166),
[anon_sym_AMP] = ACTIONS(166),
},
[54] = {
[sym_compound_statement] = STATE(216),
[aux_sym_concatenation_repeat1] = STATE(214),
[sym_file_descriptor] = ACTIONS(162),
[sym__concat] = ACTIONS(164),
[anon_sym_PIPE] = ACTIONS(166),
[anon_sym_RPAREN] = ACTIONS(166),
[anon_sym_SEMI_SEMI] = ACTIONS(166),
[anon_sym_LPAREN] = ACTIONS(360),
[anon_sym_LBRACE] = ACTIONS(230),
[anon_sym_PIPE_AMP] = ACTIONS(166),
[anon_sym_AMP_AMP] = ACTIONS(166),
[anon_sym_PIPE_PIPE] = ACTIONS(166),
[anon_sym_LT] = ACTIONS(166),
[anon_sym_GT] = ACTIONS(166),
[anon_sym_GT_GT] = ACTIONS(166),
[anon_sym_AMP_GT] = ACTIONS(166),
[anon_sym_AMP_GT_GT] = ACTIONS(166),
[anon_sym_LT_AMP] = ACTIONS(166),
[anon_sym_GT_AMP] = ACTIONS(166),
[anon_sym_LT_LT] = ACTIONS(166),
[anon_sym_LT_LT_DASH] = ACTIONS(166),
[anon_sym_DQUOTE] = ACTIONS(166),
[sym_raw_string] = ACTIONS(166),
[anon_sym_DOLLAR] = ACTIONS(166),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(166),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(166),
[anon_sym_BQUOTE] = ACTIONS(166),
[anon_sym_LT_LPAREN] = ACTIONS(166),
[anon_sym_GT_LPAREN] = ACTIONS(166),
[sym_word] = ACTIONS(166),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(166),
[anon_sym_LF] = ACTIONS(166),
[anon_sym_AMP] = ACTIONS(166),
},
[55] = {
[anon_sym_PIPE] = ACTIONS(362),
[anon_sym_RPAREN] = ACTIONS(364),
[anon_sym_SEMI_SEMI] = ACTIONS(366),
[anon_sym_PIPE_AMP] = ACTIONS(362),
[anon_sym_AMP_AMP] = ACTIONS(368),
[anon_sym_PIPE_PIPE] = ACTIONS(368),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(366),
[anon_sym_LF] = ACTIONS(366),
[anon_sym_AMP] = ACTIONS(366),
},
[56] = {
[sym_file_redirect] = STATE(155),
[sym_heredoc_redirect] = STATE(155),
[sym_concatenation] = STATE(156),
[sym_string] = STATE(223),
[sym_simple_expansion] = STATE(223),
[sym_expansion] = STATE(223),
[sym_command_substitution] = STATE(223),
[sym_process_substitution] = STATE(223),
[aux_sym_for_statement_repeat1] = STATE(224),
[aux_sym_command_repeat2] = STATE(225),
[sym_file_descriptor] = ACTIONS(370),
[anon_sym_PIPE] = ACTIONS(248),
[anon_sym_RPAREN] = ACTIONS(248),
[anon_sym_SEMI_SEMI] = ACTIONS(248),
[anon_sym_PIPE_AMP] = ACTIONS(248),
[anon_sym_AMP_AMP] = ACTIONS(248),
[anon_sym_PIPE_PIPE] = ACTIONS(248),
[anon_sym_LT] = ACTIONS(372),
[anon_sym_GT] = ACTIONS(372),
[anon_sym_GT_GT] = ACTIONS(372),
[anon_sym_AMP_GT] = ACTIONS(372),
[anon_sym_AMP_GT_GT] = ACTIONS(372),
[anon_sym_LT_AMP] = ACTIONS(372),
[anon_sym_GT_AMP] = ACTIONS(372),
[anon_sym_LT_LT] = ACTIONS(252),
[anon_sym_LT_LT_DASH] = ACTIONS(252),
[anon_sym_DQUOTE] = ACTIONS(254),
[sym_raw_string] = ACTIONS(374),
[anon_sym_DOLLAR] = ACTIONS(258),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(260),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(262),
[anon_sym_BQUOTE] = ACTIONS(264),
[anon_sym_LT_LPAREN] = ACTIONS(266),
[anon_sym_GT_LPAREN] = ACTIONS(266),
[sym_word] = ACTIONS(374),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(248),
[anon_sym_LF] = ACTIONS(248),
[anon_sym_AMP] = ACTIONS(248),
},
[57] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(362),
[anon_sym_RPAREN] = ACTIONS(364),
[anon_sym_SEMI_SEMI] = ACTIONS(366),
[anon_sym_PIPE_AMP] = ACTIONS(362),
[anon_sym_AMP_AMP] = ACTIONS(368),
[anon_sym_PIPE_PIPE] = ACTIONS(368),
[anon_sym_LT] = ACTIONS(270),
[anon_sym_GT] = ACTIONS(270),
[anon_sym_GT_GT] = ACTIONS(270),
[anon_sym_AMP_GT] = ACTIONS(270),
[anon_sym_AMP_GT_GT] = ACTIONS(270),
[anon_sym_LT_AMP] = ACTIONS(270),
[anon_sym_GT_AMP] = ACTIONS(270),
[anon_sym_DQUOTE] = ACTIONS(270),
[sym_raw_string] = ACTIONS(270),
[anon_sym_DOLLAR] = ACTIONS(270),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(270),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(270),
[anon_sym_BQUOTE] = ACTIONS(270),
[anon_sym_LT_LPAREN] = ACTIONS(270),
[anon_sym_GT_LPAREN] = ACTIONS(270),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(366),
[anon_sym_LF] = ACTIONS(366),
[anon_sym_AMP] = ACTIONS(366),
},
[58] = {
[sym__assignment] = STATE(35),
[anon_sym_EQ] = ACTIONS(354),
[anon_sym_PLUS_EQ] = ACTIONS(354),
[sym_comment] = ACTIONS(52),
},
[59] = {
[sym__terminated_statement] = STATE(23),
[sym_for_statement] = STATE(226),
[sym_while_statement] = STATE(226),
[sym_if_statement] = STATE(226),
[sym_case_statement] = STATE(226),
[sym_function_definition] = STATE(226),
[sym_subshell] = STATE(226),
[sym_pipeline] = STATE(226),
[sym_list] = STATE(226),
[sym_bracket_command] = STATE(226),
[sym_command] = STATE(226),
[sym_command_name] = STATE(56),
[sym_variable_assignment] = STATE(227),
[sym_declaration_command] = STATE(226),
[sym_subscript] = STATE(58),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(53),
[sym_simple_expansion] = STATE(53),
[sym_expansion] = STATE(53),
[sym_command_substitution] = STATE(53),
[sym_process_substitution] = STATE(53),
[aux_sym_program_repeat1] = STATE(228),
[aux_sym_command_repeat1] = STATE(60),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(82),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(84),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(86),
[anon_sym_typeset] = ACTIONS(86),
[anon_sym_export] = ACTIONS(86),
[anon_sym_readonly] = ACTIONS(86),
[anon_sym_local] = ACTIONS(86),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(88),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(90),
[sym_comment] = ACTIONS(52),
},
[60] = {
[sym_command_name] = STATE(229),
[sym_variable_assignment] = STATE(28),
[sym_subscript] = STATE(162),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(53),
[sym_simple_expansion] = STATE(53),
[sym_expansion] = STATE(53),
[sym_command_substitution] = STATE(53),
[sym_process_substitution] = STATE(53),
[aux_sym_command_repeat1] = STATE(163),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(276),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(88),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(376),
[sym_comment] = ACTIONS(52),
},
[61] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(231),
[anon_sym_DQUOTE] = ACTIONS(378),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[62] = {
[aux_sym_concatenation_repeat1] = STATE(233),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACK] = ACTIONS(382),
[anon_sym_DQUOTE] = ACTIONS(384),
[sym_raw_string] = ACTIONS(384),
[anon_sym_DOLLAR] = ACTIONS(382),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(384),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(384),
[anon_sym_BQUOTE] = ACTIONS(384),
[anon_sym_LT_LPAREN] = ACTIONS(384),
[anon_sym_GT_LPAREN] = ACTIONS(384),
[sym_word] = ACTIONS(386),
[sym_comment] = ACTIONS(52),
},
[63] = {
[sym_special_variable_name] = STATE(236),
[anon_sym_DASH] = ACTIONS(388),
[anon_sym_DOLLAR] = ACTIONS(388),
[anon_sym_POUND] = ACTIONS(388),
[anon_sym_AT] = ACTIONS(388),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(390),
[anon_sym_STAR] = ACTIONS(388),
[anon_sym_QMARK] = ACTIONS(388),
[anon_sym_BANG] = ACTIONS(388),
[anon_sym_0] = ACTIONS(392),
[anon_sym__] = ACTIONS(392),
},
[64] = {
[sym_special_variable_name] = STATE(239),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(394),
[anon_sym_AT] = ACTIONS(174),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(396),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[65] = {
[sym_for_statement] = STATE(240),
[sym_while_statement] = STATE(240),
[sym_if_statement] = STATE(240),
[sym_case_statement] = STATE(240),
[sym_function_definition] = STATE(240),
[sym_subshell] = STATE(240),
[sym_pipeline] = STATE(240),
[sym_list] = STATE(240),
[sym_bracket_command] = STATE(240),
[sym_command] = STATE(240),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(241),
[sym_declaration_command] = STATE(240),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[66] = {
[sym_for_statement] = STATE(242),
[sym_while_statement] = STATE(242),
[sym_if_statement] = STATE(242),
[sym_case_statement] = STATE(242),
[sym_function_definition] = STATE(242),
[sym_subshell] = STATE(242),
[sym_pipeline] = STATE(242),
[sym_list] = STATE(242),
[sym_bracket_command] = STATE(242),
[sym_command] = STATE(242),
[sym_command_name] = STATE(139),
[sym_variable_assignment] = STATE(243),
[sym_declaration_command] = STATE(242),
[sym_subscript] = STATE(141),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(136),
[sym_simple_expansion] = STATE(136),
[sym_expansion] = STATE(136),
[sym_command_substitution] = STATE(136),
[sym_process_substitution] = STATE(136),
[aux_sym_command_repeat1] = STATE(142),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(218),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(220),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(222),
[anon_sym_typeset] = ACTIONS(222),
[anon_sym_export] = ACTIONS(222),
[anon_sym_readonly] = ACTIONS(222),
[anon_sym_local] = ACTIONS(222),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(224),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(226),
[sym_comment] = ACTIONS(52),
},
[67] = {
[sym_for_statement] = STATE(244),
[sym_while_statement] = STATE(244),
[sym_if_statement] = STATE(244),
[sym_case_statement] = STATE(244),
[sym_function_definition] = STATE(244),
[sym_subshell] = STATE(244),
[sym_pipeline] = STATE(244),
[sym_list] = STATE(244),
[sym_bracket_command] = STATE(244),
[sym_command] = STATE(244),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(245),
[sym_declaration_command] = STATE(244),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[68] = {
[anon_sym_RBRACK] = ACTIONS(382),
[anon_sym_DQUOTE] = ACTIONS(384),
[sym_raw_string] = ACTIONS(384),
[anon_sym_DOLLAR] = ACTIONS(382),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(384),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(384),
[anon_sym_BQUOTE] = ACTIONS(384),
[anon_sym_LT_LPAREN] = ACTIONS(384),
[anon_sym_GT_LPAREN] = ACTIONS(384),
[sym_word] = ACTIONS(386),
[sym_comment] = ACTIONS(52),
},
[69] = {
[sym_concatenation] = STATE(68),
[sym_string] = STATE(62),
[sym_simple_expansion] = STATE(62),
[sym_expansion] = STATE(62),
[sym_command_substitution] = STATE(62),
[sym_process_substitution] = STATE(62),
[aux_sym_for_statement_repeat1] = STATE(247),
[anon_sym_RBRACK] = ACTIONS(398),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(94),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(400),
[sym_comment] = ACTIONS(52),
},
[70] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(249),
[anon_sym_DQUOTE] = ACTIONS(402),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[71] = {
[aux_sym_concatenation_repeat1] = STATE(251),
[sym__concat] = ACTIONS(404),
[anon_sym_RBRACK_RBRACK] = ACTIONS(382),
[anon_sym_DQUOTE] = ACTIONS(384),
[sym_raw_string] = ACTIONS(384),
[anon_sym_DOLLAR] = ACTIONS(382),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(384),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(384),
[anon_sym_BQUOTE] = ACTIONS(384),
[anon_sym_LT_LPAREN] = ACTIONS(384),
[anon_sym_GT_LPAREN] = ACTIONS(384),
[sym_word] = ACTIONS(386),
[sym_comment] = ACTIONS(52),
},
[72] = {
[sym_special_variable_name] = STATE(254),
[anon_sym_DASH] = ACTIONS(406),
[anon_sym_DOLLAR] = ACTIONS(406),
[anon_sym_POUND] = ACTIONS(406),
[anon_sym_AT] = ACTIONS(406),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(408),
[anon_sym_STAR] = ACTIONS(406),
[anon_sym_QMARK] = ACTIONS(406),
[anon_sym_BANG] = ACTIONS(406),
[anon_sym_0] = ACTIONS(410),
[anon_sym__] = ACTIONS(410),
},
[73] = {
[sym_special_variable_name] = STATE(257),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(412),
[anon_sym_AT] = ACTIONS(174),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(414),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[74] = {
[sym_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_bracket_command] = STATE(258),
[sym_command] = STATE(258),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(259),
[sym_declaration_command] = STATE(258),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[75] = {
[sym_for_statement] = STATE(260),
[sym_while_statement] = STATE(260),
[sym_if_statement] = STATE(260),
[sym_case_statement] = STATE(260),
[sym_function_definition] = STATE(260),
[sym_subshell] = STATE(260),
[sym_pipeline] = STATE(260),
[sym_list] = STATE(260),
[sym_bracket_command] = STATE(260),
[sym_command] = STATE(260),
[sym_command_name] = STATE(139),
[sym_variable_assignment] = STATE(261),
[sym_declaration_command] = STATE(260),
[sym_subscript] = STATE(141),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(136),
[sym_simple_expansion] = STATE(136),
[sym_expansion] = STATE(136),
[sym_command_substitution] = STATE(136),
[sym_process_substitution] = STATE(136),
[aux_sym_command_repeat1] = STATE(142),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(218),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(220),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(222),
[anon_sym_typeset] = ACTIONS(222),
[anon_sym_export] = ACTIONS(222),
[anon_sym_readonly] = ACTIONS(222),
[anon_sym_local] = ACTIONS(222),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(224),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(226),
[sym_comment] = ACTIONS(52),
},
[76] = {
[sym_for_statement] = STATE(262),
[sym_while_statement] = STATE(262),
[sym_if_statement] = STATE(262),
[sym_case_statement] = STATE(262),
[sym_function_definition] = STATE(262),
[sym_subshell] = STATE(262),
[sym_pipeline] = STATE(262),
[sym_list] = STATE(262),
[sym_bracket_command] = STATE(262),
[sym_command] = STATE(262),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(263),
[sym_declaration_command] = STATE(262),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[77] = {
[anon_sym_RBRACK_RBRACK] = ACTIONS(382),
[anon_sym_DQUOTE] = ACTIONS(384),
[sym_raw_string] = ACTIONS(384),
[anon_sym_DOLLAR] = ACTIONS(382),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(384),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(384),
[anon_sym_BQUOTE] = ACTIONS(384),
[anon_sym_LT_LPAREN] = ACTIONS(384),
[anon_sym_GT_LPAREN] = ACTIONS(384),
[sym_word] = ACTIONS(386),
[sym_comment] = ACTIONS(52),
},
[78] = {
[sym_concatenation] = STATE(77),
[sym_string] = STATE(71),
[sym_simple_expansion] = STATE(71),
[sym_expansion] = STATE(71),
[sym_command_substitution] = STATE(71),
[sym_process_substitution] = STATE(71),
[aux_sym_for_statement_repeat1] = STATE(264),
[anon_sym_RBRACK_RBRACK] = ACTIONS(398),
[anon_sym_DQUOTE] = ACTIONS(108),
[sym_raw_string] = ACTIONS(110),
[anon_sym_DOLLAR] = ACTIONS(112),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(114),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(116),
[anon_sym_BQUOTE] = ACTIONS(118),
[anon_sym_LT_LPAREN] = ACTIONS(120),
[anon_sym_GT_LPAREN] = ACTIONS(120),
[sym_word] = ACTIONS(416),
[sym_comment] = ACTIONS(52),
},
[79] = {
[sym__assignment] = STATE(266),
[anon_sym_LBRACK] = ACTIONS(58),
[anon_sym_EQ] = ACTIONS(418),
[anon_sym_PLUS_EQ] = ACTIONS(418),
[sym_comment] = ACTIONS(52),
},
[80] = {
[sym_word] = ACTIONS(420),
[sym_comment] = ACTIONS(52),
},
[81] = {
[sym_variable_name] = ACTIONS(422),
[anon_sym_PIPE] = ACTIONS(424),
[anon_sym_RPAREN] = ACTIONS(424),
[anon_sym_SEMI_SEMI] = ACTIONS(424),
[anon_sym_PIPE_AMP] = ACTIONS(424),
[anon_sym_AMP_AMP] = ACTIONS(424),
[anon_sym_PIPE_PIPE] = ACTIONS(424),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(424),
[anon_sym_SEMI] = ACTIONS(424),
[anon_sym_LF] = ACTIONS(424),
[anon_sym_AMP] = ACTIONS(424),
},
[82] = {
[sym__assignment] = STATE(266),
[anon_sym_EQ] = ACTIONS(418),
[anon_sym_PLUS_EQ] = ACTIONS(418),
[sym_comment] = ACTIONS(52),
},
[83] = {
[sym_variable_assignment] = STATE(81),
[sym_subscript] = STATE(82),
[aux_sym_declaration_command_repeat1] = STATE(268),
[aux_sym_declaration_command_repeat2] = STATE(269),
[sym_variable_name] = ACTIONS(124),
[anon_sym_PIPE] = ACTIONS(426),
[anon_sym_SEMI_SEMI] = ACTIONS(426),
[anon_sym_PIPE_AMP] = ACTIONS(426),
[anon_sym_AMP_AMP] = ACTIONS(426),
[anon_sym_PIPE_PIPE] = ACTIONS(426),
[anon_sym_DASH] = ACTIONS(128),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(132),
[anon_sym_SEMI] = ACTIONS(426),
[anon_sym_LF] = ACTIONS(426),
[anon_sym_AMP] = ACTIONS(426),
},
[84] = {
[sym_variable_assignment] = STATE(81),
[sym_subscript] = STATE(82),
[aux_sym_declaration_command_repeat2] = STATE(270),
[sym_variable_name] = ACTIONS(124),
[anon_sym_PIPE] = ACTIONS(426),
[anon_sym_SEMI_SEMI] = ACTIONS(426),
[anon_sym_PIPE_AMP] = ACTIONS(426),
[anon_sym_AMP_AMP] = ACTIONS(426),
[anon_sym_PIPE_PIPE] = ACTIONS(426),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(132),
[anon_sym_SEMI] = ACTIONS(426),
[anon_sym_LF] = ACTIONS(426),
[anon_sym_AMP] = ACTIONS(426),
},
[85] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(272),
[anon_sym_DQUOTE] = ACTIONS(428),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[86] = {
[aux_sym_concatenation_repeat1] = STATE(274),
[sym_file_descriptor] = ACTIONS(430),
[sym__concat] = ACTIONS(432),
[sym_variable_name] = ACTIONS(430),
[anon_sym_LT] = ACTIONS(434),
[anon_sym_GT] = ACTIONS(434),
[anon_sym_GT_GT] = ACTIONS(430),
[anon_sym_AMP_GT] = ACTIONS(434),
[anon_sym_AMP_GT_GT] = ACTIONS(430),
[anon_sym_LT_AMP] = ACTIONS(430),
[anon_sym_GT_AMP] = ACTIONS(430),
[anon_sym_DQUOTE] = ACTIONS(430),
[sym_raw_string] = ACTIONS(430),
[anon_sym_DOLLAR] = ACTIONS(434),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(430),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(430),
[anon_sym_BQUOTE] = ACTIONS(430),
[anon_sym_LT_LPAREN] = ACTIONS(430),
[anon_sym_GT_LPAREN] = ACTIONS(430),
[sym_word] = ACTIONS(434),
[sym_comment] = ACTIONS(52),
},
[87] = {
[sym_special_variable_name] = STATE(277),
[anon_sym_DASH] = ACTIONS(436),
[anon_sym_DOLLAR] = ACTIONS(436),
[anon_sym_POUND] = ACTIONS(436),
[anon_sym_AT] = ACTIONS(436),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(438),
[anon_sym_STAR] = ACTIONS(436),
[anon_sym_QMARK] = ACTIONS(436),
[anon_sym_BANG] = ACTIONS(436),
[anon_sym_0] = ACTIONS(440),
[anon_sym__] = ACTIONS(440),
},
[88] = {
[sym_special_variable_name] = STATE(280),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(442),
[anon_sym_AT] = ACTIONS(174),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(444),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[89] = {
[sym_for_statement] = STATE(281),
[sym_while_statement] = STATE(281),
[sym_if_statement] = STATE(281),
[sym_case_statement] = STATE(281),
[sym_function_definition] = STATE(281),
[sym_subshell] = STATE(281),
[sym_pipeline] = STATE(281),
[sym_list] = STATE(281),
[sym_bracket_command] = STATE(281),
[sym_command] = STATE(281),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(282),
[sym_declaration_command] = STATE(281),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[90] = {
[sym_for_statement] = STATE(283),
[sym_while_statement] = STATE(283),
[sym_if_statement] = STATE(283),
[sym_case_statement] = STATE(283),
[sym_function_definition] = STATE(283),
[sym_subshell] = STATE(283),
[sym_pipeline] = STATE(283),
[sym_list] = STATE(283),
[sym_bracket_command] = STATE(283),
[sym_command] = STATE(283),
[sym_command_name] = STATE(139),
[sym_variable_assignment] = STATE(284),
[sym_declaration_command] = STATE(283),
[sym_subscript] = STATE(141),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(136),
[sym_simple_expansion] = STATE(136),
[sym_expansion] = STATE(136),
[sym_command_substitution] = STATE(136),
[sym_process_substitution] = STATE(136),
[aux_sym_command_repeat1] = STATE(142),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(218),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(220),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(222),
[anon_sym_typeset] = ACTIONS(222),
[anon_sym_export] = ACTIONS(222),
[anon_sym_readonly] = ACTIONS(222),
[anon_sym_local] = ACTIONS(222),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(224),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(226),
[sym_comment] = ACTIONS(52),
},
[91] = {
[sym_for_statement] = STATE(285),
[sym_while_statement] = STATE(285),
[sym_if_statement] = STATE(285),
[sym_case_statement] = STATE(285),
[sym_function_definition] = STATE(285),
[sym_subshell] = STATE(285),
[sym_pipeline] = STATE(285),
[sym_list] = STATE(285),
[sym_bracket_command] = STATE(285),
[sym_command] = STATE(285),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(286),
[sym_declaration_command] = STATE(285),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[92] = {
[sym_file_descriptor] = ACTIONS(430),
[sym_variable_name] = ACTIONS(430),
[anon_sym_LT] = ACTIONS(434),
[anon_sym_GT] = ACTIONS(434),
[anon_sym_GT_GT] = ACTIONS(430),
[anon_sym_AMP_GT] = ACTIONS(434),
[anon_sym_AMP_GT_GT] = ACTIONS(430),
[anon_sym_LT_AMP] = ACTIONS(430),
[anon_sym_GT_AMP] = ACTIONS(430),
[anon_sym_DQUOTE] = ACTIONS(430),
[sym_raw_string] = ACTIONS(430),
[anon_sym_DOLLAR] = ACTIONS(434),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(430),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(430),
[anon_sym_BQUOTE] = ACTIONS(430),
[anon_sym_LT_LPAREN] = ACTIONS(430),
[anon_sym_GT_LPAREN] = ACTIONS(430),
[sym_word] = ACTIONS(434),
[sym_comment] = ACTIONS(52),
},
[93] = {
[sym_file_descriptor] = ACTIONS(446),
[sym__concat] = ACTIONS(446),
[anon_sym_PIPE] = ACTIONS(448),
[anon_sym_RPAREN] = ACTIONS(448),
[anon_sym_SEMI_SEMI] = ACTIONS(448),
[anon_sym_PIPE_AMP] = ACTIONS(448),
[anon_sym_AMP_AMP] = ACTIONS(448),
[anon_sym_PIPE_PIPE] = ACTIONS(448),
[anon_sym_LT] = ACTIONS(448),
[anon_sym_GT] = ACTIONS(448),
[anon_sym_GT_GT] = ACTIONS(448),
[anon_sym_AMP_GT] = ACTIONS(448),
[anon_sym_AMP_GT_GT] = ACTIONS(448),
[anon_sym_LT_AMP] = ACTIONS(448),
[anon_sym_GT_AMP] = ACTIONS(448),
[anon_sym_LT_LT] = ACTIONS(448),
[anon_sym_LT_LT_DASH] = ACTIONS(448),
[anon_sym_DQUOTE] = ACTIONS(448),
[sym_raw_string] = ACTIONS(448),
[anon_sym_DOLLAR] = ACTIONS(448),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(448),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(448),
[anon_sym_BQUOTE] = ACTIONS(448),
[anon_sym_LT_LPAREN] = ACTIONS(448),
[anon_sym_GT_LPAREN] = ACTIONS(448),
[sym_word] = ACTIONS(448),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(448),
[anon_sym_LF] = ACTIONS(448),
[anon_sym_AMP] = ACTIONS(448),
},
[94] = {
[anon_sym_DQUOTE] = ACTIONS(450),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(452),
[anon_sym_DOLLAR] = ACTIONS(450),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(450),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(450),
[anon_sym_BQUOTE] = ACTIONS(450),
[sym_comment] = ACTIONS(130),
},
[95] = {
[sym_special_variable_name] = STATE(289),
[anon_sym_DASH] = ACTIONS(454),
[anon_sym_DOLLAR] = ACTIONS(454),
[anon_sym_POUND] = ACTIONS(454),
[anon_sym_AT] = ACTIONS(454),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(456),
[anon_sym_STAR] = ACTIONS(454),
[anon_sym_QMARK] = ACTIONS(454),
[anon_sym_BANG] = ACTIONS(454),
[anon_sym_0] = ACTIONS(458),
[anon_sym__] = ACTIONS(458),
},
[96] = {
[sym_special_variable_name] = STATE(292),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(460),
[anon_sym_AT] = ACTIONS(174),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(462),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[97] = {
[sym_for_statement] = STATE(293),
[sym_while_statement] = STATE(293),
[sym_if_statement] = STATE(293),
[sym_case_statement] = STATE(293),
[sym_function_definition] = STATE(293),
[sym_subshell] = STATE(293),
[sym_pipeline] = STATE(293),
[sym_list] = STATE(293),
[sym_bracket_command] = STATE(293),
[sym_command] = STATE(293),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(294),
[sym_declaration_command] = STATE(293),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[98] = {
[sym_for_statement] = STATE(295),
[sym_while_statement] = STATE(295),
[sym_if_statement] = STATE(295),
[sym_case_statement] = STATE(295),
[sym_function_definition] = STATE(295),
[sym_subshell] = STATE(295),
[sym_pipeline] = STATE(295),
[sym_list] = STATE(295),
[sym_bracket_command] = STATE(295),
[sym_command] = STATE(295),
[sym_command_name] = STATE(139),
[sym_variable_assignment] = STATE(296),
[sym_declaration_command] = STATE(295),
[sym_subscript] = STATE(141),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(136),
[sym_simple_expansion] = STATE(136),
[sym_expansion] = STATE(136),
[sym_command_substitution] = STATE(136),
[sym_process_substitution] = STATE(136),
[aux_sym_command_repeat1] = STATE(142),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(218),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(220),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(222),
[anon_sym_typeset] = ACTIONS(222),
[anon_sym_export] = ACTIONS(222),
[anon_sym_readonly] = ACTIONS(222),
[anon_sym_local] = ACTIONS(222),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(224),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(226),
[sym_comment] = ACTIONS(52),
},
[99] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(298),
[anon_sym_DQUOTE] = ACTIONS(464),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[100] = {
[sym_string] = STATE(299),
[sym_simple_expansion] = STATE(299),
[sym_expansion] = STATE(299),
[sym_command_substitution] = STATE(299),
[sym_process_substitution] = STATE(299),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(466),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(468),
[sym_comment] = ACTIONS(52),
},
[101] = {
[aux_sym_concatenation_repeat1] = STATE(300),
[sym_file_descriptor] = ACTIONS(470),
[sym__concat] = ACTIONS(164),
[anon_sym_PIPE] = ACTIONS(472),
[anon_sym_SEMI_SEMI] = ACTIONS(472),
[anon_sym_PIPE_AMP] = ACTIONS(472),
[anon_sym_AMP_AMP] = ACTIONS(472),
[anon_sym_PIPE_PIPE] = ACTIONS(472),
[anon_sym_LT] = ACTIONS(472),
[anon_sym_GT] = ACTIONS(472),
[anon_sym_GT_GT] = ACTIONS(472),
[anon_sym_AMP_GT] = ACTIONS(472),
[anon_sym_AMP_GT_GT] = ACTIONS(472),
[anon_sym_LT_AMP] = ACTIONS(472),
[anon_sym_GT_AMP] = ACTIONS(472),
[anon_sym_LT_LT] = ACTIONS(472),
[anon_sym_LT_LT_DASH] = ACTIONS(472),
[anon_sym_DQUOTE] = ACTIONS(472),
[sym_raw_string] = ACTIONS(472),
[anon_sym_DOLLAR] = ACTIONS(472),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(472),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(472),
[anon_sym_BQUOTE] = ACTIONS(472),
[anon_sym_LT_LPAREN] = ACTIONS(472),
[anon_sym_GT_LPAREN] = ACTIONS(472),
[sym_word] = ACTIONS(472),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(472),
[anon_sym_LF] = ACTIONS(472),
[anon_sym_AMP] = ACTIONS(472),
},
[102] = {
[sym_file_descriptor] = ACTIONS(474),
[sym__concat] = ACTIONS(474),
[anon_sym_PIPE] = ACTIONS(476),
[anon_sym_RPAREN] = ACTIONS(476),
[anon_sym_SEMI_SEMI] = ACTIONS(476),
[anon_sym_PIPE_AMP] = ACTIONS(476),
[anon_sym_AMP_AMP] = ACTIONS(476),
[anon_sym_PIPE_PIPE] = ACTIONS(476),
[anon_sym_LT] = ACTIONS(476),
[anon_sym_GT] = ACTIONS(476),
[anon_sym_GT_GT] = ACTIONS(476),
[anon_sym_AMP_GT] = ACTIONS(476),
[anon_sym_AMP_GT_GT] = ACTIONS(476),
[anon_sym_LT_AMP] = ACTIONS(476),
[anon_sym_GT_AMP] = ACTIONS(476),
[anon_sym_LT_LT] = ACTIONS(476),
[anon_sym_LT_LT_DASH] = ACTIONS(476),
[anon_sym_DQUOTE] = ACTIONS(476),
[sym_raw_string] = ACTIONS(476),
[anon_sym_DOLLAR] = ACTIONS(476),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(476),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(476),
[anon_sym_BQUOTE] = ACTIONS(476),
[anon_sym_LT_LPAREN] = ACTIONS(476),
[anon_sym_GT_LPAREN] = ACTIONS(476),
[sym_word] = ACTIONS(476),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(476),
[anon_sym_LF] = ACTIONS(476),
[anon_sym_AMP] = ACTIONS(476),
},
[103] = {
[sym_file_descriptor] = ACTIONS(478),
[sym__concat] = ACTIONS(478),
[anon_sym_PIPE] = ACTIONS(480),
[anon_sym_RPAREN] = ACTIONS(480),
[anon_sym_SEMI_SEMI] = ACTIONS(480),
[anon_sym_PIPE_AMP] = ACTIONS(480),
[anon_sym_AMP_AMP] = ACTIONS(480),
[anon_sym_PIPE_PIPE] = ACTIONS(480),
[anon_sym_LT] = ACTIONS(480),
[anon_sym_GT] = ACTIONS(480),
[anon_sym_GT_GT] = ACTIONS(480),
[anon_sym_AMP_GT] = ACTIONS(480),
[anon_sym_AMP_GT_GT] = ACTIONS(480),
[anon_sym_LT_AMP] = ACTIONS(480),
[anon_sym_GT_AMP] = ACTIONS(480),
[anon_sym_LT_LT] = ACTIONS(480),
[anon_sym_LT_LT_DASH] = ACTIONS(480),
[anon_sym_DQUOTE] = ACTIONS(480),
[sym_raw_string] = ACTIONS(480),
[anon_sym_DOLLAR] = ACTIONS(480),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(480),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(480),
[anon_sym_BQUOTE] = ACTIONS(480),
[anon_sym_LT_LPAREN] = ACTIONS(480),
[anon_sym_GT_LPAREN] = ACTIONS(480),
[sym_word] = ACTIONS(480),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(480),
[anon_sym_LF] = ACTIONS(480),
[anon_sym_AMP] = ACTIONS(480),
},
[104] = {
[sym_file_descriptor] = ACTIONS(482),
[sym__concat] = ACTIONS(482),
[anon_sym_PIPE] = ACTIONS(484),
[anon_sym_RPAREN] = ACTIONS(484),
[anon_sym_SEMI_SEMI] = ACTIONS(484),
[anon_sym_PIPE_AMP] = ACTIONS(484),
[anon_sym_AMP_AMP] = ACTIONS(484),
[anon_sym_PIPE_PIPE] = ACTIONS(484),
[anon_sym_LT] = ACTIONS(484),
[anon_sym_GT] = ACTIONS(484),
[anon_sym_GT_GT] = ACTIONS(484),
[anon_sym_AMP_GT] = ACTIONS(484),
[anon_sym_AMP_GT_GT] = ACTIONS(484),
[anon_sym_LT_AMP] = ACTIONS(484),
[anon_sym_GT_AMP] = ACTIONS(484),
[anon_sym_LT_LT] = ACTIONS(484),
[anon_sym_LT_LT_DASH] = ACTIONS(484),
[anon_sym_DQUOTE] = ACTIONS(484),
[sym_raw_string] = ACTIONS(484),
[anon_sym_DOLLAR] = ACTIONS(484),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(484),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(484),
[anon_sym_BQUOTE] = ACTIONS(484),
[anon_sym_LT_LPAREN] = ACTIONS(484),
[anon_sym_GT_LPAREN] = ACTIONS(484),
[sym_word] = ACTIONS(484),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(484),
[anon_sym_LF] = ACTIONS(484),
[anon_sym_AMP] = ACTIONS(484),
},
[105] = {
[anon_sym_RBRACE] = ACTIONS(474),
[anon_sym_LBRACK] = ACTIONS(474),
[anon_sym_EQ] = ACTIONS(474),
[anon_sym_COLON] = ACTIONS(486),
[anon_sym_COLON_QMARK] = ACTIONS(474),
[anon_sym_COLON_DASH] = ACTIONS(474),
[anon_sym_PERCENT] = ACTIONS(474),
[anon_sym_SLASH] = ACTIONS(474),
[sym_comment] = ACTIONS(52),
},
[106] = {
[sym_special_variable_name] = STATE(302),
[anon_sym_RBRACE] = ACTIONS(474),
[anon_sym_LBRACK] = ACTIONS(474),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_EQ] = ACTIONS(474),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(174),
[anon_sym_AT] = ACTIONS(174),
[anon_sym_COLON] = ACTIONS(486),
[anon_sym_COLON_QMARK] = ACTIONS(474),
[anon_sym_COLON_DASH] = ACTIONS(474),
[anon_sym_PERCENT] = ACTIONS(474),
[anon_sym_SLASH] = ACTIONS(474),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(488),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[107] = {
[anon_sym_RBRACE] = ACTIONS(490),
[anon_sym_LBRACK] = ACTIONS(492),
[anon_sym_EQ] = ACTIONS(494),
[anon_sym_COLON] = ACTIONS(496),
[anon_sym_COLON_QMARK] = ACTIONS(494),
[anon_sym_COLON_DASH] = ACTIONS(494),
[anon_sym_PERCENT] = ACTIONS(494),
[anon_sym_SLASH] = ACTIONS(494),
[sym_comment] = ACTIONS(52),
},
[108] = {
[anon_sym_RBRACE] = ACTIONS(498),
[anon_sym_LBRACK] = ACTIONS(500),
[anon_sym_EQ] = ACTIONS(502),
[anon_sym_COLON] = ACTIONS(504),
[anon_sym_COLON_QMARK] = ACTIONS(502),
[anon_sym_COLON_DASH] = ACTIONS(502),
[anon_sym_PERCENT] = ACTIONS(502),
[anon_sym_SLASH] = ACTIONS(502),
[sym_comment] = ACTIONS(52),
},
[109] = {
[sym__assignment] = STATE(310),
[anon_sym_LBRACK] = ACTIONS(58),
[anon_sym_EQ] = ACTIONS(506),
[anon_sym_PLUS_EQ] = ACTIONS(506),
[sym_comment] = ACTIONS(52),
},
[110] = {
[sym_word] = ACTIONS(508),
[sym_comment] = ACTIONS(52),
},
[111] = {
[sym__terminated_statement] = STATE(312),
[sym_for_statement] = STATE(38),
[sym_while_statement] = STATE(38),
[sym_if_statement] = STATE(38),
[sym_case_statement] = STATE(38),
[sym_function_definition] = STATE(38),
[sym_subshell] = STATE(38),
[sym_pipeline] = STATE(38),
[sym_list] = STATE(38),
[sym_bracket_command] = STATE(38),
[sym_command] = STATE(38),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(39),
[sym_declaration_command] = STATE(38),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[112] = {
[sym__terminated_statement] = STATE(313),
[sym_for_statement] = STATE(38),
[sym_while_statement] = STATE(38),
[sym_if_statement] = STATE(38),
[sym_case_statement] = STATE(38),
[sym_function_definition] = STATE(38),
[sym_subshell] = STATE(38),
[sym_pipeline] = STATE(38),
[sym_list] = STATE(38),
[sym_bracket_command] = STATE(38),
[sym_command] = STATE(38),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(39),
[sym_declaration_command] = STATE(38),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[113] = {
[sym_concatenation] = STATE(315),
[sym_string] = STATE(314),
[sym_simple_expansion] = STATE(314),
[sym_expansion] = STATE(314),
[sym_command_substitution] = STATE(314),
[sym_process_substitution] = STATE(314),
[anon_sym_DQUOTE] = ACTIONS(64),
[sym_raw_string] = ACTIONS(510),
[anon_sym_DOLLAR] = ACTIONS(68),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(70),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(72),
[anon_sym_BQUOTE] = ACTIONS(74),
[anon_sym_LT_LPAREN] = ACTIONS(76),
[anon_sym_GT_LPAREN] = ACTIONS(76),
[sym_word] = ACTIONS(512),
[sym_comment] = ACTIONS(52),
},
[114] = {
[sym_word] = ACTIONS(514),
[sym_comment] = ACTIONS(52),
},
[115] = {
[sym__terminated_statement] = STATE(23),
[sym_for_statement] = STATE(317),
[sym_while_statement] = STATE(317),
[sym_if_statement] = STATE(317),
[sym_case_statement] = STATE(317),
[sym_function_definition] = STATE(317),
[sym_subshell] = STATE(317),
[sym_pipeline] = STATE(317),
[sym_list] = STATE(317),
[sym_bracket_command] = STATE(317),
[sym_command] = STATE(317),
[sym_command_name] = STATE(56),
[sym_variable_assignment] = STATE(318),
[sym_declaration_command] = STATE(317),
[sym_subscript] = STATE(58),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(53),
[sym_simple_expansion] = STATE(53),
[sym_expansion] = STATE(53),
[sym_command_substitution] = STATE(53),
[sym_process_substitution] = STATE(53),
[aux_sym_program_repeat1] = STATE(319),
[aux_sym_command_repeat1] = STATE(60),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(82),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(84),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(86),
[anon_sym_typeset] = ACTIONS(86),
[anon_sym_export] = ACTIONS(86),
[anon_sym_readonly] = ACTIONS(86),
[anon_sym_local] = ACTIONS(86),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(88),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(90),
[sym_comment] = ACTIONS(52),
},
[116] = {
[sym_concatenation] = STATE(68),
[sym_string] = STATE(62),
[sym_simple_expansion] = STATE(62),
[sym_expansion] = STATE(62),
[sym_command_substitution] = STATE(62),
[sym_process_substitution] = STATE(62),
[aux_sym_for_statement_repeat1] = STATE(320),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(94),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(106),
[sym_comment] = ACTIONS(52),
},
[117] = {
[sym_concatenation] = STATE(77),
[sym_string] = STATE(71),
[sym_simple_expansion] = STATE(71),
[sym_expansion] = STATE(71),
[sym_command_substitution] = STATE(71),
[sym_process_substitution] = STATE(71),
[aux_sym_for_statement_repeat1] = STATE(321),
[anon_sym_DQUOTE] = ACTIONS(108),
[sym_raw_string] = ACTIONS(110),
[anon_sym_DOLLAR] = ACTIONS(112),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(114),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(116),
[anon_sym_BQUOTE] = ACTIONS(118),
[anon_sym_LT_LPAREN] = ACTIONS(120),
[anon_sym_GT_LPAREN] = ACTIONS(120),
[sym_word] = ACTIONS(122),
[sym_comment] = ACTIONS(52),
},
[118] = {
[sym_variable_assignment] = STATE(324),
[sym_subscript] = STATE(325),
[aux_sym_declaration_command_repeat1] = STATE(326),
[aux_sym_declaration_command_repeat2] = STATE(327),
[sym_variable_name] = ACTIONS(516),
[anon_sym_PIPE] = ACTIONS(518),
[anon_sym_RPAREN] = ACTIONS(520),
[anon_sym_PIPE_AMP] = ACTIONS(520),
[anon_sym_AMP_AMP] = ACTIONS(520),
[anon_sym_PIPE_PIPE] = ACTIONS(520),
[anon_sym_DASH] = ACTIONS(522),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(524),
},
[119] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(329),
[anon_sym_DQUOTE] = ACTIONS(526),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[120] = {
[aux_sym_concatenation_repeat1] = STATE(331),
[sym_file_descriptor] = ACTIONS(162),
[sym__concat] = ACTIONS(528),
[anon_sym_PIPE] = ACTIONS(530),
[anon_sym_RPAREN] = ACTIONS(162),
[anon_sym_PIPE_AMP] = ACTIONS(162),
[anon_sym_AMP_AMP] = ACTIONS(162),
[anon_sym_PIPE_PIPE] = ACTIONS(530),
[anon_sym_LT] = ACTIONS(530),
[anon_sym_GT] = ACTIONS(530),
[anon_sym_GT_GT] = ACTIONS(162),
[anon_sym_AMP_GT] = ACTIONS(530),
[anon_sym_AMP_GT_GT] = ACTIONS(162),
[anon_sym_LT_AMP] = ACTIONS(162),
[anon_sym_GT_AMP] = ACTIONS(162),
[anon_sym_LT_LT] = ACTIONS(530),
[anon_sym_LT_LT_DASH] = ACTIONS(162),
[anon_sym_DQUOTE] = ACTIONS(162),
[sym_raw_string] = ACTIONS(162),
[anon_sym_DOLLAR] = ACTIONS(530),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(162),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(162),
[anon_sym_BQUOTE] = ACTIONS(162),
[anon_sym_LT_LPAREN] = ACTIONS(162),
[anon_sym_GT_LPAREN] = ACTIONS(162),
[sym_word] = ACTIONS(166),
[sym_comment] = ACTIONS(52),
},
[121] = {
[sym_special_variable_name] = STATE(334),
[anon_sym_DASH] = ACTIONS(532),
[anon_sym_DOLLAR] = ACTIONS(532),
[anon_sym_POUND] = ACTIONS(532),
[anon_sym_AT] = ACTIONS(532),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(534),
[anon_sym_STAR] = ACTIONS(532),
[anon_sym_QMARK] = ACTIONS(532),
[anon_sym_BANG] = ACTIONS(532),
[anon_sym_0] = ACTIONS(536),
[anon_sym__] = ACTIONS(536),
},
[122] = {
[sym_special_variable_name] = STATE(337),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(538),
[anon_sym_AT] = ACTIONS(174),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(540),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[123] = {
[sym_for_statement] = STATE(338),
[sym_while_statement] = STATE(338),
[sym_if_statement] = STATE(338),
[sym_case_statement] = STATE(338),
[sym_function_definition] = STATE(338),
[sym_subshell] = STATE(338),
[sym_pipeline] = STATE(338),
[sym_list] = STATE(338),
[sym_bracket_command] = STATE(338),
[sym_command] = STATE(338),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(339),
[sym_declaration_command] = STATE(338),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[124] = {
[sym_for_statement] = STATE(340),
[sym_while_statement] = STATE(340),
[sym_if_statement] = STATE(340),
[sym_case_statement] = STATE(340),
[sym_function_definition] = STATE(340),
[sym_subshell] = STATE(340),
[sym_pipeline] = STATE(340),
[sym_list] = STATE(340),
[sym_bracket_command] = STATE(340),
[sym_command] = STATE(340),
[sym_command_name] = STATE(139),
[sym_variable_assignment] = STATE(341),
[sym_declaration_command] = STATE(340),
[sym_subscript] = STATE(141),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(136),
[sym_simple_expansion] = STATE(136),
[sym_expansion] = STATE(136),
[sym_command_substitution] = STATE(136),
[sym_process_substitution] = STATE(136),
[aux_sym_command_repeat1] = STATE(142),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(218),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(220),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(222),
[anon_sym_typeset] = ACTIONS(222),
[anon_sym_export] = ACTIONS(222),
[anon_sym_readonly] = ACTIONS(222),
[anon_sym_local] = ACTIONS(222),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(224),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(226),
[sym_comment] = ACTIONS(52),
},
[125] = {
[sym_for_statement] = STATE(342),
[sym_while_statement] = STATE(342),
[sym_if_statement] = STATE(342),
[sym_case_statement] = STATE(342),
[sym_function_definition] = STATE(342),
[sym_subshell] = STATE(342),
[sym_pipeline] = STATE(342),
[sym_list] = STATE(342),
[sym_bracket_command] = STATE(342),
[sym_command] = STATE(342),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(343),
[sym_declaration_command] = STATE(342),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[126] = {
[sym_compound_statement] = STATE(346),
[aux_sym_concatenation_repeat1] = STATE(331),
[sym_file_descriptor] = ACTIONS(162),
[sym__concat] = ACTIONS(528),
[anon_sym_PIPE] = ACTIONS(530),
[anon_sym_RPAREN] = ACTIONS(162),
[anon_sym_LPAREN] = ACTIONS(542),
[anon_sym_LBRACE] = ACTIONS(544),
[anon_sym_PIPE_AMP] = ACTIONS(162),
[anon_sym_AMP_AMP] = ACTIONS(162),
[anon_sym_PIPE_PIPE] = ACTIONS(530),
[anon_sym_LT] = ACTIONS(530),
[anon_sym_GT] = ACTIONS(530),
[anon_sym_GT_GT] = ACTIONS(162),
[anon_sym_AMP_GT] = ACTIONS(530),
[anon_sym_AMP_GT_GT] = ACTIONS(162),
[anon_sym_LT_AMP] = ACTIONS(162),
[anon_sym_GT_AMP] = ACTIONS(162),
[anon_sym_LT_LT] = ACTIONS(530),
[anon_sym_LT_LT_DASH] = ACTIONS(162),
[anon_sym_DQUOTE] = ACTIONS(162),
[sym_raw_string] = ACTIONS(162),
[anon_sym_DOLLAR] = ACTIONS(530),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(162),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(162),
[anon_sym_BQUOTE] = ACTIONS(162),
[anon_sym_LT_LPAREN] = ACTIONS(162),
[anon_sym_GT_LPAREN] = ACTIONS(162),
[sym_word] = ACTIONS(166),
[sym_comment] = ACTIONS(52),
},
[127] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(548),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[128] = {
[sym_file_redirect] = STATE(354),
[sym_heredoc_redirect] = STATE(354),
[sym_concatenation] = STATE(355),
[sym_string] = STATE(353),
[sym_simple_expansion] = STATE(353),
[sym_expansion] = STATE(353),
[sym_command_substitution] = STATE(353),
[sym_process_substitution] = STATE(353),
[aux_sym_for_statement_repeat1] = STATE(356),
[aux_sym_command_repeat2] = STATE(357),
[sym_file_descriptor] = ACTIONS(554),
[anon_sym_PIPE] = ACTIONS(556),
[anon_sym_RPAREN] = ACTIONS(558),
[anon_sym_PIPE_AMP] = ACTIONS(558),
[anon_sym_AMP_AMP] = ACTIONS(558),
[anon_sym_PIPE_PIPE] = ACTIONS(556),
[anon_sym_LT] = ACTIONS(560),
[anon_sym_GT] = ACTIONS(560),
[anon_sym_GT_GT] = ACTIONS(562),
[anon_sym_AMP_GT] = ACTIONS(560),
[anon_sym_AMP_GT_GT] = ACTIONS(562),
[anon_sym_LT_AMP] = ACTIONS(562),
[anon_sym_GT_AMP] = ACTIONS(562),
[anon_sym_LT_LT] = ACTIONS(564),
[anon_sym_LT_LT_DASH] = ACTIONS(566),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(568),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(570),
[sym_comment] = ACTIONS(52),
},
[129] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(548),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[130] = {
[sym__assignment] = STATE(310),
[anon_sym_EQ] = ACTIONS(506),
[anon_sym_PLUS_EQ] = ACTIONS(506),
[sym_comment] = ACTIONS(52),
},
[131] = {
[sym_file_descriptor] = ACTIONS(162),
[anon_sym_PIPE] = ACTIONS(530),
[anon_sym_RPAREN] = ACTIONS(162),
[anon_sym_PIPE_AMP] = ACTIONS(162),
[anon_sym_AMP_AMP] = ACTIONS(162),
[anon_sym_PIPE_PIPE] = ACTIONS(530),
[anon_sym_LT] = ACTIONS(530),
[anon_sym_GT] = ACTIONS(530),
[anon_sym_GT_GT] = ACTIONS(162),
[anon_sym_AMP_GT] = ACTIONS(530),
[anon_sym_AMP_GT_GT] = ACTIONS(162),
[anon_sym_LT_AMP] = ACTIONS(162),
[anon_sym_GT_AMP] = ACTIONS(162),
[anon_sym_LT_LT] = ACTIONS(530),
[anon_sym_LT_LT_DASH] = ACTIONS(162),
[anon_sym_DQUOTE] = ACTIONS(162),
[sym_raw_string] = ACTIONS(162),
[anon_sym_DOLLAR] = ACTIONS(530),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(162),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(162),
[anon_sym_BQUOTE] = ACTIONS(162),
[anon_sym_LT_LPAREN] = ACTIONS(162),
[anon_sym_GT_LPAREN] = ACTIONS(162),
[sym_word] = ACTIONS(166),
[sym_comment] = ACTIONS(52),
},
[132] = {
[sym_command_name] = STATE(358),
[sym_variable_assignment] = STATE(28),
[sym_subscript] = STATE(162),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(163),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(276),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(574),
[sym_comment] = ACTIONS(52),
},
[133] = {
[sym__assignment] = STATE(310),
[anon_sym_LBRACK] = ACTIONS(58),
[anon_sym_EQ] = ACTIONS(576),
[anon_sym_PLUS_EQ] = ACTIONS(576),
[sym_comment] = ACTIONS(52),
},
[134] = {
[sym_word] = ACTIONS(578),
[sym_comment] = ACTIONS(52),
},
[135] = {
[sym_variable_assignment] = STATE(324),
[sym_subscript] = STATE(362),
[aux_sym_declaration_command_repeat1] = STATE(363),
[aux_sym_declaration_command_repeat2] = STATE(364),
[sym_variable_name] = ACTIONS(580),
[anon_sym_PIPE] = ACTIONS(518),
[anon_sym_PIPE_AMP] = ACTIONS(520),
[anon_sym_AMP_AMP] = ACTIONS(520),
[anon_sym_PIPE_PIPE] = ACTIONS(520),
[anon_sym_DASH] = ACTIONS(522),
[anon_sym_BQUOTE] = ACTIONS(520),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(524),
},
[136] = {
[aux_sym_concatenation_repeat1] = STATE(365),
[sym_file_descriptor] = ACTIONS(162),
[sym__concat] = ACTIONS(528),
[anon_sym_PIPE] = ACTIONS(530),
[anon_sym_PIPE_AMP] = ACTIONS(162),
[anon_sym_AMP_AMP] = ACTIONS(162),
[anon_sym_PIPE_PIPE] = ACTIONS(530),
[anon_sym_LT] = ACTIONS(530),
[anon_sym_GT] = ACTIONS(530),
[anon_sym_GT_GT] = ACTIONS(162),
[anon_sym_AMP_GT] = ACTIONS(530),
[anon_sym_AMP_GT_GT] = ACTIONS(162),
[anon_sym_LT_AMP] = ACTIONS(162),
[anon_sym_GT_AMP] = ACTIONS(162),
[anon_sym_LT_LT] = ACTIONS(530),
[anon_sym_LT_LT_DASH] = ACTIONS(162),
[anon_sym_DQUOTE] = ACTIONS(162),
[sym_raw_string] = ACTIONS(162),
[anon_sym_DOLLAR] = ACTIONS(530),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(162),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(162),
[anon_sym_BQUOTE] = ACTIONS(162),
[anon_sym_LT_LPAREN] = ACTIONS(162),
[anon_sym_GT_LPAREN] = ACTIONS(162),
[sym_word] = ACTIONS(166),
[sym_comment] = ACTIONS(52),
},
[137] = {
[sym_compound_statement] = STATE(367),
[aux_sym_concatenation_repeat1] = STATE(365),
[sym_file_descriptor] = ACTIONS(162),
[sym__concat] = ACTIONS(528),
[anon_sym_PIPE] = ACTIONS(530),
[anon_sym_LPAREN] = ACTIONS(582),
[anon_sym_LBRACE] = ACTIONS(544),
[anon_sym_PIPE_AMP] = ACTIONS(162),
[anon_sym_AMP_AMP] = ACTIONS(162),
[anon_sym_PIPE_PIPE] = ACTIONS(530),
[anon_sym_LT] = ACTIONS(530),
[anon_sym_GT] = ACTIONS(530),
[anon_sym_GT_GT] = ACTIONS(162),
[anon_sym_AMP_GT] = ACTIONS(530),
[anon_sym_AMP_GT_GT] = ACTIONS(162),
[anon_sym_LT_AMP] = ACTIONS(162),
[anon_sym_GT_AMP] = ACTIONS(162),
[anon_sym_LT_LT] = ACTIONS(530),
[anon_sym_LT_LT_DASH] = ACTIONS(162),
[anon_sym_DQUOTE] = ACTIONS(162),
[sym_raw_string] = ACTIONS(162),
[anon_sym_DOLLAR] = ACTIONS(530),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(162),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(162),
[anon_sym_BQUOTE] = ACTIONS(162),
[anon_sym_LT_LPAREN] = ACTIONS(162),
[anon_sym_GT_LPAREN] = ACTIONS(162),
[sym_word] = ACTIONS(166),
[sym_comment] = ACTIONS(52),
},
[138] = {
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(588),
[anon_sym_BQUOTE] = ACTIONS(548),
[sym_comment] = ACTIONS(52),
},
[139] = {
[sym_file_redirect] = STATE(354),
[sym_heredoc_redirect] = STATE(354),
[sym_concatenation] = STATE(355),
[sym_string] = STATE(372),
[sym_simple_expansion] = STATE(372),
[sym_expansion] = STATE(372),
[sym_command_substitution] = STATE(372),
[sym_process_substitution] = STATE(372),
[aux_sym_for_statement_repeat1] = STATE(373),
[aux_sym_command_repeat2] = STATE(374),
[sym_file_descriptor] = ACTIONS(590),
[anon_sym_PIPE] = ACTIONS(556),
[anon_sym_PIPE_AMP] = ACTIONS(558),
[anon_sym_AMP_AMP] = ACTIONS(558),
[anon_sym_PIPE_PIPE] = ACTIONS(556),
[anon_sym_LT] = ACTIONS(592),
[anon_sym_GT] = ACTIONS(592),
[anon_sym_GT_GT] = ACTIONS(594),
[anon_sym_AMP_GT] = ACTIONS(592),
[anon_sym_AMP_GT_GT] = ACTIONS(594),
[anon_sym_LT_AMP] = ACTIONS(594),
[anon_sym_GT_AMP] = ACTIONS(594),
[anon_sym_LT_LT] = ACTIONS(564),
[anon_sym_LT_LT_DASH] = ACTIONS(566),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(596),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(558),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(598),
[sym_comment] = ACTIONS(52),
},
[140] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(600),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(548),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[141] = {
[sym__assignment] = STATE(310),
[anon_sym_EQ] = ACTIONS(576),
[anon_sym_PLUS_EQ] = ACTIONS(576),
[sym_comment] = ACTIONS(52),
},
[142] = {
[sym_command_name] = STATE(375),
[sym_variable_assignment] = STATE(28),
[sym_subscript] = STATE(162),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(136),
[sym_simple_expansion] = STATE(136),
[sym_expansion] = STATE(136),
[sym_command_substitution] = STATE(136),
[sym_process_substitution] = STATE(136),
[aux_sym_command_repeat1] = STATE(163),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(276),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(224),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(602),
[sym_comment] = ACTIONS(52),
},
[143] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(604),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[144] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(604),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[145] = {
[anon_sym_RPAREN] = ACTIONS(606),
[sym_comment] = ACTIONS(52),
},
[146] = {
[sym__terminated_statement] = STATE(23),
[sym_for_statement] = STATE(24),
[sym_while_statement] = STATE(24),
[sym_if_statement] = STATE(24),
[sym_case_statement] = STATE(24),
[sym_function_definition] = STATE(24),
[sym_subshell] = STATE(24),
[sym_pipeline] = STATE(24),
[sym_list] = STATE(24),
[sym_bracket_command] = STATE(24),
[sym_command] = STATE(24),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(26),
[sym_declaration_command] = STATE(24),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(379),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_RBRACE] = ACTIONS(608),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[147] = {
[sym_file_redirect] = STATE(382),
[sym_file_descriptor] = ACTIONS(610),
[anon_sym_PIPE] = ACTIONS(612),
[anon_sym_SEMI_SEMI] = ACTIONS(612),
[anon_sym_PIPE_AMP] = ACTIONS(612),
[anon_sym_AMP_AMP] = ACTIONS(612),
[anon_sym_PIPE_PIPE] = ACTIONS(612),
[anon_sym_LT] = ACTIONS(614),
[anon_sym_GT] = ACTIONS(614),
[anon_sym_GT_GT] = ACTIONS(614),
[anon_sym_AMP_GT] = ACTIONS(614),
[anon_sym_AMP_GT_GT] = ACTIONS(614),
[anon_sym_LT_AMP] = ACTIONS(614),
[anon_sym_GT_AMP] = ACTIONS(614),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(612),
[anon_sym_LF] = ACTIONS(612),
[anon_sym_AMP] = ACTIONS(612),
},
[148] = {
[sym_for_statement] = STATE(383),
[sym_while_statement] = STATE(383),
[sym_if_statement] = STATE(383),
[sym_case_statement] = STATE(383),
[sym_function_definition] = STATE(383),
[sym_subshell] = STATE(383),
[sym_pipeline] = STATE(383),
[sym_list] = STATE(383),
[sym_bracket_command] = STATE(383),
[sym_command] = STATE(383),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(384),
[sym_declaration_command] = STATE(383),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[149] = {
[sym_file_descriptor] = ACTIONS(616),
[sym_variable_name] = ACTIONS(616),
[ts_builtin_sym_end] = ACTIONS(616),
[anon_sym_for] = ACTIONS(618),
[anon_sym_while] = ACTIONS(618),
[anon_sym_if] = ACTIONS(618),
[anon_sym_case] = ACTIONS(618),
[anon_sym_SEMI_SEMI] = ACTIONS(616),
[anon_sym_function] = ACTIONS(618),
[anon_sym_LPAREN] = ACTIONS(616),
[anon_sym_RBRACE] = ACTIONS(616),
[anon_sym_LBRACK] = ACTIONS(618),
[anon_sym_LBRACK_LBRACK] = ACTIONS(618),
[anon_sym_declare] = ACTIONS(618),
[anon_sym_typeset] = ACTIONS(618),
[anon_sym_export] = ACTIONS(618),
[anon_sym_readonly] = ACTIONS(618),
[anon_sym_local] = ACTIONS(618),
[anon_sym_LT] = ACTIONS(618),
[anon_sym_GT] = ACTIONS(618),
[anon_sym_GT_GT] = ACTIONS(616),
[anon_sym_AMP_GT] = ACTIONS(618),
[anon_sym_AMP_GT_GT] = ACTIONS(616),
[anon_sym_LT_AMP] = ACTIONS(616),
[anon_sym_GT_AMP] = ACTIONS(616),
[anon_sym_DQUOTE] = ACTIONS(616),
[sym_raw_string] = ACTIONS(616),
[anon_sym_DOLLAR] = ACTIONS(618),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(616),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(616),
[anon_sym_BQUOTE] = ACTIONS(616),
[anon_sym_LT_LPAREN] = ACTIONS(616),
[anon_sym_GT_LPAREN] = ACTIONS(616),
[sym_word] = ACTIONS(620),
[sym_comment] = ACTIONS(52),
},
[150] = {
[sym_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_bracket_command] = STATE(385),
[sym_command] = STATE(385),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(386),
[sym_declaration_command] = STATE(385),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[151] = {
[anon_sym_LT] = ACTIONS(622),
[anon_sym_GT] = ACTIONS(622),
[anon_sym_GT_GT] = ACTIONS(624),
[anon_sym_AMP_GT] = ACTIONS(622),
[anon_sym_AMP_GT_GT] = ACTIONS(624),
[anon_sym_LT_AMP] = ACTIONS(624),
[anon_sym_GT_AMP] = ACTIONS(624),
[sym_comment] = ACTIONS(52),
},
[152] = {
[sym_concatenation] = STATE(395),
[sym_string] = STATE(389),
[sym_simple_expansion] = STATE(389),
[sym_expansion] = STATE(389),
[sym_command_substitution] = STATE(389),
[sym_process_substitution] = STATE(389),
[anon_sym_DQUOTE] = ACTIONS(626),
[sym_raw_string] = ACTIONS(628),
[anon_sym_DOLLAR] = ACTIONS(630),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(632),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(634),
[anon_sym_BQUOTE] = ACTIONS(636),
[anon_sym_LT_LPAREN] = ACTIONS(638),
[anon_sym_GT_LPAREN] = ACTIONS(638),
[sym_word] = ACTIONS(640),
[sym_comment] = ACTIONS(52),
},
[153] = {
[sym_heredoc] = STATE(398),
[sym__simple_heredoc] = ACTIONS(642),
[sym__heredoc_beginning] = ACTIONS(644),
[sym_comment] = ACTIONS(52),
},
[154] = {
[aux_sym_concatenation_repeat1] = STATE(101),
[sym_file_descriptor] = ACTIONS(384),
[sym__concat] = ACTIONS(164),
[anon_sym_PIPE] = ACTIONS(386),
[anon_sym_SEMI_SEMI] = ACTIONS(386),
[anon_sym_PIPE_AMP] = ACTIONS(386),
[anon_sym_AMP_AMP] = ACTIONS(386),
[anon_sym_PIPE_PIPE] = ACTIONS(386),
[anon_sym_LT] = ACTIONS(386),
[anon_sym_GT] = ACTIONS(386),
[anon_sym_GT_GT] = ACTIONS(386),
[anon_sym_AMP_GT] = ACTIONS(386),
[anon_sym_AMP_GT_GT] = ACTIONS(386),
[anon_sym_LT_AMP] = ACTIONS(386),
[anon_sym_GT_AMP] = ACTIONS(386),
[anon_sym_LT_LT] = ACTIONS(386),
[anon_sym_LT_LT_DASH] = ACTIONS(386),
[anon_sym_DQUOTE] = ACTIONS(386),
[sym_raw_string] = ACTIONS(386),
[anon_sym_DOLLAR] = ACTIONS(386),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(386),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(386),
[anon_sym_BQUOTE] = ACTIONS(386),
[anon_sym_LT_LPAREN] = ACTIONS(386),
[anon_sym_GT_LPAREN] = ACTIONS(386),
[sym_word] = ACTIONS(386),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(386),
[anon_sym_LF] = ACTIONS(386),
[anon_sym_AMP] = ACTIONS(386),
},
[155] = {
[sym_file_descriptor] = ACTIONS(646),
[anon_sym_PIPE] = ACTIONS(648),
[anon_sym_RPAREN] = ACTIONS(648),
[anon_sym_SEMI_SEMI] = ACTIONS(648),
[anon_sym_PIPE_AMP] = ACTIONS(648),
[anon_sym_AMP_AMP] = ACTIONS(648),
[anon_sym_PIPE_PIPE] = ACTIONS(648),
[anon_sym_LT] = ACTIONS(648),
[anon_sym_GT] = ACTIONS(648),
[anon_sym_GT_GT] = ACTIONS(648),
[anon_sym_AMP_GT] = ACTIONS(648),
[anon_sym_AMP_GT_GT] = ACTIONS(648),
[anon_sym_LT_AMP] = ACTIONS(648),
[anon_sym_GT_AMP] = ACTIONS(648),
[anon_sym_LT_LT] = ACTIONS(648),
[anon_sym_LT_LT_DASH] = ACTIONS(648),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(648),
[anon_sym_LF] = ACTIONS(648),
[anon_sym_AMP] = ACTIONS(648),
},
[156] = {
[sym_file_descriptor] = ACTIONS(384),
[anon_sym_PIPE] = ACTIONS(386),
[anon_sym_RPAREN] = ACTIONS(386),
[anon_sym_SEMI_SEMI] = ACTIONS(386),
[anon_sym_PIPE_AMP] = ACTIONS(386),
[anon_sym_AMP_AMP] = ACTIONS(386),
[anon_sym_PIPE_PIPE] = ACTIONS(386),
[anon_sym_LT] = ACTIONS(386),
[anon_sym_GT] = ACTIONS(386),
[anon_sym_GT_GT] = ACTIONS(386),
[anon_sym_AMP_GT] = ACTIONS(386),
[anon_sym_AMP_GT_GT] = ACTIONS(386),
[anon_sym_LT_AMP] = ACTIONS(386),
[anon_sym_GT_AMP] = ACTIONS(386),
[anon_sym_LT_LT] = ACTIONS(386),
[anon_sym_LT_LT_DASH] = ACTIONS(386),
[anon_sym_DQUOTE] = ACTIONS(386),
[sym_raw_string] = ACTIONS(386),
[anon_sym_DOLLAR] = ACTIONS(386),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(386),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(386),
[anon_sym_BQUOTE] = ACTIONS(386),
[anon_sym_LT_LPAREN] = ACTIONS(386),
[anon_sym_GT_LPAREN] = ACTIONS(386),
[sym_word] = ACTIONS(386),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(386),
[anon_sym_LF] = ACTIONS(386),
[anon_sym_AMP] = ACTIONS(386),
},
[157] = {
[sym_file_redirect] = STATE(155),
[sym_heredoc_redirect] = STATE(155),
[sym_concatenation] = STATE(156),
[sym_string] = STATE(154),
[sym_simple_expansion] = STATE(154),
[sym_expansion] = STATE(154),
[sym_command_substitution] = STATE(154),
[sym_process_substitution] = STATE(154),
[aux_sym_for_statement_repeat1] = STATE(399),
[aux_sym_command_repeat2] = STATE(400),
[sym_file_descriptor] = ACTIONS(246),
[anon_sym_PIPE] = ACTIONS(650),
[anon_sym_SEMI_SEMI] = ACTIONS(650),
[anon_sym_PIPE_AMP] = ACTIONS(650),
[anon_sym_AMP_AMP] = ACTIONS(650),
[anon_sym_PIPE_PIPE] = ACTIONS(650),
[anon_sym_LT] = ACTIONS(250),
[anon_sym_GT] = ACTIONS(250),
[anon_sym_GT_GT] = ACTIONS(250),
[anon_sym_AMP_GT] = ACTIONS(250),
[anon_sym_AMP_GT_GT] = ACTIONS(250),
[anon_sym_LT_AMP] = ACTIONS(250),
[anon_sym_GT_AMP] = ACTIONS(250),
[anon_sym_LT_LT] = ACTIONS(252),
[anon_sym_LT_LT_DASH] = ACTIONS(252),
[anon_sym_DQUOTE] = ACTIONS(254),
[sym_raw_string] = ACTIONS(256),
[anon_sym_DOLLAR] = ACTIONS(258),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(260),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(262),
[anon_sym_BQUOTE] = ACTIONS(264),
[anon_sym_LT_LPAREN] = ACTIONS(266),
[anon_sym_GT_LPAREN] = ACTIONS(266),
[sym_word] = ACTIONS(256),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(650),
[anon_sym_LF] = ACTIONS(650),
[anon_sym_AMP] = ACTIONS(650),
},
[158] = {
[sym_file_redirect] = STATE(155),
[sym_heredoc_redirect] = STATE(155),
[aux_sym_command_repeat2] = STATE(401),
[sym_file_descriptor] = ACTIONS(246),
[anon_sym_PIPE] = ACTIONS(650),
[anon_sym_SEMI_SEMI] = ACTIONS(650),
[anon_sym_PIPE_AMP] = ACTIONS(650),
[anon_sym_AMP_AMP] = ACTIONS(650),
[anon_sym_PIPE_PIPE] = ACTIONS(650),
[anon_sym_LT] = ACTIONS(250),
[anon_sym_GT] = ACTIONS(250),
[anon_sym_GT_GT] = ACTIONS(250),
[anon_sym_AMP_GT] = ACTIONS(250),
[anon_sym_AMP_GT_GT] = ACTIONS(250),
[anon_sym_LT_AMP] = ACTIONS(250),
[anon_sym_GT_AMP] = ACTIONS(250),
[anon_sym_LT_LT] = ACTIONS(252),
[anon_sym_LT_LT_DASH] = ACTIONS(252),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(650),
[anon_sym_LF] = ACTIONS(650),
[anon_sym_AMP] = ACTIONS(650),
},
[159] = {
[sym__terminated_statement] = STATE(23),
[sym_for_statement] = STATE(24),
[sym_while_statement] = STATE(24),
[sym_if_statement] = STATE(24),
[sym_case_statement] = STATE(24),
[sym_function_definition] = STATE(24),
[sym_subshell] = STATE(24),
[sym_pipeline] = STATE(24),
[sym_list] = STATE(24),
[sym_bracket_command] = STATE(24),
[sym_command] = STATE(24),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(26),
[sym_declaration_command] = STATE(24),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(159),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(652),
[sym_variable_name] = ACTIONS(655),
[ts_builtin_sym_end] = ACTIONS(658),
[anon_sym_for] = ACTIONS(660),
[anon_sym_while] = ACTIONS(663),
[anon_sym_if] = ACTIONS(666),
[anon_sym_case] = ACTIONS(669),
[anon_sym_function] = ACTIONS(672),
[anon_sym_LPAREN] = ACTIONS(675),
[anon_sym_LBRACK] = ACTIONS(678),
[anon_sym_LBRACK_LBRACK] = ACTIONS(681),
[anon_sym_declare] = ACTIONS(684),
[anon_sym_typeset] = ACTIONS(684),
[anon_sym_export] = ACTIONS(684),
[anon_sym_readonly] = ACTIONS(684),
[anon_sym_local] = ACTIONS(684),
[anon_sym_LT] = ACTIONS(687),
[anon_sym_GT] = ACTIONS(687),
[anon_sym_GT_GT] = ACTIONS(690),
[anon_sym_AMP_GT] = ACTIONS(687),
[anon_sym_AMP_GT_GT] = ACTIONS(690),
[anon_sym_LT_AMP] = ACTIONS(690),
[anon_sym_GT_AMP] = ACTIONS(690),
[anon_sym_DQUOTE] = ACTIONS(693),
[sym_raw_string] = ACTIONS(696),
[anon_sym_DOLLAR] = ACTIONS(699),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(702),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(705),
[anon_sym_BQUOTE] = ACTIONS(708),
[anon_sym_LT_LPAREN] = ACTIONS(711),
[anon_sym_GT_LPAREN] = ACTIONS(711),
[sym_word] = ACTIONS(714),
[sym_comment] = ACTIONS(52),
},
[160] = {
[sym__assignment] = STATE(403),
[anon_sym_LBRACK] = ACTIONS(58),
[anon_sym_EQ] = ACTIONS(717),
[anon_sym_PLUS_EQ] = ACTIONS(717),
[sym_comment] = ACTIONS(52),
},
[161] = {
[sym_file_redirect] = STATE(155),
[sym_heredoc_redirect] = STATE(155),
[sym_concatenation] = STATE(156),
[sym_string] = STATE(154),
[sym_simple_expansion] = STATE(154),
[sym_expansion] = STATE(154),
[sym_command_substitution] = STATE(154),
[sym_process_substitution] = STATE(154),
[aux_sym_for_statement_repeat1] = STATE(404),
[aux_sym_command_repeat2] = STATE(400),
[sym_file_descriptor] = ACTIONS(246),
[anon_sym_PIPE] = ACTIONS(650),
[anon_sym_SEMI_SEMI] = ACTIONS(650),
[anon_sym_PIPE_AMP] = ACTIONS(650),
[anon_sym_AMP_AMP] = ACTIONS(650),
[anon_sym_PIPE_PIPE] = ACTIONS(650),
[anon_sym_LT] = ACTIONS(250),
[anon_sym_GT] = ACTIONS(250),
[anon_sym_GT_GT] = ACTIONS(250),
[anon_sym_AMP_GT] = ACTIONS(250),
[anon_sym_AMP_GT_GT] = ACTIONS(250),
[anon_sym_LT_AMP] = ACTIONS(250),
[anon_sym_GT_AMP] = ACTIONS(250),
[anon_sym_LT_LT] = ACTIONS(252),
[anon_sym_LT_LT_DASH] = ACTIONS(252),
[anon_sym_DQUOTE] = ACTIONS(254),
[sym_raw_string] = ACTIONS(256),
[anon_sym_DOLLAR] = ACTIONS(258),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(260),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(262),
[anon_sym_BQUOTE] = ACTIONS(264),
[anon_sym_LT_LPAREN] = ACTIONS(266),
[anon_sym_GT_LPAREN] = ACTIONS(266),
[sym_word] = ACTIONS(256),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(650),
[anon_sym_LF] = ACTIONS(650),
[anon_sym_AMP] = ACTIONS(650),
},
[162] = {
[sym__assignment] = STATE(403),
[anon_sym_EQ] = ACTIONS(717),
[anon_sym_PLUS_EQ] = ACTIONS(717),
[sym_comment] = ACTIONS(52),
},
[163] = {
[sym_variable_assignment] = STATE(28),
[sym_subscript] = STATE(162),
[sym_file_redirect] = STATE(28),
[aux_sym_command_repeat1] = STATE(163),
[sym_file_descriptor] = ACTIONS(719),
[sym_variable_name] = ACTIONS(722),
[anon_sym_LT] = ACTIONS(725),
[anon_sym_GT] = ACTIONS(725),
[anon_sym_GT_GT] = ACTIONS(728),
[anon_sym_AMP_GT] = ACTIONS(725),
[anon_sym_AMP_GT_GT] = ACTIONS(728),
[anon_sym_LT_AMP] = ACTIONS(728),
[anon_sym_GT_AMP] = ACTIONS(728),
[anon_sym_DQUOTE] = ACTIONS(731),
[sym_raw_string] = ACTIONS(731),
[anon_sym_DOLLAR] = ACTIONS(733),
[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_word] = ACTIONS(733),
[sym_comment] = ACTIONS(52),
},
[164] = {
[aux_sym_concatenation_repeat1] = STATE(274),
[sym_file_descriptor] = ACTIONS(735),
[sym__concat] = ACTIONS(432),
[sym_variable_name] = ACTIONS(735),
[anon_sym_LT] = ACTIONS(737),
[anon_sym_GT] = ACTIONS(737),
[anon_sym_GT_GT] = ACTIONS(735),
[anon_sym_AMP_GT] = ACTIONS(737),
[anon_sym_AMP_GT_GT] = ACTIONS(735),
[anon_sym_LT_AMP] = ACTIONS(735),
[anon_sym_GT_AMP] = ACTIONS(735),
[anon_sym_DQUOTE] = ACTIONS(735),
[sym_raw_string] = ACTIONS(735),
[anon_sym_DOLLAR] = ACTIONS(737),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(735),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(735),
[anon_sym_BQUOTE] = ACTIONS(735),
[anon_sym_LT_LPAREN] = ACTIONS(735),
[anon_sym_GT_LPAREN] = ACTIONS(735),
[sym_word] = ACTIONS(737),
[sym_comment] = ACTIONS(52),
},
[165] = {
[sym_file_descriptor] = ACTIONS(735),
[sym_variable_name] = ACTIONS(735),
[anon_sym_LT] = ACTIONS(737),
[anon_sym_GT] = ACTIONS(737),
[anon_sym_GT_GT] = ACTIONS(735),
[anon_sym_AMP_GT] = ACTIONS(737),
[anon_sym_AMP_GT_GT] = ACTIONS(735),
[anon_sym_LT_AMP] = ACTIONS(735),
[anon_sym_GT_AMP] = ACTIONS(735),
[anon_sym_DQUOTE] = ACTIONS(735),
[sym_raw_string] = ACTIONS(735),
[anon_sym_DOLLAR] = ACTIONS(737),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(735),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(735),
[anon_sym_BQUOTE] = ACTIONS(735),
[anon_sym_LT_LPAREN] = ACTIONS(735),
[anon_sym_GT_LPAREN] = ACTIONS(735),
[sym_word] = ACTIONS(737),
[sym_comment] = ACTIONS(52),
},
[166] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(406),
[anon_sym_DQUOTE] = ACTIONS(739),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[167] = {
[aux_sym_concatenation_repeat1] = STATE(409),
[sym__concat] = ACTIONS(741),
[anon_sym_RBRACK] = ACTIONS(743),
[sym_comment] = ACTIONS(52),
},
[168] = {
[sym_special_variable_name] = STATE(412),
[anon_sym_DASH] = ACTIONS(745),
[anon_sym_DOLLAR] = ACTIONS(745),
[anon_sym_POUND] = ACTIONS(745),
[anon_sym_AT] = ACTIONS(745),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(747),
[anon_sym_STAR] = ACTIONS(745),
[anon_sym_QMARK] = ACTIONS(745),
[anon_sym_BANG] = ACTIONS(745),
[anon_sym_0] = ACTIONS(749),
[anon_sym__] = ACTIONS(749),
},
[169] = {
[sym_special_variable_name] = STATE(415),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(751),
[anon_sym_AT] = ACTIONS(174),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(753),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[170] = {
[sym_for_statement] = STATE(416),
[sym_while_statement] = STATE(416),
[sym_if_statement] = STATE(416),
[sym_case_statement] = STATE(416),
[sym_function_definition] = STATE(416),
[sym_subshell] = STATE(416),
[sym_pipeline] = STATE(416),
[sym_list] = STATE(416),
[sym_bracket_command] = STATE(416),
[sym_command] = STATE(416),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(417),
[sym_declaration_command] = STATE(416),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[171] = {
[sym_for_statement] = STATE(418),
[sym_while_statement] = STATE(418),
[sym_if_statement] = STATE(418),
[sym_case_statement] = STATE(418),
[sym_function_definition] = STATE(418),
[sym_subshell] = STATE(418),
[sym_pipeline] = STATE(418),
[sym_list] = STATE(418),
[sym_bracket_command] = STATE(418),
[sym_command] = STATE(418),
[sym_command_name] = STATE(139),
[sym_variable_assignment] = STATE(419),
[sym_declaration_command] = STATE(418),
[sym_subscript] = STATE(141),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(136),
[sym_simple_expansion] = STATE(136),
[sym_expansion] = STATE(136),
[sym_command_substitution] = STATE(136),
[sym_process_substitution] = STATE(136),
[aux_sym_command_repeat1] = STATE(142),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(218),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(220),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(222),
[anon_sym_typeset] = ACTIONS(222),
[anon_sym_export] = ACTIONS(222),
[anon_sym_readonly] = ACTIONS(222),
[anon_sym_local] = ACTIONS(222),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(224),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(226),
[sym_comment] = ACTIONS(52),
},
[172] = {
[sym_for_statement] = STATE(420),
[sym_while_statement] = STATE(420),
[sym_if_statement] = STATE(420),
[sym_case_statement] = STATE(420),
[sym_function_definition] = STATE(420),
[sym_subshell] = STATE(420),
[sym_pipeline] = STATE(420),
[sym_list] = STATE(420),
[sym_bracket_command] = STATE(420),
[sym_command] = STATE(420),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(421),
[sym_declaration_command] = STATE(420),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[173] = {
[anon_sym_RBRACK] = ACTIONS(743),
[sym_comment] = ACTIONS(52),
},
[174] = {
[sym_file_descriptor] = ACTIONS(755),
[sym_variable_name] = ACTIONS(755),
[anon_sym_PIPE] = ACTIONS(757),
[anon_sym_RPAREN] = ACTIONS(757),
[anon_sym_SEMI_SEMI] = ACTIONS(757),
[anon_sym_PIPE_AMP] = ACTIONS(757),
[anon_sym_AMP_AMP] = ACTIONS(757),
[anon_sym_PIPE_PIPE] = ACTIONS(757),
[anon_sym_LT] = ACTIONS(757),
[anon_sym_GT] = ACTIONS(757),
[anon_sym_GT_GT] = ACTIONS(757),
[anon_sym_AMP_GT] = ACTIONS(757),
[anon_sym_AMP_GT_GT] = ACTIONS(757),
[anon_sym_LT_AMP] = ACTIONS(757),
[anon_sym_GT_AMP] = ACTIONS(757),
[anon_sym_DQUOTE] = ACTIONS(757),
[sym_raw_string] = ACTIONS(757),
[anon_sym_DOLLAR] = ACTIONS(757),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(757),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(757),
[anon_sym_BQUOTE] = ACTIONS(757),
[anon_sym_LT_LPAREN] = ACTIONS(757),
[anon_sym_GT_LPAREN] = ACTIONS(757),
[sym_word] = ACTIONS(757),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(757),
[anon_sym_LF] = ACTIONS(757),
[anon_sym_AMP] = ACTIONS(757),
},
[175] = {
[sym_concatenation] = STATE(430),
[sym_string] = STATE(424),
[sym_simple_expansion] = STATE(424),
[sym_expansion] = STATE(424),
[sym_command_substitution] = STATE(424),
[sym_process_substitution] = STATE(424),
[aux_sym_for_statement_repeat1] = STATE(431),
[anon_sym_RPAREN] = ACTIONS(759),
[anon_sym_DQUOTE] = ACTIONS(761),
[sym_raw_string] = ACTIONS(763),
[anon_sym_DOLLAR] = ACTIONS(765),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(767),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(769),
[anon_sym_BQUOTE] = ACTIONS(771),
[anon_sym_LT_LPAREN] = ACTIONS(773),
[anon_sym_GT_LPAREN] = ACTIONS(773),
[sym_word] = ACTIONS(775),
[sym_comment] = ACTIONS(52),
},
[176] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(433),
[anon_sym_DQUOTE] = ACTIONS(777),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[177] = {
[aux_sym_concatenation_repeat1] = STATE(435),
[sym_file_descriptor] = ACTIONS(755),
[sym__concat] = ACTIONS(779),
[sym_variable_name] = ACTIONS(755),
[anon_sym_PIPE] = ACTIONS(757),
[anon_sym_SEMI_SEMI] = ACTIONS(757),
[anon_sym_PIPE_AMP] = ACTIONS(757),
[anon_sym_AMP_AMP] = ACTIONS(757),
[anon_sym_PIPE_PIPE] = ACTIONS(757),
[anon_sym_LT] = ACTIONS(757),
[anon_sym_GT] = ACTIONS(757),
[anon_sym_GT_GT] = ACTIONS(757),
[anon_sym_AMP_GT] = ACTIONS(757),
[anon_sym_AMP_GT_GT] = ACTIONS(757),
[anon_sym_LT_AMP] = ACTIONS(757),
[anon_sym_GT_AMP] = ACTIONS(757),
[anon_sym_DQUOTE] = ACTIONS(757),
[sym_raw_string] = ACTIONS(757),
[anon_sym_DOLLAR] = ACTIONS(757),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(757),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(757),
[anon_sym_BQUOTE] = ACTIONS(757),
[anon_sym_LT_LPAREN] = ACTIONS(757),
[anon_sym_GT_LPAREN] = ACTIONS(757),
[sym_word] = ACTIONS(757),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(757),
[anon_sym_LF] = ACTIONS(757),
[anon_sym_AMP] = ACTIONS(757),
},
[178] = {
[sym_special_variable_name] = STATE(438),
[anon_sym_DASH] = ACTIONS(781),
[anon_sym_DOLLAR] = ACTIONS(781),
[anon_sym_POUND] = ACTIONS(781),
[anon_sym_AT] = ACTIONS(781),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(783),
[anon_sym_STAR] = ACTIONS(781),
[anon_sym_QMARK] = ACTIONS(781),
[anon_sym_BANG] = ACTIONS(781),
[anon_sym_0] = ACTIONS(785),
[anon_sym__] = ACTIONS(785),
},
[179] = {
[sym_special_variable_name] = STATE(441),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(787),
[anon_sym_AT] = ACTIONS(174),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(789),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[180] = {
[sym_for_statement] = STATE(442),
[sym_while_statement] = STATE(442),
[sym_if_statement] = STATE(442),
[sym_case_statement] = STATE(442),
[sym_function_definition] = STATE(442),
[sym_subshell] = STATE(442),
[sym_pipeline] = STATE(442),
[sym_list] = STATE(442),
[sym_bracket_command] = STATE(442),
[sym_command] = STATE(442),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(443),
[sym_declaration_command] = STATE(442),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[181] = {
[sym_for_statement] = STATE(444),
[sym_while_statement] = STATE(444),
[sym_if_statement] = STATE(444),
[sym_case_statement] = STATE(444),
[sym_function_definition] = STATE(444),
[sym_subshell] = STATE(444),
[sym_pipeline] = STATE(444),
[sym_list] = STATE(444),
[sym_bracket_command] = STATE(444),
[sym_command] = STATE(444),
[sym_command_name] = STATE(139),
[sym_variable_assignment] = STATE(445),
[sym_declaration_command] = STATE(444),
[sym_subscript] = STATE(141),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(136),
[sym_simple_expansion] = STATE(136),
[sym_expansion] = STATE(136),
[sym_command_substitution] = STATE(136),
[sym_process_substitution] = STATE(136),
[aux_sym_command_repeat1] = STATE(142),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(218),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(220),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(222),
[anon_sym_typeset] = ACTIONS(222),
[anon_sym_export] = ACTIONS(222),
[anon_sym_readonly] = ACTIONS(222),
[anon_sym_local] = ACTIONS(222),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(224),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(226),
[sym_comment] = ACTIONS(52),
},
[182] = {
[sym_for_statement] = STATE(446),
[sym_while_statement] = STATE(446),
[sym_if_statement] = STATE(446),
[sym_case_statement] = STATE(446),
[sym_function_definition] = STATE(446),
[sym_subshell] = STATE(446),
[sym_pipeline] = STATE(446),
[sym_list] = STATE(446),
[sym_bracket_command] = STATE(446),
[sym_command] = STATE(446),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(447),
[sym_declaration_command] = STATE(446),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[183] = {
[sym_concatenation] = STATE(455),
[sym_string] = STATE(449),
[sym_simple_expansion] = STATE(449),
[sym_expansion] = STATE(449),
[sym_command_substitution] = STATE(449),
[sym_process_substitution] = STATE(449),
[aux_sym_for_statement_repeat1] = STATE(456),
[anon_sym_DQUOTE] = ACTIONS(791),
[sym_raw_string] = ACTIONS(793),
[anon_sym_DOLLAR] = ACTIONS(795),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(797),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(799),
[anon_sym_BQUOTE] = ACTIONS(801),
[anon_sym_LT_LPAREN] = ACTIONS(803),
[anon_sym_GT_LPAREN] = ACTIONS(803),
[sym_word] = ACTIONS(805),
[sym_comment] = ACTIONS(52),
},
[184] = {
[sym__terminated_statement] = STATE(458),
[sym_for_statement] = STATE(459),
[sym_while_statement] = STATE(459),
[sym_if_statement] = STATE(459),
[sym_case_statement] = STATE(459),
[sym_function_definition] = STATE(459),
[sym_subshell] = STATE(459),
[sym_pipeline] = STATE(459),
[sym_list] = STATE(459),
[sym_bracket_command] = STATE(459),
[sym_command] = STATE(459),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(460),
[sym_declaration_command] = STATE(459),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(461),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_done] = ACTIONS(807),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[185] = {
[anon_sym_PIPE] = ACTIONS(809),
[anon_sym_RPAREN] = ACTIONS(809),
[anon_sym_SEMI_SEMI] = ACTIONS(809),
[anon_sym_PIPE_AMP] = ACTIONS(809),
[anon_sym_AMP_AMP] = ACTIONS(809),
[anon_sym_PIPE_PIPE] = ACTIONS(809),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(809),
[anon_sym_LF] = ACTIONS(809),
[anon_sym_AMP] = ACTIONS(809),
},
[186] = {
[anon_sym_do] = ACTIONS(616),
[anon_sym_then] = ACTIONS(616),
[sym_comment] = ACTIONS(52),
},
[187] = {
[sym__terminated_statement] = STATE(465),
[sym_for_statement] = STATE(466),
[sym_while_statement] = STATE(466),
[sym_if_statement] = STATE(466),
[sym_elif_clause] = STATE(467),
[sym_else_clause] = STATE(468),
[sym_case_statement] = STATE(466),
[sym_function_definition] = STATE(466),
[sym_subshell] = STATE(466),
[sym_pipeline] = STATE(466),
[sym_list] = STATE(466),
[sym_bracket_command] = STATE(466),
[sym_command] = STATE(466),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(469),
[sym_declaration_command] = STATE(466),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(470),
[aux_sym_if_statement_repeat1] = STATE(471),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_fi] = ACTIONS(811),
[anon_sym_elif] = ACTIONS(813),
[anon_sym_else] = ACTIONS(815),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[188] = {
[sym__concat] = ACTIONS(446),
[anon_sym_in] = ACTIONS(448),
[anon_sym_SEMI_SEMI] = ACTIONS(448),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(448),
[anon_sym_LF] = ACTIONS(448),
[anon_sym_AMP] = ACTIONS(448),
},
[189] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(298),
[anon_sym_DQUOTE] = ACTIONS(817),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[190] = {
[sym_string] = STATE(473),
[sym_simple_expansion] = STATE(473),
[sym_expansion] = STATE(473),
[sym_command_substitution] = STATE(473),
[sym_process_substitution] = STATE(473),
[anon_sym_DQUOTE] = ACTIONS(64),
[sym_raw_string] = ACTIONS(819),
[anon_sym_DOLLAR] = ACTIONS(68),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(70),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(72),
[anon_sym_BQUOTE] = ACTIONS(74),
[anon_sym_LT_LPAREN] = ACTIONS(76),
[anon_sym_GT_LPAREN] = ACTIONS(76),
[sym_word] = ACTIONS(821),
[sym_comment] = ACTIONS(52),
},
[191] = {
[anon_sym_SEMI_SEMI] = ACTIONS(823),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(823),
[anon_sym_LF] = ACTIONS(823),
[anon_sym_AMP] = ACTIONS(823),
},
[192] = {
[anon_sym_in] = ACTIONS(825),
[sym_comment] = ACTIONS(52),
},
[193] = {
[aux_sym_concatenation_repeat1] = STATE(476),
[sym__concat] = ACTIONS(334),
[anon_sym_in] = ACTIONS(472),
[anon_sym_SEMI_SEMI] = ACTIONS(472),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(472),
[anon_sym_LF] = ACTIONS(472),
[anon_sym_AMP] = ACTIONS(472),
},
[194] = {
[sym__concat] = ACTIONS(474),
[anon_sym_in] = ACTIONS(476),
[anon_sym_SEMI_SEMI] = ACTIONS(476),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(476),
[anon_sym_LF] = ACTIONS(476),
[anon_sym_AMP] = ACTIONS(476),
},
[195] = {
[sym__concat] = ACTIONS(478),
[anon_sym_in] = ACTIONS(480),
[anon_sym_SEMI_SEMI] = ACTIONS(480),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(480),
[anon_sym_LF] = ACTIONS(480),
[anon_sym_AMP] = ACTIONS(480),
},
[196] = {
[sym__concat] = ACTIONS(482),
[anon_sym_in] = ACTIONS(484),
[anon_sym_SEMI_SEMI] = ACTIONS(484),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(484),
[anon_sym_LF] = ACTIONS(484),
[anon_sym_AMP] = ACTIONS(484),
},
[197] = {
[sym_special_variable_name] = STATE(478),
[anon_sym_RBRACE] = ACTIONS(474),
[anon_sym_LBRACK] = ACTIONS(474),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_EQ] = ACTIONS(474),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(174),
[anon_sym_AT] = ACTIONS(174),
[anon_sym_COLON] = ACTIONS(486),
[anon_sym_COLON_QMARK] = ACTIONS(474),
[anon_sym_COLON_DASH] = ACTIONS(474),
[anon_sym_PERCENT] = ACTIONS(474),
[anon_sym_SLASH] = ACTIONS(474),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(827),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[198] = {
[anon_sym_RBRACE] = ACTIONS(829),
[anon_sym_LBRACK] = ACTIONS(831),
[anon_sym_EQ] = ACTIONS(833),
[anon_sym_COLON] = ACTIONS(835),
[anon_sym_COLON_QMARK] = ACTIONS(833),
[anon_sym_COLON_DASH] = ACTIONS(833),
[anon_sym_PERCENT] = ACTIONS(833),
[anon_sym_SLASH] = ACTIONS(833),
[sym_comment] = ACTIONS(52),
},
[199] = {
[anon_sym_RBRACE] = ACTIONS(837),
[anon_sym_LBRACK] = ACTIONS(839),
[anon_sym_EQ] = ACTIONS(841),
[anon_sym_COLON] = ACTIONS(843),
[anon_sym_COLON_QMARK] = ACTIONS(841),
[anon_sym_COLON_DASH] = ACTIONS(841),
[anon_sym_PERCENT] = ACTIONS(841),
[anon_sym_SLASH] = ACTIONS(841),
[sym_comment] = ACTIONS(52),
},
[200] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(845),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[201] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(845),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[202] = {
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(588),
[anon_sym_BQUOTE] = ACTIONS(845),
[sym_comment] = ACTIONS(52),
},
[203] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(600),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(845),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[204] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(847),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[205] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(847),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[206] = {
[anon_sym_RPAREN] = ACTIONS(849),
[sym_comment] = ACTIONS(52),
},
[207] = {
[sym_file_redirect] = STATE(488),
[sym_file_descriptor] = ACTIONS(610),
[anon_sym_PIPE] = ACTIONS(851),
[anon_sym_SEMI_SEMI] = ACTIONS(851),
[anon_sym_PIPE_AMP] = ACTIONS(851),
[anon_sym_AMP_AMP] = ACTIONS(851),
[anon_sym_PIPE_PIPE] = ACTIONS(851),
[anon_sym_LT] = ACTIONS(614),
[anon_sym_GT] = ACTIONS(614),
[anon_sym_GT_GT] = ACTIONS(614),
[anon_sym_AMP_GT] = ACTIONS(614),
[anon_sym_AMP_GT_GT] = ACTIONS(614),
[anon_sym_LT_AMP] = ACTIONS(614),
[anon_sym_GT_AMP] = ACTIONS(614),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(851),
[anon_sym_LF] = ACTIONS(851),
[anon_sym_AMP] = ACTIONS(851),
},
[208] = {
[sym_concatenation] = STATE(174),
[sym_string] = STATE(489),
[sym_array] = STATE(174),
[sym_simple_expansion] = STATE(489),
[sym_expansion] = STATE(489),
[sym_command_substitution] = STATE(489),
[sym_process_substitution] = STATE(489),
[sym__empty_value] = ACTIONS(300),
[anon_sym_LPAREN] = ACTIONS(302),
[anon_sym_DQUOTE] = ACTIONS(304),
[sym_raw_string] = ACTIONS(853),
[anon_sym_DOLLAR] = ACTIONS(308),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(310),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(312),
[anon_sym_BQUOTE] = ACTIONS(314),
[anon_sym_LT_LPAREN] = ACTIONS(316),
[anon_sym_GT_LPAREN] = ACTIONS(316),
[sym_word] = ACTIONS(855),
[sym_comment] = ACTIONS(52),
},
[209] = {
[sym_compound_statement] = STATE(491),
[anon_sym_LPAREN] = ACTIONS(857),
[anon_sym_LBRACE] = ACTIONS(352),
[sym_comment] = ACTIONS(52),
},
[210] = {
[sym__assignment] = STATE(266),
[anon_sym_LBRACK] = ACTIONS(58),
[anon_sym_EQ] = ACTIONS(859),
[anon_sym_PLUS_EQ] = ACTIONS(859),
[sym_comment] = ACTIONS(52),
},
[211] = {
[sym__assignment] = STATE(266),
[anon_sym_EQ] = ACTIONS(859),
[anon_sym_PLUS_EQ] = ACTIONS(859),
[sym_comment] = ACTIONS(52),
},
[212] = {
[sym_variable_assignment] = STATE(81),
[sym_subscript] = STATE(211),
[aux_sym_declaration_command_repeat1] = STATE(493),
[aux_sym_declaration_command_repeat2] = STATE(494),
[sym_variable_name] = ACTIONS(358),
[anon_sym_PIPE] = ACTIONS(426),
[anon_sym_RPAREN] = ACTIONS(426),
[anon_sym_SEMI_SEMI] = ACTIONS(426),
[anon_sym_PIPE_AMP] = ACTIONS(426),
[anon_sym_AMP_AMP] = ACTIONS(426),
[anon_sym_PIPE_PIPE] = ACTIONS(426),
[anon_sym_DASH] = ACTIONS(128),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(132),
[anon_sym_SEMI] = ACTIONS(426),
[anon_sym_LF] = ACTIONS(426),
[anon_sym_AMP] = ACTIONS(426),
},
[213] = {
[sym_variable_assignment] = STATE(81),
[sym_subscript] = STATE(211),
[aux_sym_declaration_command_repeat2] = STATE(495),
[sym_variable_name] = ACTIONS(358),
[anon_sym_PIPE] = ACTIONS(426),
[anon_sym_RPAREN] = ACTIONS(426),
[anon_sym_SEMI_SEMI] = ACTIONS(426),
[anon_sym_PIPE_AMP] = ACTIONS(426),
[anon_sym_AMP_AMP] = ACTIONS(426),
[anon_sym_PIPE_PIPE] = ACTIONS(426),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(132),
[anon_sym_SEMI] = ACTIONS(426),
[anon_sym_LF] = ACTIONS(426),
[anon_sym_AMP] = ACTIONS(426),
},
[214] = {
[aux_sym_concatenation_repeat1] = STATE(496),
[sym_file_descriptor] = ACTIONS(470),
[sym__concat] = ACTIONS(164),
[anon_sym_PIPE] = ACTIONS(472),
[anon_sym_RPAREN] = ACTIONS(472),
[anon_sym_SEMI_SEMI] = ACTIONS(472),
[anon_sym_PIPE_AMP] = ACTIONS(472),
[anon_sym_AMP_AMP] = ACTIONS(472),
[anon_sym_PIPE_PIPE] = ACTIONS(472),
[anon_sym_LT] = ACTIONS(472),
[anon_sym_GT] = ACTIONS(472),
[anon_sym_GT_GT] = ACTIONS(472),
[anon_sym_AMP_GT] = ACTIONS(472),
[anon_sym_AMP_GT_GT] = ACTIONS(472),
[anon_sym_LT_AMP] = ACTIONS(472),
[anon_sym_GT_AMP] = ACTIONS(472),
[anon_sym_LT_LT] = ACTIONS(472),
[anon_sym_LT_LT_DASH] = ACTIONS(472),
[anon_sym_DQUOTE] = ACTIONS(472),
[sym_raw_string] = ACTIONS(472),
[anon_sym_DOLLAR] = ACTIONS(472),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(472),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(472),
[anon_sym_BQUOTE] = ACTIONS(472),
[anon_sym_LT_LPAREN] = ACTIONS(472),
[anon_sym_GT_LPAREN] = ACTIONS(472),
[sym_word] = ACTIONS(472),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(472),
[anon_sym_LF] = ACTIONS(472),
[anon_sym_AMP] = ACTIONS(472),
},
[215] = {
[anon_sym_RPAREN] = ACTIONS(861),
[sym_comment] = ACTIONS(52),
},
[216] = {
[sym_file_redirect] = STATE(382),
[sym_file_descriptor] = ACTIONS(863),
[anon_sym_PIPE] = ACTIONS(612),
[anon_sym_RPAREN] = ACTIONS(612),
[anon_sym_SEMI_SEMI] = ACTIONS(612),
[anon_sym_PIPE_AMP] = ACTIONS(612),
[anon_sym_AMP_AMP] = ACTIONS(612),
[anon_sym_PIPE_PIPE] = ACTIONS(612),
[anon_sym_LT] = ACTIONS(865),
[anon_sym_GT] = ACTIONS(865),
[anon_sym_GT_GT] = ACTIONS(865),
[anon_sym_AMP_GT] = ACTIONS(865),
[anon_sym_AMP_GT_GT] = ACTIONS(865),
[anon_sym_LT_AMP] = ACTIONS(865),
[anon_sym_GT_AMP] = ACTIONS(865),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(612),
[anon_sym_LF] = ACTIONS(612),
[anon_sym_AMP] = ACTIONS(612),
},
[217] = {
[sym_for_statement] = STATE(383),
[sym_while_statement] = STATE(383),
[sym_if_statement] = STATE(383),
[sym_case_statement] = STATE(383),
[sym_function_definition] = STATE(383),
[sym_subshell] = STATE(383),
[sym_pipeline] = STATE(383),
[sym_list] = STATE(383),
[sym_bracket_command] = STATE(383),
[sym_command] = STATE(383),
[sym_command_name] = STATE(56),
[sym_variable_assignment] = STATE(384),
[sym_declaration_command] = STATE(383),
[sym_subscript] = STATE(58),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(53),
[sym_simple_expansion] = STATE(53),
[sym_expansion] = STATE(53),
[sym_command_substitution] = STATE(53),
[sym_process_substitution] = STATE(53),
[aux_sym_command_repeat1] = STATE(60),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(82),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(84),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(86),
[anon_sym_typeset] = ACTIONS(86),
[anon_sym_export] = ACTIONS(86),
[anon_sym_readonly] = ACTIONS(86),
[anon_sym_local] = ACTIONS(86),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(88),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(90),
[sym_comment] = ACTIONS(52),
},
[218] = {
[anon_sym_PIPE] = ACTIONS(867),
[anon_sym_RPAREN] = ACTIONS(867),
[anon_sym_SEMI_SEMI] = ACTIONS(867),
[anon_sym_PIPE_AMP] = ACTIONS(867),
[anon_sym_AMP_AMP] = ACTIONS(867),
[anon_sym_PIPE_PIPE] = ACTIONS(867),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(867),
[anon_sym_LF] = ACTIONS(867),
[anon_sym_AMP] = ACTIONS(867),
},
[219] = {
[sym_file_descriptor] = ACTIONS(616),
[sym_variable_name] = ACTIONS(616),
[anon_sym_for] = ACTIONS(618),
[anon_sym_while] = ACTIONS(618),
[anon_sym_if] = ACTIONS(618),
[anon_sym_case] = ACTIONS(618),
[anon_sym_RPAREN] = ACTIONS(869),
[anon_sym_function] = ACTIONS(618),
[anon_sym_LPAREN] = ACTIONS(616),
[anon_sym_LBRACK] = ACTIONS(618),
[anon_sym_LBRACK_LBRACK] = ACTIONS(618),
[anon_sym_declare] = ACTIONS(618),
[anon_sym_typeset] = ACTIONS(618),
[anon_sym_export] = ACTIONS(618),
[anon_sym_readonly] = ACTIONS(618),
[anon_sym_local] = ACTIONS(618),
[anon_sym_LT] = ACTIONS(618),
[anon_sym_GT] = ACTIONS(618),
[anon_sym_GT_GT] = ACTIONS(616),
[anon_sym_AMP_GT] = ACTIONS(618),
[anon_sym_AMP_GT_GT] = ACTIONS(616),
[anon_sym_LT_AMP] = ACTIONS(616),
[anon_sym_GT_AMP] = ACTIONS(616),
[anon_sym_DQUOTE] = ACTIONS(616),
[sym_raw_string] = ACTIONS(616),
[anon_sym_DOLLAR] = ACTIONS(618),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(616),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(616),
[anon_sym_BQUOTE] = ACTIONS(616),
[anon_sym_LT_LPAREN] = ACTIONS(616),
[anon_sym_GT_LPAREN] = ACTIONS(616),
[sym_word] = ACTIONS(620),
[sym_comment] = ACTIONS(52),
},
[220] = {
[sym_for_statement] = STATE(501),
[sym_while_statement] = STATE(501),
[sym_if_statement] = STATE(501),
[sym_case_statement] = STATE(501),
[sym_function_definition] = STATE(501),
[sym_subshell] = STATE(501),
[sym_pipeline] = STATE(501),
[sym_list] = STATE(501),
[sym_bracket_command] = STATE(501),
[sym_command] = STATE(501),
[sym_command_name] = STATE(56),
[sym_variable_assignment] = STATE(502),
[sym_declaration_command] = STATE(501),
[sym_subscript] = STATE(58),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(53),
[sym_simple_expansion] = STATE(53),
[sym_expansion] = STATE(53),
[sym_command_substitution] = STATE(53),
[sym_process_substitution] = STATE(53),
[aux_sym_command_repeat1] = STATE(60),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(82),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(84),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(86),
[anon_sym_typeset] = ACTIONS(86),
[anon_sym_export] = ACTIONS(86),
[anon_sym_readonly] = ACTIONS(86),
[anon_sym_local] = ACTIONS(86),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(88),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(90),
[sym_comment] = ACTIONS(52),
},
[221] = {
[anon_sym_LT] = ACTIONS(871),
[anon_sym_GT] = ACTIONS(871),
[anon_sym_GT_GT] = ACTIONS(873),
[anon_sym_AMP_GT] = ACTIONS(871),
[anon_sym_AMP_GT_GT] = ACTIONS(873),
[anon_sym_LT_AMP] = ACTIONS(873),
[anon_sym_GT_AMP] = ACTIONS(873),
[sym_comment] = ACTIONS(52),
},
[222] = {
[sym_concatenation] = STATE(395),
[sym_string] = STATE(504),
[sym_simple_expansion] = STATE(504),
[sym_expansion] = STATE(504),
[sym_command_substitution] = STATE(504),
[sym_process_substitution] = STATE(504),
[anon_sym_DQUOTE] = ACTIONS(626),
[sym_raw_string] = ACTIONS(875),
[anon_sym_DOLLAR] = ACTIONS(630),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(632),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(634),
[anon_sym_BQUOTE] = ACTIONS(636),
[anon_sym_LT_LPAREN] = ACTIONS(638),
[anon_sym_GT_LPAREN] = ACTIONS(638),
[sym_word] = ACTIONS(877),
[sym_comment] = ACTIONS(52),
},
[223] = {
[aux_sym_concatenation_repeat1] = STATE(214),
[sym_file_descriptor] = ACTIONS(384),
[sym__concat] = ACTIONS(164),
[anon_sym_PIPE] = ACTIONS(386),
[anon_sym_RPAREN] = ACTIONS(386),
[anon_sym_SEMI_SEMI] = ACTIONS(386),
[anon_sym_PIPE_AMP] = ACTIONS(386),
[anon_sym_AMP_AMP] = ACTIONS(386),
[anon_sym_PIPE_PIPE] = ACTIONS(386),
[anon_sym_LT] = ACTIONS(386),
[anon_sym_GT] = ACTIONS(386),
[anon_sym_GT_GT] = ACTIONS(386),
[anon_sym_AMP_GT] = ACTIONS(386),
[anon_sym_AMP_GT_GT] = ACTIONS(386),
[anon_sym_LT_AMP] = ACTIONS(386),
[anon_sym_GT_AMP] = ACTIONS(386),
[anon_sym_LT_LT] = ACTIONS(386),
[anon_sym_LT_LT_DASH] = ACTIONS(386),
[anon_sym_DQUOTE] = ACTIONS(386),
[sym_raw_string] = ACTIONS(386),
[anon_sym_DOLLAR] = ACTIONS(386),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(386),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(386),
[anon_sym_BQUOTE] = ACTIONS(386),
[anon_sym_LT_LPAREN] = ACTIONS(386),
[anon_sym_GT_LPAREN] = ACTIONS(386),
[sym_word] = ACTIONS(386),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(386),
[anon_sym_LF] = ACTIONS(386),
[anon_sym_AMP] = ACTIONS(386),
},
[224] = {
[sym_file_redirect] = STATE(155),
[sym_heredoc_redirect] = STATE(155),
[sym_concatenation] = STATE(156),
[sym_string] = STATE(223),
[sym_simple_expansion] = STATE(223),
[sym_expansion] = STATE(223),
[sym_command_substitution] = STATE(223),
[sym_process_substitution] = STATE(223),
[aux_sym_for_statement_repeat1] = STATE(505),
[aux_sym_command_repeat2] = STATE(506),
[sym_file_descriptor] = ACTIONS(370),
[anon_sym_PIPE] = ACTIONS(650),
[anon_sym_RPAREN] = ACTIONS(650),
[anon_sym_SEMI_SEMI] = ACTIONS(650),
[anon_sym_PIPE_AMP] = ACTIONS(650),
[anon_sym_AMP_AMP] = ACTIONS(650),
[anon_sym_PIPE_PIPE] = ACTIONS(650),
[anon_sym_LT] = ACTIONS(372),
[anon_sym_GT] = ACTIONS(372),
[anon_sym_GT_GT] = ACTIONS(372),
[anon_sym_AMP_GT] = ACTIONS(372),
[anon_sym_AMP_GT_GT] = ACTIONS(372),
[anon_sym_LT_AMP] = ACTIONS(372),
[anon_sym_GT_AMP] = ACTIONS(372),
[anon_sym_LT_LT] = ACTIONS(252),
[anon_sym_LT_LT_DASH] = ACTIONS(252),
[anon_sym_DQUOTE] = ACTIONS(254),
[sym_raw_string] = ACTIONS(374),
[anon_sym_DOLLAR] = ACTIONS(258),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(260),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(262),
[anon_sym_BQUOTE] = ACTIONS(264),
[anon_sym_LT_LPAREN] = ACTIONS(266),
[anon_sym_GT_LPAREN] = ACTIONS(266),
[sym_word] = ACTIONS(374),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(650),
[anon_sym_LF] = ACTIONS(650),
[anon_sym_AMP] = ACTIONS(650),
},
[225] = {
[sym_file_redirect] = STATE(155),
[sym_heredoc_redirect] = STATE(155),
[aux_sym_command_repeat2] = STATE(507),
[sym_file_descriptor] = ACTIONS(370),
[anon_sym_PIPE] = ACTIONS(650),
[anon_sym_RPAREN] = ACTIONS(650),
[anon_sym_SEMI_SEMI] = ACTIONS(650),
[anon_sym_PIPE_AMP] = ACTIONS(650),
[anon_sym_AMP_AMP] = ACTIONS(650),
[anon_sym_PIPE_PIPE] = ACTIONS(650),
[anon_sym_LT] = ACTIONS(372),
[anon_sym_GT] = ACTIONS(372),
[anon_sym_GT_GT] = ACTIONS(372),
[anon_sym_AMP_GT] = ACTIONS(372),
[anon_sym_AMP_GT_GT] = ACTIONS(372),
[anon_sym_LT_AMP] = ACTIONS(372),
[anon_sym_GT_AMP] = ACTIONS(372),
[anon_sym_LT_LT] = ACTIONS(252),
[anon_sym_LT_LT_DASH] = ACTIONS(252),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(650),
[anon_sym_LF] = ACTIONS(650),
[anon_sym_AMP] = ACTIONS(650),
},
[226] = {
[anon_sym_PIPE] = ACTIONS(362),
[anon_sym_RPAREN] = ACTIONS(879),
[anon_sym_SEMI_SEMI] = ACTIONS(881),
[anon_sym_PIPE_AMP] = ACTIONS(362),
[anon_sym_AMP_AMP] = ACTIONS(368),
[anon_sym_PIPE_PIPE] = ACTIONS(368),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(881),
[anon_sym_LF] = ACTIONS(881),
[anon_sym_AMP] = ACTIONS(881),
},
[227] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(362),
[anon_sym_RPAREN] = ACTIONS(879),
[anon_sym_SEMI_SEMI] = ACTIONS(881),
[anon_sym_PIPE_AMP] = ACTIONS(362),
[anon_sym_AMP_AMP] = ACTIONS(368),
[anon_sym_PIPE_PIPE] = ACTIONS(368),
[anon_sym_LT] = ACTIONS(270),
[anon_sym_GT] = ACTIONS(270),
[anon_sym_GT_GT] = ACTIONS(270),
[anon_sym_AMP_GT] = ACTIONS(270),
[anon_sym_AMP_GT_GT] = ACTIONS(270),
[anon_sym_LT_AMP] = ACTIONS(270),
[anon_sym_GT_AMP] = ACTIONS(270),
[anon_sym_DQUOTE] = ACTIONS(270),
[sym_raw_string] = ACTIONS(270),
[anon_sym_DOLLAR] = ACTIONS(270),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(270),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(270),
[anon_sym_BQUOTE] = ACTIONS(270),
[anon_sym_LT_LPAREN] = ACTIONS(270),
[anon_sym_GT_LPAREN] = ACTIONS(270),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(881),
[anon_sym_LF] = ACTIONS(881),
[anon_sym_AMP] = ACTIONS(881),
},
[228] = {
[sym__terminated_statement] = STATE(23),
[sym_for_statement] = STATE(24),
[sym_while_statement] = STATE(24),
[sym_if_statement] = STATE(24),
[sym_case_statement] = STATE(24),
[sym_function_definition] = STATE(24),
[sym_subshell] = STATE(24),
[sym_pipeline] = STATE(24),
[sym_list] = STATE(24),
[sym_bracket_command] = STATE(24),
[sym_command] = STATE(24),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(26),
[sym_declaration_command] = STATE(24),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(228),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(652),
[sym_variable_name] = ACTIONS(655),
[anon_sym_for] = ACTIONS(660),
[anon_sym_while] = ACTIONS(663),
[anon_sym_if] = ACTIONS(666),
[anon_sym_case] = ACTIONS(669),
[anon_sym_function] = ACTIONS(672),
[anon_sym_LPAREN] = ACTIONS(675),
[anon_sym_LBRACK] = ACTIONS(678),
[anon_sym_LBRACK_LBRACK] = ACTIONS(681),
[anon_sym_declare] = ACTIONS(684),
[anon_sym_typeset] = ACTIONS(684),
[anon_sym_export] = ACTIONS(684),
[anon_sym_readonly] = ACTIONS(684),
[anon_sym_local] = ACTIONS(684),
[anon_sym_LT] = ACTIONS(687),
[anon_sym_GT] = ACTIONS(687),
[anon_sym_GT_GT] = ACTIONS(690),
[anon_sym_AMP_GT] = ACTIONS(687),
[anon_sym_AMP_GT_GT] = ACTIONS(690),
[anon_sym_LT_AMP] = ACTIONS(690),
[anon_sym_GT_AMP] = ACTIONS(690),
[anon_sym_DQUOTE] = ACTIONS(693),
[sym_raw_string] = ACTIONS(696),
[anon_sym_DOLLAR] = ACTIONS(699),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(702),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(705),
[anon_sym_BQUOTE] = ACTIONS(708),
[anon_sym_LT_LPAREN] = ACTIONS(711),
[anon_sym_GT_LPAREN] = ACTIONS(711),
[sym_word] = ACTIONS(714),
[sym_comment] = ACTIONS(52),
},
[229] = {
[sym_file_redirect] = STATE(155),
[sym_heredoc_redirect] = STATE(155),
[sym_concatenation] = STATE(156),
[sym_string] = STATE(223),
[sym_simple_expansion] = STATE(223),
[sym_expansion] = STATE(223),
[sym_command_substitution] = STATE(223),
[sym_process_substitution] = STATE(223),
[aux_sym_for_statement_repeat1] = STATE(509),
[aux_sym_command_repeat2] = STATE(506),
[sym_file_descriptor] = ACTIONS(370),
[anon_sym_PIPE] = ACTIONS(650),
[anon_sym_RPAREN] = ACTIONS(650),
[anon_sym_SEMI_SEMI] = ACTIONS(650),
[anon_sym_PIPE_AMP] = ACTIONS(650),
[anon_sym_AMP_AMP] = ACTIONS(650),
[anon_sym_PIPE_PIPE] = ACTIONS(650),
[anon_sym_LT] = ACTIONS(372),
[anon_sym_GT] = ACTIONS(372),
[anon_sym_GT_GT] = ACTIONS(372),
[anon_sym_AMP_GT] = ACTIONS(372),
[anon_sym_AMP_GT_GT] = ACTIONS(372),
[anon_sym_LT_AMP] = ACTIONS(372),
[anon_sym_GT_AMP] = ACTIONS(372),
[anon_sym_LT_LT] = ACTIONS(252),
[anon_sym_LT_LT_DASH] = ACTIONS(252),
[anon_sym_DQUOTE] = ACTIONS(254),
[sym_raw_string] = ACTIONS(374),
[anon_sym_DOLLAR] = ACTIONS(258),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(260),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(262),
[anon_sym_BQUOTE] = ACTIONS(264),
[anon_sym_LT_LPAREN] = ACTIONS(266),
[anon_sym_GT_LPAREN] = ACTIONS(266),
[sym_word] = ACTIONS(374),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(650),
[anon_sym_LF] = ACTIONS(650),
[anon_sym_AMP] = ACTIONS(650),
},
[230] = {
[sym__concat] = ACTIONS(446),
[anon_sym_RBRACE] = ACTIONS(446),
[anon_sym_RBRACK] = ACTIONS(883),
[anon_sym_DQUOTE] = ACTIONS(446),
[sym_raw_string] = ACTIONS(446),
[anon_sym_DOLLAR] = ACTIONS(883),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(446),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(446),
[anon_sym_BQUOTE] = ACTIONS(446),
[anon_sym_LT_LPAREN] = ACTIONS(446),
[anon_sym_GT_LPAREN] = ACTIONS(446),
[sym_word] = ACTIONS(448),
[sym_comment] = ACTIONS(52),
},
[231] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(298),
[anon_sym_DQUOTE] = ACTIONS(885),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[232] = {
[sym_string] = STATE(511),
[sym_simple_expansion] = STATE(511),
[sym_expansion] = STATE(511),
[sym_command_substitution] = STATE(511),
[sym_process_substitution] = STATE(511),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(887),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(889),
[sym_comment] = ACTIONS(52),
},
[233] = {
[aux_sym_concatenation_repeat1] = STATE(512),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACK] = ACTIONS(891),
[anon_sym_DQUOTE] = ACTIONS(470),
[sym_raw_string] = ACTIONS(470),
[anon_sym_DOLLAR] = ACTIONS(891),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(470),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(470),
[anon_sym_BQUOTE] = ACTIONS(470),
[anon_sym_LT_LPAREN] = ACTIONS(470),
[anon_sym_GT_LPAREN] = ACTIONS(470),
[sym_word] = ACTIONS(472),
[sym_comment] = ACTIONS(52),
},
[234] = {
[sym__concat] = ACTIONS(474),
[anon_sym_RBRACE] = ACTIONS(474),
[anon_sym_RBRACK] = ACTIONS(486),
[anon_sym_DQUOTE] = ACTIONS(474),
[sym_raw_string] = ACTIONS(474),
[anon_sym_DOLLAR] = ACTIONS(486),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(474),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(474),
[anon_sym_BQUOTE] = ACTIONS(474),
[anon_sym_LT_LPAREN] = ACTIONS(474),
[anon_sym_GT_LPAREN] = ACTIONS(474),
[sym_word] = ACTIONS(476),
[sym_comment] = ACTIONS(52),
},
[235] = {
[sym__concat] = ACTIONS(478),
[anon_sym_RBRACE] = ACTIONS(478),
[anon_sym_RBRACK] = ACTIONS(893),
[anon_sym_DQUOTE] = ACTIONS(478),
[sym_raw_string] = ACTIONS(478),
[anon_sym_DOLLAR] = ACTIONS(893),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(478),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(478),
[anon_sym_BQUOTE] = ACTIONS(478),
[anon_sym_LT_LPAREN] = ACTIONS(478),
[anon_sym_GT_LPAREN] = ACTIONS(478),
[sym_word] = ACTIONS(480),
[sym_comment] = ACTIONS(52),
},
[236] = {
[sym__concat] = ACTIONS(482),
[anon_sym_RBRACE] = ACTIONS(482),
[anon_sym_RBRACK] = ACTIONS(895),
[anon_sym_DQUOTE] = ACTIONS(482),
[sym_raw_string] = ACTIONS(482),
[anon_sym_DOLLAR] = ACTIONS(895),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(482),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(482),
[anon_sym_BQUOTE] = ACTIONS(482),
[anon_sym_LT_LPAREN] = ACTIONS(482),
[anon_sym_GT_LPAREN] = ACTIONS(482),
[sym_word] = ACTIONS(484),
[sym_comment] = ACTIONS(52),
},
[237] = {
[sym_special_variable_name] = STATE(514),
[anon_sym_RBRACE] = ACTIONS(474),
[anon_sym_LBRACK] = ACTIONS(474),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_EQ] = ACTIONS(474),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(174),
[anon_sym_AT] = ACTIONS(174),
[anon_sym_COLON] = ACTIONS(486),
[anon_sym_COLON_QMARK] = ACTIONS(474),
[anon_sym_COLON_DASH] = ACTIONS(474),
[anon_sym_PERCENT] = ACTIONS(474),
[anon_sym_SLASH] = ACTIONS(474),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(897),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[238] = {
[anon_sym_RBRACE] = ACTIONS(899),
[anon_sym_LBRACK] = ACTIONS(901),
[anon_sym_EQ] = ACTIONS(903),
[anon_sym_COLON] = ACTIONS(905),
[anon_sym_COLON_QMARK] = ACTIONS(903),
[anon_sym_COLON_DASH] = ACTIONS(903),
[anon_sym_PERCENT] = ACTIONS(903),
[anon_sym_SLASH] = ACTIONS(903),
[sym_comment] = ACTIONS(52),
},
[239] = {
[anon_sym_RBRACE] = ACTIONS(907),
[anon_sym_LBRACK] = ACTIONS(909),
[anon_sym_EQ] = ACTIONS(911),
[anon_sym_COLON] = ACTIONS(913),
[anon_sym_COLON_QMARK] = ACTIONS(911),
[anon_sym_COLON_DASH] = ACTIONS(911),
[anon_sym_PERCENT] = ACTIONS(911),
[anon_sym_SLASH] = ACTIONS(911),
[sym_comment] = ACTIONS(52),
},
[240] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(915),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[241] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(915),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[242] = {
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(588),
[anon_sym_BQUOTE] = ACTIONS(915),
[sym_comment] = ACTIONS(52),
},
[243] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(600),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(915),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[244] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(917),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[245] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(917),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[246] = {
[anon_sym_PIPE] = ACTIONS(919),
[anon_sym_RPAREN] = ACTIONS(919),
[anon_sym_SEMI_SEMI] = ACTIONS(919),
[anon_sym_PIPE_AMP] = ACTIONS(919),
[anon_sym_AMP_AMP] = ACTIONS(919),
[anon_sym_PIPE_PIPE] = ACTIONS(919),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(919),
[anon_sym_LF] = ACTIONS(919),
[anon_sym_AMP] = ACTIONS(919),
},
[247] = {
[sym_concatenation] = STATE(68),
[sym_string] = STATE(62),
[sym_simple_expansion] = STATE(62),
[sym_expansion] = STATE(62),
[sym_command_substitution] = STATE(62),
[sym_process_substitution] = STATE(62),
[aux_sym_for_statement_repeat1] = STATE(247),
[anon_sym_RBRACK] = ACTIONS(921),
[anon_sym_DQUOTE] = ACTIONS(923),
[sym_raw_string] = ACTIONS(926),
[anon_sym_DOLLAR] = ACTIONS(929),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(932),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(935),
[anon_sym_BQUOTE] = ACTIONS(938),
[anon_sym_LT_LPAREN] = ACTIONS(941),
[anon_sym_GT_LPAREN] = ACTIONS(941),
[sym_word] = ACTIONS(944),
[sym_comment] = ACTIONS(52),
},
[248] = {
[sym__concat] = ACTIONS(446),
[anon_sym_RBRACK_RBRACK] = ACTIONS(883),
[anon_sym_DQUOTE] = ACTIONS(446),
[sym_raw_string] = ACTIONS(446),
[anon_sym_DOLLAR] = ACTIONS(883),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(446),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(446),
[anon_sym_BQUOTE] = ACTIONS(446),
[anon_sym_LT_LPAREN] = ACTIONS(446),
[anon_sym_GT_LPAREN] = ACTIONS(446),
[sym_word] = ACTIONS(448),
[sym_comment] = ACTIONS(52),
},
[249] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(298),
[anon_sym_DQUOTE] = ACTIONS(947),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[250] = {
[sym_string] = STATE(524),
[sym_simple_expansion] = STATE(524),
[sym_expansion] = STATE(524),
[sym_command_substitution] = STATE(524),
[sym_process_substitution] = STATE(524),
[anon_sym_DQUOTE] = ACTIONS(108),
[sym_raw_string] = ACTIONS(949),
[anon_sym_DOLLAR] = ACTIONS(112),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(114),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(116),
[anon_sym_BQUOTE] = ACTIONS(118),
[anon_sym_LT_LPAREN] = ACTIONS(120),
[anon_sym_GT_LPAREN] = ACTIONS(120),
[sym_word] = ACTIONS(951),
[sym_comment] = ACTIONS(52),
},
[251] = {
[aux_sym_concatenation_repeat1] = STATE(525),
[sym__concat] = ACTIONS(404),
[anon_sym_RBRACK_RBRACK] = ACTIONS(891),
[anon_sym_DQUOTE] = ACTIONS(470),
[sym_raw_string] = ACTIONS(470),
[anon_sym_DOLLAR] = ACTIONS(891),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(470),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(470),
[anon_sym_BQUOTE] = ACTIONS(470),
[anon_sym_LT_LPAREN] = ACTIONS(470),
[anon_sym_GT_LPAREN] = ACTIONS(470),
[sym_word] = ACTIONS(472),
[sym_comment] = ACTIONS(52),
},
[252] = {
[sym__concat] = ACTIONS(474),
[anon_sym_RBRACK_RBRACK] = ACTIONS(486),
[anon_sym_DQUOTE] = ACTIONS(474),
[sym_raw_string] = ACTIONS(474),
[anon_sym_DOLLAR] = ACTIONS(486),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(474),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(474),
[anon_sym_BQUOTE] = ACTIONS(474),
[anon_sym_LT_LPAREN] = ACTIONS(474),
[anon_sym_GT_LPAREN] = ACTIONS(474),
[sym_word] = ACTIONS(476),
[sym_comment] = ACTIONS(52),
},
[253] = {
[sym__concat] = ACTIONS(478),
[anon_sym_RBRACK_RBRACK] = ACTIONS(893),
[anon_sym_DQUOTE] = ACTIONS(478),
[sym_raw_string] = ACTIONS(478),
[anon_sym_DOLLAR] = ACTIONS(893),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(478),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(478),
[anon_sym_BQUOTE] = ACTIONS(478),
[anon_sym_LT_LPAREN] = ACTIONS(478),
[anon_sym_GT_LPAREN] = ACTIONS(478),
[sym_word] = ACTIONS(480),
[sym_comment] = ACTIONS(52),
},
[254] = {
[sym__concat] = ACTIONS(482),
[anon_sym_RBRACK_RBRACK] = ACTIONS(895),
[anon_sym_DQUOTE] = ACTIONS(482),
[sym_raw_string] = ACTIONS(482),
[anon_sym_DOLLAR] = ACTIONS(895),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(482),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(482),
[anon_sym_BQUOTE] = ACTIONS(482),
[anon_sym_LT_LPAREN] = ACTIONS(482),
[anon_sym_GT_LPAREN] = ACTIONS(482),
[sym_word] = ACTIONS(484),
[sym_comment] = ACTIONS(52),
},
[255] = {
[sym_special_variable_name] = STATE(527),
[anon_sym_RBRACE] = ACTIONS(474),
[anon_sym_LBRACK] = ACTIONS(474),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_EQ] = ACTIONS(474),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(174),
[anon_sym_AT] = ACTIONS(174),
[anon_sym_COLON] = ACTIONS(486),
[anon_sym_COLON_QMARK] = ACTIONS(474),
[anon_sym_COLON_DASH] = ACTIONS(474),
[anon_sym_PERCENT] = ACTIONS(474),
[anon_sym_SLASH] = ACTIONS(474),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(953),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[256] = {
[anon_sym_RBRACE] = ACTIONS(955),
[anon_sym_LBRACK] = ACTIONS(957),
[anon_sym_EQ] = ACTIONS(959),
[anon_sym_COLON] = ACTIONS(961),
[anon_sym_COLON_QMARK] = ACTIONS(959),
[anon_sym_COLON_DASH] = ACTIONS(959),
[anon_sym_PERCENT] = ACTIONS(959),
[anon_sym_SLASH] = ACTIONS(959),
[sym_comment] = ACTIONS(52),
},
[257] = {
[anon_sym_RBRACE] = ACTIONS(963),
[anon_sym_LBRACK] = ACTIONS(965),
[anon_sym_EQ] = ACTIONS(967),
[anon_sym_COLON] = ACTIONS(969),
[anon_sym_COLON_QMARK] = ACTIONS(967),
[anon_sym_COLON_DASH] = ACTIONS(967),
[anon_sym_PERCENT] = ACTIONS(967),
[anon_sym_SLASH] = ACTIONS(967),
[sym_comment] = ACTIONS(52),
},
[258] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(971),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[259] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(971),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[260] = {
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(588),
[anon_sym_BQUOTE] = ACTIONS(971),
[sym_comment] = ACTIONS(52),
},
[261] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(600),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(971),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[262] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(973),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[263] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(973),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[264] = {
[sym_concatenation] = STATE(77),
[sym_string] = STATE(71),
[sym_simple_expansion] = STATE(71),
[sym_expansion] = STATE(71),
[sym_command_substitution] = STATE(71),
[sym_process_substitution] = STATE(71),
[aux_sym_for_statement_repeat1] = STATE(264),
[anon_sym_RBRACK_RBRACK] = ACTIONS(921),
[anon_sym_DQUOTE] = ACTIONS(975),
[sym_raw_string] = ACTIONS(978),
[anon_sym_DOLLAR] = ACTIONS(981),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(984),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(987),
[anon_sym_BQUOTE] = ACTIONS(990),
[anon_sym_LT_LPAREN] = ACTIONS(993),
[anon_sym_GT_LPAREN] = ACTIONS(993),
[sym_word] = ACTIONS(996),
[sym_comment] = ACTIONS(52),
},
[265] = {
[sym_concatenation] = STATE(536),
[sym_string] = STATE(539),
[sym_array] = STATE(536),
[sym_simple_expansion] = STATE(539),
[sym_expansion] = STATE(539),
[sym_command_substitution] = STATE(539),
[sym_process_substitution] = STATE(539),
[sym__empty_value] = ACTIONS(999),
[anon_sym_LPAREN] = ACTIONS(1001),
[anon_sym_DQUOTE] = ACTIONS(1003),
[sym_raw_string] = ACTIONS(1005),
[anon_sym_DOLLAR] = ACTIONS(1007),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1009),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1011),
[anon_sym_BQUOTE] = ACTIONS(1013),
[anon_sym_LT_LPAREN] = ACTIONS(1015),
[anon_sym_GT_LPAREN] = ACTIONS(1015),
[sym_word] = ACTIONS(1017),
[sym_comment] = ACTIONS(52),
},
[266] = {
[sym_variable_name] = ACTIONS(320),
[anon_sym_PIPE] = ACTIONS(322),
[anon_sym_RPAREN] = ACTIONS(322),
[anon_sym_SEMI_SEMI] = ACTIONS(322),
[anon_sym_PIPE_AMP] = ACTIONS(322),
[anon_sym_AMP_AMP] = ACTIONS(322),
[anon_sym_PIPE_PIPE] = ACTIONS(322),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(322),
[anon_sym_SEMI] = ACTIONS(322),
[anon_sym_LF] = ACTIONS(322),
[anon_sym_AMP] = ACTIONS(322),
},
[267] = {
[sym_variable_name] = ACTIONS(1019),
[anon_sym_PIPE] = ACTIONS(1021),
[anon_sym_RPAREN] = ACTIONS(1021),
[anon_sym_SEMI_SEMI] = ACTIONS(1021),
[anon_sym_PIPE_AMP] = ACTIONS(1021),
[anon_sym_AMP_AMP] = ACTIONS(1021),
[anon_sym_PIPE_PIPE] = ACTIONS(1021),
[anon_sym_DASH] = ACTIONS(1021),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1021),
[anon_sym_SEMI] = ACTIONS(1021),
[anon_sym_LF] = ACTIONS(1021),
[anon_sym_AMP] = ACTIONS(1021),
},
[268] = {
[aux_sym_declaration_command_repeat1] = STATE(268),
[sym_variable_name] = ACTIONS(1023),
[anon_sym_PIPE] = ACTIONS(1025),
[anon_sym_SEMI_SEMI] = ACTIONS(1025),
[anon_sym_PIPE_AMP] = ACTIONS(1025),
[anon_sym_AMP_AMP] = ACTIONS(1025),
[anon_sym_PIPE_PIPE] = ACTIONS(1025),
[anon_sym_DASH] = ACTIONS(1027),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1025),
[anon_sym_SEMI] = ACTIONS(1025),
[anon_sym_LF] = ACTIONS(1025),
[anon_sym_AMP] = ACTIONS(1025),
},
[269] = {
[sym_variable_assignment] = STATE(81),
[sym_subscript] = STATE(82),
[aux_sym_declaration_command_repeat2] = STATE(270),
[sym_variable_name] = ACTIONS(124),
[anon_sym_PIPE] = ACTIONS(1030),
[anon_sym_SEMI_SEMI] = ACTIONS(1030),
[anon_sym_PIPE_AMP] = ACTIONS(1030),
[anon_sym_AMP_AMP] = ACTIONS(1030),
[anon_sym_PIPE_PIPE] = ACTIONS(1030),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(132),
[anon_sym_SEMI] = ACTIONS(1030),
[anon_sym_LF] = ACTIONS(1030),
[anon_sym_AMP] = ACTIONS(1030),
},
[270] = {
[sym_variable_assignment] = STATE(81),
[sym_subscript] = STATE(82),
[aux_sym_declaration_command_repeat2] = STATE(270),
[sym_variable_name] = ACTIONS(1032),
[anon_sym_PIPE] = ACTIONS(1035),
[anon_sym_SEMI_SEMI] = ACTIONS(1035),
[anon_sym_PIPE_AMP] = ACTIONS(1035),
[anon_sym_AMP_AMP] = ACTIONS(1035),
[anon_sym_PIPE_PIPE] = ACTIONS(1035),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1037),
[anon_sym_SEMI] = ACTIONS(1035),
[anon_sym_LF] = ACTIONS(1035),
[anon_sym_AMP] = ACTIONS(1035),
},
[271] = {
[sym_file_descriptor] = ACTIONS(446),
[sym__concat] = ACTIONS(446),
[sym_variable_name] = ACTIONS(446),
[anon_sym_LT] = ACTIONS(883),
[anon_sym_GT] = ACTIONS(883),
[anon_sym_GT_GT] = ACTIONS(446),
[anon_sym_AMP_GT] = ACTIONS(883),
[anon_sym_AMP_GT_GT] = ACTIONS(446),
[anon_sym_LT_AMP] = ACTIONS(446),
[anon_sym_GT_AMP] = ACTIONS(446),
[anon_sym_DQUOTE] = ACTIONS(446),
[sym_raw_string] = ACTIONS(446),
[anon_sym_DOLLAR] = ACTIONS(883),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(446),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(446),
[anon_sym_BQUOTE] = ACTIONS(446),
[anon_sym_LT_LPAREN] = ACTIONS(446),
[anon_sym_GT_LPAREN] = ACTIONS(446),
[sym_word] = ACTIONS(883),
[sym_comment] = ACTIONS(52),
},
[272] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(298),
[anon_sym_DQUOTE] = ACTIONS(1040),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[273] = {
[sym_string] = STATE(546),
[sym_simple_expansion] = STATE(546),
[sym_expansion] = STATE(546),
[sym_command_substitution] = STATE(546),
[sym_process_substitution] = STATE(546),
[anon_sym_DQUOTE] = ACTIONS(134),
[sym_raw_string] = ACTIONS(1042),
[anon_sym_DOLLAR] = ACTIONS(138),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(140),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(142),
[anon_sym_BQUOTE] = ACTIONS(144),
[anon_sym_LT_LPAREN] = ACTIONS(146),
[anon_sym_GT_LPAREN] = ACTIONS(146),
[sym_word] = ACTIONS(1044),
[sym_comment] = ACTIONS(52),
},
[274] = {
[aux_sym_concatenation_repeat1] = STATE(547),
[sym_file_descriptor] = ACTIONS(470),
[sym__concat] = ACTIONS(432),
[sym_variable_name] = ACTIONS(470),
[anon_sym_LT] = ACTIONS(891),
[anon_sym_GT] = ACTIONS(891),
[anon_sym_GT_GT] = ACTIONS(470),
[anon_sym_AMP_GT] = ACTIONS(891),
[anon_sym_AMP_GT_GT] = ACTIONS(470),
[anon_sym_LT_AMP] = ACTIONS(470),
[anon_sym_GT_AMP] = ACTIONS(470),
[anon_sym_DQUOTE] = ACTIONS(470),
[sym_raw_string] = ACTIONS(470),
[anon_sym_DOLLAR] = ACTIONS(891),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(470),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(470),
[anon_sym_BQUOTE] = ACTIONS(470),
[anon_sym_LT_LPAREN] = ACTIONS(470),
[anon_sym_GT_LPAREN] = ACTIONS(470),
[sym_word] = ACTIONS(891),
[sym_comment] = ACTIONS(52),
},
[275] = {
[sym_file_descriptor] = ACTIONS(474),
[sym__concat] = ACTIONS(474),
[sym_variable_name] = ACTIONS(474),
[anon_sym_LT] = ACTIONS(486),
[anon_sym_GT] = ACTIONS(486),
[anon_sym_GT_GT] = ACTIONS(474),
[anon_sym_AMP_GT] = ACTIONS(486),
[anon_sym_AMP_GT_GT] = ACTIONS(474),
[anon_sym_LT_AMP] = ACTIONS(474),
[anon_sym_GT_AMP] = ACTIONS(474),
[anon_sym_DQUOTE] = ACTIONS(474),
[sym_raw_string] = ACTIONS(474),
[anon_sym_DOLLAR] = ACTIONS(486),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(474),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(474),
[anon_sym_BQUOTE] = ACTIONS(474),
[anon_sym_LT_LPAREN] = ACTIONS(474),
[anon_sym_GT_LPAREN] = ACTIONS(474),
[sym_word] = ACTIONS(486),
[sym_comment] = ACTIONS(52),
},
[276] = {
[sym_file_descriptor] = ACTIONS(478),
[sym__concat] = ACTIONS(478),
[sym_variable_name] = ACTIONS(478),
[anon_sym_LT] = ACTIONS(893),
[anon_sym_GT] = ACTIONS(893),
[anon_sym_GT_GT] = ACTIONS(478),
[anon_sym_AMP_GT] = ACTIONS(893),
[anon_sym_AMP_GT_GT] = ACTIONS(478),
[anon_sym_LT_AMP] = ACTIONS(478),
[anon_sym_GT_AMP] = ACTIONS(478),
[anon_sym_DQUOTE] = ACTIONS(478),
[sym_raw_string] = ACTIONS(478),
[anon_sym_DOLLAR] = ACTIONS(893),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(478),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(478),
[anon_sym_BQUOTE] = ACTIONS(478),
[anon_sym_LT_LPAREN] = ACTIONS(478),
[anon_sym_GT_LPAREN] = ACTIONS(478),
[sym_word] = ACTIONS(893),
[sym_comment] = ACTIONS(52),
},
[277] = {
[sym_file_descriptor] = ACTIONS(482),
[sym__concat] = ACTIONS(482),
[sym_variable_name] = ACTIONS(482),
[anon_sym_LT] = ACTIONS(895),
[anon_sym_GT] = ACTIONS(895),
[anon_sym_GT_GT] = ACTIONS(482),
[anon_sym_AMP_GT] = ACTIONS(895),
[anon_sym_AMP_GT_GT] = ACTIONS(482),
[anon_sym_LT_AMP] = ACTIONS(482),
[anon_sym_GT_AMP] = ACTIONS(482),
[anon_sym_DQUOTE] = ACTIONS(482),
[sym_raw_string] = ACTIONS(482),
[anon_sym_DOLLAR] = ACTIONS(895),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(482),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(482),
[anon_sym_BQUOTE] = ACTIONS(482),
[anon_sym_LT_LPAREN] = ACTIONS(482),
[anon_sym_GT_LPAREN] = ACTIONS(482),
[sym_word] = ACTIONS(895),
[sym_comment] = ACTIONS(52),
},
[278] = {
[sym_special_variable_name] = STATE(549),
[anon_sym_RBRACE] = ACTIONS(474),
[anon_sym_LBRACK] = ACTIONS(474),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_EQ] = ACTIONS(474),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(174),
[anon_sym_AT] = ACTIONS(174),
[anon_sym_COLON] = ACTIONS(486),
[anon_sym_COLON_QMARK] = ACTIONS(474),
[anon_sym_COLON_DASH] = ACTIONS(474),
[anon_sym_PERCENT] = ACTIONS(474),
[anon_sym_SLASH] = ACTIONS(474),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1046),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[279] = {
[anon_sym_RBRACE] = ACTIONS(1048),
[anon_sym_LBRACK] = ACTIONS(1050),
[anon_sym_EQ] = ACTIONS(1052),
[anon_sym_COLON] = ACTIONS(1054),
[anon_sym_COLON_QMARK] = ACTIONS(1052),
[anon_sym_COLON_DASH] = ACTIONS(1052),
[anon_sym_PERCENT] = ACTIONS(1052),
[anon_sym_SLASH] = ACTIONS(1052),
[sym_comment] = ACTIONS(52),
},
[280] = {
[anon_sym_RBRACE] = ACTIONS(1056),
[anon_sym_LBRACK] = ACTIONS(1058),
[anon_sym_EQ] = ACTIONS(1060),
[anon_sym_COLON] = ACTIONS(1062),
[anon_sym_COLON_QMARK] = ACTIONS(1060),
[anon_sym_COLON_DASH] = ACTIONS(1060),
[anon_sym_PERCENT] = ACTIONS(1060),
[anon_sym_SLASH] = ACTIONS(1060),
[sym_comment] = ACTIONS(52),
},
[281] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(1064),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[282] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(1064),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[283] = {
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(588),
[anon_sym_BQUOTE] = ACTIONS(1064),
[sym_comment] = ACTIONS(52),
},
[284] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(600),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(1064),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[285] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(1066),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[286] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(1066),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[287] = {
[anon_sym_DQUOTE] = ACTIONS(476),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(486),
[anon_sym_DOLLAR] = ACTIONS(476),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(476),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(476),
[anon_sym_BQUOTE] = ACTIONS(476),
[sym_comment] = ACTIONS(130),
},
[288] = {
[anon_sym_DQUOTE] = ACTIONS(480),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(893),
[anon_sym_DOLLAR] = ACTIONS(480),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(480),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(480),
[anon_sym_BQUOTE] = ACTIONS(480),
[sym_comment] = ACTIONS(130),
},
[289] = {
[anon_sym_DQUOTE] = ACTIONS(484),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(895),
[anon_sym_DOLLAR] = ACTIONS(484),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(484),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(484),
[anon_sym_BQUOTE] = ACTIONS(484),
[sym_comment] = ACTIONS(130),
},
[290] = {
[sym_special_variable_name] = STATE(559),
[anon_sym_RBRACE] = ACTIONS(474),
[anon_sym_LBRACK] = ACTIONS(474),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_EQ] = ACTIONS(474),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(174),
[anon_sym_AT] = ACTIONS(174),
[anon_sym_COLON] = ACTIONS(486),
[anon_sym_COLON_QMARK] = ACTIONS(474),
[anon_sym_COLON_DASH] = ACTIONS(474),
[anon_sym_PERCENT] = ACTIONS(474),
[anon_sym_SLASH] = ACTIONS(474),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1068),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[291] = {
[anon_sym_RBRACE] = ACTIONS(1070),
[anon_sym_LBRACK] = ACTIONS(1072),
[anon_sym_EQ] = ACTIONS(1074),
[anon_sym_COLON] = ACTIONS(1076),
[anon_sym_COLON_QMARK] = ACTIONS(1074),
[anon_sym_COLON_DASH] = ACTIONS(1074),
[anon_sym_PERCENT] = ACTIONS(1074),
[anon_sym_SLASH] = ACTIONS(1074),
[sym_comment] = ACTIONS(52),
},
[292] = {
[anon_sym_RBRACE] = ACTIONS(1078),
[anon_sym_LBRACK] = ACTIONS(1080),
[anon_sym_EQ] = ACTIONS(1082),
[anon_sym_COLON] = ACTIONS(1084),
[anon_sym_COLON_QMARK] = ACTIONS(1082),
[anon_sym_COLON_DASH] = ACTIONS(1082),
[anon_sym_PERCENT] = ACTIONS(1082),
[anon_sym_SLASH] = ACTIONS(1082),
[sym_comment] = ACTIONS(52),
},
[293] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(1086),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[294] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(1086),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[295] = {
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(588),
[anon_sym_BQUOTE] = ACTIONS(1086),
[sym_comment] = ACTIONS(52),
},
[296] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(600),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(1086),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[297] = {
[sym_file_descriptor] = ACTIONS(1088),
[sym__concat] = ACTIONS(1088),
[anon_sym_PIPE] = ACTIONS(1090),
[anon_sym_RPAREN] = ACTIONS(1090),
[anon_sym_SEMI_SEMI] = ACTIONS(1090),
[anon_sym_PIPE_AMP] = ACTIONS(1090),
[anon_sym_AMP_AMP] = ACTIONS(1090),
[anon_sym_PIPE_PIPE] = ACTIONS(1090),
[anon_sym_LT] = ACTIONS(1090),
[anon_sym_GT] = ACTIONS(1090),
[anon_sym_GT_GT] = ACTIONS(1090),
[anon_sym_AMP_GT] = ACTIONS(1090),
[anon_sym_AMP_GT_GT] = ACTIONS(1090),
[anon_sym_LT_AMP] = ACTIONS(1090),
[anon_sym_GT_AMP] = ACTIONS(1090),
[anon_sym_LT_LT] = ACTIONS(1090),
[anon_sym_LT_LT_DASH] = ACTIONS(1090),
[anon_sym_DQUOTE] = ACTIONS(1090),
[sym_raw_string] = ACTIONS(1090),
[anon_sym_DOLLAR] = ACTIONS(1090),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1090),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1090),
[anon_sym_BQUOTE] = ACTIONS(1090),
[anon_sym_LT_LPAREN] = ACTIONS(1090),
[anon_sym_GT_LPAREN] = ACTIONS(1090),
[sym_word] = ACTIONS(1090),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1090),
[anon_sym_LF] = ACTIONS(1090),
[anon_sym_AMP] = ACTIONS(1090),
},
[298] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(298),
[anon_sym_DQUOTE] = ACTIONS(1092),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1094),
[anon_sym_DOLLAR] = ACTIONS(1097),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1100),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1103),
[anon_sym_BQUOTE] = ACTIONS(1106),
[sym_comment] = ACTIONS(130),
},
[299] = {
[sym_file_descriptor] = ACTIONS(1109),
[sym__concat] = ACTIONS(1109),
[anon_sym_PIPE] = ACTIONS(1111),
[anon_sym_RPAREN] = ACTIONS(1111),
[anon_sym_SEMI_SEMI] = ACTIONS(1111),
[anon_sym_PIPE_AMP] = ACTIONS(1111),
[anon_sym_AMP_AMP] = ACTIONS(1111),
[anon_sym_PIPE_PIPE] = ACTIONS(1111),
[anon_sym_LT] = ACTIONS(1111),
[anon_sym_GT] = ACTIONS(1111),
[anon_sym_GT_GT] = ACTIONS(1111),
[anon_sym_AMP_GT] = ACTIONS(1111),
[anon_sym_AMP_GT_GT] = ACTIONS(1111),
[anon_sym_LT_AMP] = ACTIONS(1111),
[anon_sym_GT_AMP] = ACTIONS(1111),
[anon_sym_LT_LT] = ACTIONS(1111),
[anon_sym_LT_LT_DASH] = ACTIONS(1111),
[anon_sym_DQUOTE] = ACTIONS(1111),
[sym_raw_string] = ACTIONS(1111),
[anon_sym_DOLLAR] = ACTIONS(1111),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1111),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1111),
[anon_sym_BQUOTE] = ACTIONS(1111),
[anon_sym_LT_LPAREN] = ACTIONS(1111),
[anon_sym_GT_LPAREN] = ACTIONS(1111),
[sym_word] = ACTIONS(1111),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1111),
[anon_sym_LF] = ACTIONS(1111),
[anon_sym_AMP] = ACTIONS(1111),
},
[300] = {
[aux_sym_concatenation_repeat1] = STATE(300),
[sym_file_descriptor] = ACTIONS(1109),
[sym__concat] = ACTIONS(1113),
[anon_sym_PIPE] = ACTIONS(1111),
[anon_sym_SEMI_SEMI] = ACTIONS(1111),
[anon_sym_PIPE_AMP] = ACTIONS(1111),
[anon_sym_AMP_AMP] = ACTIONS(1111),
[anon_sym_PIPE_PIPE] = ACTIONS(1111),
[anon_sym_LT] = ACTIONS(1111),
[anon_sym_GT] = ACTIONS(1111),
[anon_sym_GT_GT] = ACTIONS(1111),
[anon_sym_AMP_GT] = ACTIONS(1111),
[anon_sym_AMP_GT_GT] = ACTIONS(1111),
[anon_sym_LT_AMP] = ACTIONS(1111),
[anon_sym_GT_AMP] = ACTIONS(1111),
[anon_sym_LT_LT] = ACTIONS(1111),
[anon_sym_LT_LT_DASH] = ACTIONS(1111),
[anon_sym_DQUOTE] = ACTIONS(1111),
[sym_raw_string] = ACTIONS(1111),
[anon_sym_DOLLAR] = ACTIONS(1111),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1111),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1111),
[anon_sym_BQUOTE] = ACTIONS(1111),
[anon_sym_LT_LPAREN] = ACTIONS(1111),
[anon_sym_GT_LPAREN] = ACTIONS(1111),
[sym_word] = ACTIONS(1111),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1111),
[anon_sym_LF] = ACTIONS(1111),
[anon_sym_AMP] = ACTIONS(1111),
},
[301] = {
[anon_sym_RBRACE] = ACTIONS(1116),
[anon_sym_LBRACK] = ACTIONS(1118),
[sym_comment] = ACTIONS(52),
},
[302] = {
[anon_sym_RBRACE] = ACTIONS(1120),
[anon_sym_LBRACK] = ACTIONS(1122),
[sym_comment] = ACTIONS(52),
},
[303] = {
[sym_file_descriptor] = ACTIONS(1124),
[sym__concat] = ACTIONS(1124),
[anon_sym_PIPE] = ACTIONS(1126),
[anon_sym_RPAREN] = ACTIONS(1126),
[anon_sym_SEMI_SEMI] = ACTIONS(1126),
[anon_sym_PIPE_AMP] = ACTIONS(1126),
[anon_sym_AMP_AMP] = ACTIONS(1126),
[anon_sym_PIPE_PIPE] = ACTIONS(1126),
[anon_sym_LT] = ACTIONS(1126),
[anon_sym_GT] = ACTIONS(1126),
[anon_sym_GT_GT] = ACTIONS(1126),
[anon_sym_AMP_GT] = ACTIONS(1126),
[anon_sym_AMP_GT_GT] = ACTIONS(1126),
[anon_sym_LT_AMP] = ACTIONS(1126),
[anon_sym_GT_AMP] = ACTIONS(1126),
[anon_sym_LT_LT] = ACTIONS(1126),
[anon_sym_LT_LT_DASH] = ACTIONS(1126),
[anon_sym_DQUOTE] = ACTIONS(1126),
[sym_raw_string] = ACTIONS(1126),
[anon_sym_DOLLAR] = ACTIONS(1126),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1126),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1126),
[anon_sym_BQUOTE] = ACTIONS(1126),
[anon_sym_LT_LPAREN] = ACTIONS(1126),
[anon_sym_GT_LPAREN] = ACTIONS(1126),
[sym_word] = ACTIONS(1126),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1126),
[anon_sym_LF] = ACTIONS(1126),
[anon_sym_AMP] = ACTIONS(1126),
},
[304] = {
[anon_sym_AT] = ACTIONS(1128),
[sym_comment] = ACTIONS(52),
},
[305] = {
[sym_concatenation] = STATE(574),
[sym_string] = STATE(573),
[sym_simple_expansion] = STATE(573),
[sym_expansion] = STATE(573),
[sym_command_substitution] = STATE(573),
[sym_process_substitution] = STATE(573),
[anon_sym_RBRACE] = ACTIONS(1130),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(1132),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(1134),
[sym_comment] = ACTIONS(52),
},
[306] = {
[sym_file_descriptor] = ACTIONS(1136),
[sym__concat] = ACTIONS(1136),
[anon_sym_PIPE] = ACTIONS(1138),
[anon_sym_RPAREN] = ACTIONS(1138),
[anon_sym_SEMI_SEMI] = ACTIONS(1138),
[anon_sym_PIPE_AMP] = ACTIONS(1138),
[anon_sym_AMP_AMP] = ACTIONS(1138),
[anon_sym_PIPE_PIPE] = ACTIONS(1138),
[anon_sym_LT] = ACTIONS(1138),
[anon_sym_GT] = ACTIONS(1138),
[anon_sym_GT_GT] = ACTIONS(1138),
[anon_sym_AMP_GT] = ACTIONS(1138),
[anon_sym_AMP_GT_GT] = ACTIONS(1138),
[anon_sym_LT_AMP] = ACTIONS(1138),
[anon_sym_GT_AMP] = ACTIONS(1138),
[anon_sym_LT_LT] = ACTIONS(1138),
[anon_sym_LT_LT_DASH] = ACTIONS(1138),
[anon_sym_DQUOTE] = ACTIONS(1138),
[sym_raw_string] = ACTIONS(1138),
[anon_sym_DOLLAR] = ACTIONS(1138),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1138),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1138),
[anon_sym_BQUOTE] = ACTIONS(1138),
[anon_sym_LT_LPAREN] = ACTIONS(1138),
[anon_sym_GT_LPAREN] = ACTIONS(1138),
[sym_word] = ACTIONS(1138),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1138),
[anon_sym_LF] = ACTIONS(1138),
[anon_sym_AMP] = ACTIONS(1138),
},
[307] = {
[anon_sym_AT] = ACTIONS(1140),
[sym_comment] = ACTIONS(52),
},
[308] = {
[sym_concatenation] = STATE(577),
[sym_string] = STATE(576),
[sym_simple_expansion] = STATE(576),
[sym_expansion] = STATE(576),
[sym_command_substitution] = STATE(576),
[sym_process_substitution] = STATE(576),
[anon_sym_RBRACE] = ACTIONS(1120),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(1142),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(1144),
[sym_comment] = ACTIONS(52),
},
[309] = {
[sym_concatenation] = STATE(578),
[sym_string] = STATE(581),
[sym_array] = STATE(578),
[sym_simple_expansion] = STATE(581),
[sym_expansion] = STATE(581),
[sym_command_substitution] = STATE(581),
[sym_process_substitution] = STATE(581),
[sym__empty_value] = ACTIONS(1146),
[anon_sym_LPAREN] = ACTIONS(1148),
[anon_sym_DQUOTE] = ACTIONS(1150),
[sym_raw_string] = ACTIONS(1152),
[anon_sym_DOLLAR] = ACTIONS(1154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1158),
[anon_sym_BQUOTE] = ACTIONS(1160),
[anon_sym_LT_LPAREN] = ACTIONS(1162),
[anon_sym_GT_LPAREN] = ACTIONS(1162),
[sym_word] = ACTIONS(1164),
[sym_comment] = ACTIONS(52),
},
[310] = {
[sym_file_descriptor] = ACTIONS(320),
[sym_variable_name] = ACTIONS(320),
[anon_sym_PIPE] = ACTIONS(1166),
[anon_sym_RPAREN] = ACTIONS(320),
[anon_sym_PIPE_AMP] = ACTIONS(320),
[anon_sym_AMP_AMP] = ACTIONS(320),
[anon_sym_PIPE_PIPE] = ACTIONS(1166),
[anon_sym_LT] = ACTIONS(1166),
[anon_sym_GT] = ACTIONS(1166),
[anon_sym_GT_GT] = ACTIONS(320),
[anon_sym_AMP_GT] = ACTIONS(1166),
[anon_sym_AMP_GT_GT] = ACTIONS(320),
[anon_sym_LT_AMP] = ACTIONS(320),
[anon_sym_GT_AMP] = ACTIONS(320),
[anon_sym_DQUOTE] = ACTIONS(320),
[sym_raw_string] = ACTIONS(320),
[anon_sym_DOLLAR] = ACTIONS(1166),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(320),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(320),
[anon_sym_BQUOTE] = ACTIONS(320),
[anon_sym_LT_LPAREN] = ACTIONS(320),
[anon_sym_GT_LPAREN] = ACTIONS(320),
[sym_word] = ACTIONS(322),
[sym_comment] = ACTIONS(52),
},
[311] = {
[anon_sym_in] = ACTIONS(1168),
[sym_comment] = ACTIONS(52),
},
[312] = {
[sym_do_group] = STATE(589),
[anon_sym_do] = ACTIONS(1170),
[sym_comment] = ACTIONS(52),
},
[313] = {
[anon_sym_then] = ACTIONS(1172),
[sym_comment] = ACTIONS(52),
},
[314] = {
[aux_sym_concatenation_repeat1] = STATE(193),
[sym__concat] = ACTIONS(334),
[anon_sym_in] = ACTIONS(1174),
[anon_sym_SEMI_SEMI] = ACTIONS(1176),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1176),
[anon_sym_LF] = ACTIONS(1176),
[anon_sym_AMP] = ACTIONS(1176),
},
[315] = {
[anon_sym_in] = ACTIONS(1174),
[anon_sym_SEMI_SEMI] = ACTIONS(1176),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1176),
[anon_sym_LF] = ACTIONS(1176),
[anon_sym_AMP] = ACTIONS(1176),
},
[316] = {
[sym_compound_statement] = STATE(594),
[anon_sym_LPAREN] = ACTIONS(1178),
[anon_sym_LBRACE] = ACTIONS(544),
[sym_comment] = ACTIONS(52),
},
[317] = {
[anon_sym_PIPE] = ACTIONS(362),
[anon_sym_RPAREN] = ACTIONS(1180),
[anon_sym_SEMI_SEMI] = ACTIONS(1182),
[anon_sym_PIPE_AMP] = ACTIONS(362),
[anon_sym_AMP_AMP] = ACTIONS(368),
[anon_sym_PIPE_PIPE] = ACTIONS(368),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1182),
[anon_sym_LF] = ACTIONS(1182),
[anon_sym_AMP] = ACTIONS(1182),
},
[318] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(362),
[anon_sym_RPAREN] = ACTIONS(1180),
[anon_sym_SEMI_SEMI] = ACTIONS(1182),
[anon_sym_PIPE_AMP] = ACTIONS(362),
[anon_sym_AMP_AMP] = ACTIONS(368),
[anon_sym_PIPE_PIPE] = ACTIONS(368),
[anon_sym_LT] = ACTIONS(270),
[anon_sym_GT] = ACTIONS(270),
[anon_sym_GT_GT] = ACTIONS(270),
[anon_sym_AMP_GT] = ACTIONS(270),
[anon_sym_AMP_GT_GT] = ACTIONS(270),
[anon_sym_LT_AMP] = ACTIONS(270),
[anon_sym_GT_AMP] = ACTIONS(270),
[anon_sym_DQUOTE] = ACTIONS(270),
[sym_raw_string] = ACTIONS(270),
[anon_sym_DOLLAR] = ACTIONS(270),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(270),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(270),
[anon_sym_BQUOTE] = ACTIONS(270),
[anon_sym_LT_LPAREN] = ACTIONS(270),
[anon_sym_GT_LPAREN] = ACTIONS(270),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1182),
[anon_sym_LF] = ACTIONS(1182),
[anon_sym_AMP] = ACTIONS(1182),
},
[319] = {
[sym__terminated_statement] = STATE(23),
[sym_for_statement] = STATE(597),
[sym_while_statement] = STATE(597),
[sym_if_statement] = STATE(597),
[sym_case_statement] = STATE(597),
[sym_function_definition] = STATE(597),
[sym_subshell] = STATE(597),
[sym_pipeline] = STATE(597),
[sym_list] = STATE(597),
[sym_bracket_command] = STATE(597),
[sym_command] = STATE(597),
[sym_command_name] = STATE(56),
[sym_variable_assignment] = STATE(598),
[sym_declaration_command] = STATE(597),
[sym_subscript] = STATE(58),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(53),
[sym_simple_expansion] = STATE(53),
[sym_expansion] = STATE(53),
[sym_command_substitution] = STATE(53),
[sym_process_substitution] = STATE(53),
[aux_sym_program_repeat1] = STATE(228),
[aux_sym_command_repeat1] = STATE(60),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(82),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(84),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(86),
[anon_sym_typeset] = ACTIONS(86),
[anon_sym_export] = ACTIONS(86),
[anon_sym_readonly] = ACTIONS(86),
[anon_sym_local] = ACTIONS(86),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(88),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(90),
[sym_comment] = ACTIONS(52),
},
[320] = {
[sym_concatenation] = STATE(68),
[sym_string] = STATE(62),
[sym_simple_expansion] = STATE(62),
[sym_expansion] = STATE(62),
[sym_command_substitution] = STATE(62),
[sym_process_substitution] = STATE(62),
[aux_sym_for_statement_repeat1] = STATE(247),
[anon_sym_RBRACK] = ACTIONS(1184),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(94),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(400),
[sym_comment] = ACTIONS(52),
},
[321] = {
[sym_concatenation] = STATE(77),
[sym_string] = STATE(71),
[sym_simple_expansion] = STATE(71),
[sym_expansion] = STATE(71),
[sym_command_substitution] = STATE(71),
[sym_process_substitution] = STATE(71),
[aux_sym_for_statement_repeat1] = STATE(264),
[anon_sym_RBRACK_RBRACK] = ACTIONS(1184),
[anon_sym_DQUOTE] = ACTIONS(108),
[sym_raw_string] = ACTIONS(110),
[anon_sym_DOLLAR] = ACTIONS(112),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(114),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(116),
[anon_sym_BQUOTE] = ACTIONS(118),
[anon_sym_LT_LPAREN] = ACTIONS(120),
[anon_sym_GT_LPAREN] = ACTIONS(120),
[sym_word] = ACTIONS(416),
[sym_comment] = ACTIONS(52),
},
[322] = {
[sym__assignment] = STATE(601),
[anon_sym_LBRACK] = ACTIONS(58),
[anon_sym_EQ] = ACTIONS(1186),
[anon_sym_PLUS_EQ] = ACTIONS(1186),
[sym_comment] = ACTIONS(52),
},
[323] = {
[sym_word] = ACTIONS(1188),
[sym_comment] = ACTIONS(52),
},
[324] = {
[sym_variable_name] = ACTIONS(422),
[anon_sym_PIPE] = ACTIONS(1190),
[anon_sym_RPAREN] = ACTIONS(422),
[anon_sym_PIPE_AMP] = ACTIONS(422),
[anon_sym_AMP_AMP] = ACTIONS(422),
[anon_sym_PIPE_PIPE] = ACTIONS(422),
[anon_sym_BQUOTE] = ACTIONS(422),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(1190),
},
[325] = {
[sym__assignment] = STATE(601),
[anon_sym_EQ] = ACTIONS(1186),
[anon_sym_PLUS_EQ] = ACTIONS(1186),
[sym_comment] = ACTIONS(52),
},
[326] = {
[sym_variable_assignment] = STATE(324),
[sym_subscript] = STATE(325),
[aux_sym_declaration_command_repeat1] = STATE(603),
[aux_sym_declaration_command_repeat2] = STATE(604),
[sym_variable_name] = ACTIONS(516),
[anon_sym_PIPE] = ACTIONS(1192),
[anon_sym_RPAREN] = ACTIONS(1194),
[anon_sym_PIPE_AMP] = ACTIONS(1194),
[anon_sym_AMP_AMP] = ACTIONS(1194),
[anon_sym_PIPE_PIPE] = ACTIONS(1194),
[anon_sym_DASH] = ACTIONS(522),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(524),
},
[327] = {
[sym_variable_assignment] = STATE(324),
[sym_subscript] = STATE(325),
[aux_sym_declaration_command_repeat2] = STATE(605),
[sym_variable_name] = ACTIONS(516),
[anon_sym_PIPE] = ACTIONS(1192),
[anon_sym_RPAREN] = ACTIONS(1194),
[anon_sym_PIPE_AMP] = ACTIONS(1194),
[anon_sym_AMP_AMP] = ACTIONS(1194),
[anon_sym_PIPE_PIPE] = ACTIONS(1194),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(524),
},
[328] = {
[sym_file_descriptor] = ACTIONS(446),
[sym__concat] = ACTIONS(446),
[anon_sym_PIPE] = ACTIONS(883),
[anon_sym_RPAREN] = ACTIONS(446),
[anon_sym_PIPE_AMP] = ACTIONS(446),
[anon_sym_AMP_AMP] = ACTIONS(446),
[anon_sym_PIPE_PIPE] = ACTIONS(883),
[anon_sym_LT] = ACTIONS(883),
[anon_sym_GT] = ACTIONS(883),
[anon_sym_GT_GT] = ACTIONS(446),
[anon_sym_AMP_GT] = ACTIONS(883),
[anon_sym_AMP_GT_GT] = ACTIONS(446),
[anon_sym_LT_AMP] = ACTIONS(446),
[anon_sym_GT_AMP] = ACTIONS(446),
[anon_sym_LT_LT] = ACTIONS(883),
[anon_sym_LT_LT_DASH] = ACTIONS(446),
[anon_sym_DQUOTE] = ACTIONS(446),
[sym_raw_string] = ACTIONS(446),
[anon_sym_DOLLAR] = ACTIONS(883),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(446),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(446),
[anon_sym_BQUOTE] = ACTIONS(446),
[anon_sym_LT_LPAREN] = ACTIONS(446),
[anon_sym_GT_LPAREN] = ACTIONS(446),
[sym_word] = ACTIONS(448),
[sym_comment] = ACTIONS(52),
},
[329] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(298),
[anon_sym_DQUOTE] = ACTIONS(1196),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[330] = {
[sym_string] = STATE(607),
[sym_simple_expansion] = STATE(607),
[sym_expansion] = STATE(607),
[sym_command_substitution] = STATE(607),
[sym_process_substitution] = STATE(607),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(1198),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(1200),
[sym_comment] = ACTIONS(52),
},
[331] = {
[aux_sym_concatenation_repeat1] = STATE(608),
[sym_file_descriptor] = ACTIONS(470),
[sym__concat] = ACTIONS(528),
[anon_sym_PIPE] = ACTIONS(891),
[anon_sym_RPAREN] = ACTIONS(470),
[anon_sym_PIPE_AMP] = ACTIONS(470),
[anon_sym_AMP_AMP] = ACTIONS(470),
[anon_sym_PIPE_PIPE] = ACTIONS(891),
[anon_sym_LT] = ACTIONS(891),
[anon_sym_GT] = ACTIONS(891),
[anon_sym_GT_GT] = ACTIONS(470),
[anon_sym_AMP_GT] = ACTIONS(891),
[anon_sym_AMP_GT_GT] = ACTIONS(470),
[anon_sym_LT_AMP] = ACTIONS(470),
[anon_sym_GT_AMP] = ACTIONS(470),
[anon_sym_LT_LT] = ACTIONS(891),
[anon_sym_LT_LT_DASH] = ACTIONS(470),
[anon_sym_DQUOTE] = ACTIONS(470),
[sym_raw_string] = ACTIONS(470),
[anon_sym_DOLLAR] = ACTIONS(891),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(470),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(470),
[anon_sym_BQUOTE] = ACTIONS(470),
[anon_sym_LT_LPAREN] = ACTIONS(470),
[anon_sym_GT_LPAREN] = ACTIONS(470),
[sym_word] = ACTIONS(472),
[sym_comment] = ACTIONS(52),
},
[332] = {
[sym_file_descriptor] = ACTIONS(474),
[sym__concat] = ACTIONS(474),
[anon_sym_PIPE] = ACTIONS(486),
[anon_sym_RPAREN] = ACTIONS(474),
[anon_sym_PIPE_AMP] = ACTIONS(474),
[anon_sym_AMP_AMP] = ACTIONS(474),
[anon_sym_PIPE_PIPE] = ACTIONS(486),
[anon_sym_LT] = ACTIONS(486),
[anon_sym_GT] = ACTIONS(486),
[anon_sym_GT_GT] = ACTIONS(474),
[anon_sym_AMP_GT] = ACTIONS(486),
[anon_sym_AMP_GT_GT] = ACTIONS(474),
[anon_sym_LT_AMP] = ACTIONS(474),
[anon_sym_GT_AMP] = ACTIONS(474),
[anon_sym_LT_LT] = ACTIONS(486),
[anon_sym_LT_LT_DASH] = ACTIONS(474),
[anon_sym_DQUOTE] = ACTIONS(474),
[sym_raw_string] = ACTIONS(474),
[anon_sym_DOLLAR] = ACTIONS(486),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(474),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(474),
[anon_sym_BQUOTE] = ACTIONS(474),
[anon_sym_LT_LPAREN] = ACTIONS(474),
[anon_sym_GT_LPAREN] = ACTIONS(474),
[sym_word] = ACTIONS(476),
[sym_comment] = ACTIONS(52),
},
[333] = {
[sym_file_descriptor] = ACTIONS(478),
[sym__concat] = ACTIONS(478),
[anon_sym_PIPE] = ACTIONS(893),
[anon_sym_RPAREN] = ACTIONS(478),
[anon_sym_PIPE_AMP] = ACTIONS(478),
[anon_sym_AMP_AMP] = ACTIONS(478),
[anon_sym_PIPE_PIPE] = ACTIONS(893),
[anon_sym_LT] = ACTIONS(893),
[anon_sym_GT] = ACTIONS(893),
[anon_sym_GT_GT] = ACTIONS(478),
[anon_sym_AMP_GT] = ACTIONS(893),
[anon_sym_AMP_GT_GT] = ACTIONS(478),
[anon_sym_LT_AMP] = ACTIONS(478),
[anon_sym_GT_AMP] = ACTIONS(478),
[anon_sym_LT_LT] = ACTIONS(893),
[anon_sym_LT_LT_DASH] = ACTIONS(478),
[anon_sym_DQUOTE] = ACTIONS(478),
[sym_raw_string] = ACTIONS(478),
[anon_sym_DOLLAR] = ACTIONS(893),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(478),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(478),
[anon_sym_BQUOTE] = ACTIONS(478),
[anon_sym_LT_LPAREN] = ACTIONS(478),
[anon_sym_GT_LPAREN] = ACTIONS(478),
[sym_word] = ACTIONS(480),
[sym_comment] = ACTIONS(52),
},
[334] = {
[sym_file_descriptor] = ACTIONS(482),
[sym__concat] = ACTIONS(482),
[anon_sym_PIPE] = ACTIONS(895),
[anon_sym_RPAREN] = ACTIONS(482),
[anon_sym_PIPE_AMP] = ACTIONS(482),
[anon_sym_AMP_AMP] = ACTIONS(482),
[anon_sym_PIPE_PIPE] = ACTIONS(895),
[anon_sym_LT] = ACTIONS(895),
[anon_sym_GT] = ACTIONS(895),
[anon_sym_GT_GT] = ACTIONS(482),
[anon_sym_AMP_GT] = ACTIONS(895),
[anon_sym_AMP_GT_GT] = ACTIONS(482),
[anon_sym_LT_AMP] = ACTIONS(482),
[anon_sym_GT_AMP] = ACTIONS(482),
[anon_sym_LT_LT] = ACTIONS(895),
[anon_sym_LT_LT_DASH] = ACTIONS(482),
[anon_sym_DQUOTE] = ACTIONS(482),
[sym_raw_string] = ACTIONS(482),
[anon_sym_DOLLAR] = ACTIONS(895),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(482),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(482),
[anon_sym_BQUOTE] = ACTIONS(482),
[anon_sym_LT_LPAREN] = ACTIONS(482),
[anon_sym_GT_LPAREN] = ACTIONS(482),
[sym_word] = ACTIONS(484),
[sym_comment] = ACTIONS(52),
},
[335] = {
[sym_special_variable_name] = STATE(610),
[anon_sym_RBRACE] = ACTIONS(474),
[anon_sym_LBRACK] = ACTIONS(474),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_EQ] = ACTIONS(474),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(174),
[anon_sym_AT] = ACTIONS(174),
[anon_sym_COLON] = ACTIONS(486),
[anon_sym_COLON_QMARK] = ACTIONS(474),
[anon_sym_COLON_DASH] = ACTIONS(474),
[anon_sym_PERCENT] = ACTIONS(474),
[anon_sym_SLASH] = ACTIONS(474),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1202),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[336] = {
[anon_sym_RBRACE] = ACTIONS(1204),
[anon_sym_LBRACK] = ACTIONS(1206),
[anon_sym_EQ] = ACTIONS(1208),
[anon_sym_COLON] = ACTIONS(1210),
[anon_sym_COLON_QMARK] = ACTIONS(1208),
[anon_sym_COLON_DASH] = ACTIONS(1208),
[anon_sym_PERCENT] = ACTIONS(1208),
[anon_sym_SLASH] = ACTIONS(1208),
[sym_comment] = ACTIONS(52),
},
[337] = {
[anon_sym_RBRACE] = ACTIONS(1212),
[anon_sym_LBRACK] = ACTIONS(1214),
[anon_sym_EQ] = ACTIONS(1216),
[anon_sym_COLON] = ACTIONS(1218),
[anon_sym_COLON_QMARK] = ACTIONS(1216),
[anon_sym_COLON_DASH] = ACTIONS(1216),
[anon_sym_PERCENT] = ACTIONS(1216),
[anon_sym_SLASH] = ACTIONS(1216),
[sym_comment] = ACTIONS(52),
},
[338] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(1220),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[339] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(1220),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[340] = {
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(588),
[anon_sym_BQUOTE] = ACTIONS(1220),
[sym_comment] = ACTIONS(52),
},
[341] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(600),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(1220),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[342] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(1222),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[343] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(1222),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[344] = {
[anon_sym_RPAREN] = ACTIONS(1224),
[sym_comment] = ACTIONS(52),
},
[345] = {
[sym__terminated_statement] = STATE(23),
[sym_for_statement] = STATE(24),
[sym_while_statement] = STATE(24),
[sym_if_statement] = STATE(24),
[sym_case_statement] = STATE(24),
[sym_function_definition] = STATE(24),
[sym_subshell] = STATE(24),
[sym_pipeline] = STATE(24),
[sym_list] = STATE(24),
[sym_bracket_command] = STATE(24),
[sym_command] = STATE(24),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(26),
[sym_declaration_command] = STATE(24),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(621),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_RBRACE] = ACTIONS(1226),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[346] = {
[sym_file_redirect] = STATE(624),
[sym_file_descriptor] = ACTIONS(1228),
[anon_sym_PIPE] = ACTIONS(1230),
[anon_sym_RPAREN] = ACTIONS(1232),
[anon_sym_PIPE_AMP] = ACTIONS(1232),
[anon_sym_AMP_AMP] = ACTIONS(1232),
[anon_sym_PIPE_PIPE] = ACTIONS(1232),
[anon_sym_LT] = ACTIONS(1234),
[anon_sym_GT] = ACTIONS(1234),
[anon_sym_GT_GT] = ACTIONS(1236),
[anon_sym_AMP_GT] = ACTIONS(1234),
[anon_sym_AMP_GT_GT] = ACTIONS(1236),
[anon_sym_LT_AMP] = ACTIONS(1236),
[anon_sym_GT_AMP] = ACTIONS(1236),
[sym_comment] = ACTIONS(52),
},
[347] = {
[sym_for_statement] = STATE(625),
[sym_while_statement] = STATE(625),
[sym_if_statement] = STATE(625),
[sym_case_statement] = STATE(625),
[sym_function_definition] = STATE(625),
[sym_subshell] = STATE(625),
[sym_pipeline] = STATE(625),
[sym_list] = STATE(625),
[sym_bracket_command] = STATE(625),
[sym_command] = STATE(625),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(626),
[sym_declaration_command] = STATE(625),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[348] = {
[sym_file_descriptor] = ACTIONS(1238),
[sym__concat] = ACTIONS(1238),
[anon_sym_PIPE] = ACTIONS(1240),
[anon_sym_RPAREN] = ACTIONS(1240),
[anon_sym_SEMI_SEMI] = ACTIONS(1240),
[anon_sym_PIPE_AMP] = ACTIONS(1240),
[anon_sym_AMP_AMP] = ACTIONS(1240),
[anon_sym_PIPE_PIPE] = ACTIONS(1240),
[anon_sym_LT] = ACTIONS(1240),
[anon_sym_GT] = ACTIONS(1240),
[anon_sym_GT_GT] = ACTIONS(1240),
[anon_sym_AMP_GT] = ACTIONS(1240),
[anon_sym_AMP_GT_GT] = ACTIONS(1240),
[anon_sym_LT_AMP] = ACTIONS(1240),
[anon_sym_GT_AMP] = ACTIONS(1240),
[anon_sym_LT_LT] = ACTIONS(1240),
[anon_sym_LT_LT_DASH] = ACTIONS(1240),
[anon_sym_DQUOTE] = ACTIONS(1240),
[sym_raw_string] = ACTIONS(1240),
[anon_sym_DOLLAR] = ACTIONS(1240),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1240),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1240),
[anon_sym_BQUOTE] = ACTIONS(1240),
[anon_sym_LT_LPAREN] = ACTIONS(1240),
[anon_sym_GT_LPAREN] = ACTIONS(1240),
[sym_word] = ACTIONS(1240),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1240),
[anon_sym_LF] = ACTIONS(1240),
[anon_sym_AMP] = ACTIONS(1240),
},
[349] = {
[sym_for_statement] = STATE(627),
[sym_while_statement] = STATE(627),
[sym_if_statement] = STATE(627),
[sym_case_statement] = STATE(627),
[sym_function_definition] = STATE(627),
[sym_subshell] = STATE(627),
[sym_pipeline] = STATE(627),
[sym_list] = STATE(627),
[sym_bracket_command] = STATE(627),
[sym_command] = STATE(627),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(628),
[sym_declaration_command] = STATE(627),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[350] = {
[anon_sym_LT] = ACTIONS(1242),
[anon_sym_GT] = ACTIONS(1242),
[anon_sym_GT_GT] = ACTIONS(1244),
[anon_sym_AMP_GT] = ACTIONS(1242),
[anon_sym_AMP_GT_GT] = ACTIONS(1244),
[anon_sym_LT_AMP] = ACTIONS(1244),
[anon_sym_GT_AMP] = ACTIONS(1244),
[sym_comment] = ACTIONS(52),
},
[351] = {
[sym_concatenation] = STATE(637),
[sym_string] = STATE(631),
[sym_simple_expansion] = STATE(631),
[sym_expansion] = STATE(631),
[sym_command_substitution] = STATE(631),
[sym_process_substitution] = STATE(631),
[anon_sym_DQUOTE] = ACTIONS(1246),
[sym_raw_string] = ACTIONS(1248),
[anon_sym_DOLLAR] = ACTIONS(1250),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1252),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1254),
[anon_sym_BQUOTE] = ACTIONS(1256),
[anon_sym_LT_LPAREN] = ACTIONS(1258),
[anon_sym_GT_LPAREN] = ACTIONS(1258),
[sym_word] = ACTIONS(1260),
[sym_comment] = ACTIONS(52),
},
[352] = {
[sym_heredoc] = STATE(640),
[sym__simple_heredoc] = ACTIONS(1262),
[sym__heredoc_beginning] = ACTIONS(1264),
[sym_comment] = ACTIONS(52),
},
[353] = {
[aux_sym_concatenation_repeat1] = STATE(331),
[sym_file_descriptor] = ACTIONS(384),
[sym__concat] = ACTIONS(528),
[anon_sym_PIPE] = ACTIONS(382),
[anon_sym_RPAREN] = ACTIONS(384),
[anon_sym_PIPE_AMP] = ACTIONS(384),
[anon_sym_AMP_AMP] = ACTIONS(384),
[anon_sym_PIPE_PIPE] = ACTIONS(382),
[anon_sym_LT] = ACTIONS(382),
[anon_sym_GT] = ACTIONS(382),
[anon_sym_GT_GT] = ACTIONS(384),
[anon_sym_AMP_GT] = ACTIONS(382),
[anon_sym_AMP_GT_GT] = ACTIONS(384),
[anon_sym_LT_AMP] = ACTIONS(384),
[anon_sym_GT_AMP] = ACTIONS(384),
[anon_sym_LT_LT] = ACTIONS(382),
[anon_sym_LT_LT_DASH] = ACTIONS(384),
[anon_sym_DQUOTE] = ACTIONS(384),
[sym_raw_string] = ACTIONS(384),
[anon_sym_DOLLAR] = ACTIONS(382),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(384),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(384),
[anon_sym_BQUOTE] = ACTIONS(384),
[anon_sym_LT_LPAREN] = ACTIONS(384),
[anon_sym_GT_LPAREN] = ACTIONS(384),
[sym_word] = ACTIONS(386),
[sym_comment] = ACTIONS(52),
},
[354] = {
[sym_file_descriptor] = ACTIONS(646),
[anon_sym_PIPE] = ACTIONS(1266),
[anon_sym_RPAREN] = ACTIONS(646),
[anon_sym_PIPE_AMP] = ACTIONS(646),
[anon_sym_AMP_AMP] = ACTIONS(646),
[anon_sym_PIPE_PIPE] = ACTIONS(646),
[anon_sym_LT] = ACTIONS(1266),
[anon_sym_GT] = ACTIONS(1266),
[anon_sym_GT_GT] = ACTIONS(646),
[anon_sym_AMP_GT] = ACTIONS(1266),
[anon_sym_AMP_GT_GT] = ACTIONS(646),
[anon_sym_LT_AMP] = ACTIONS(646),
[anon_sym_GT_AMP] = ACTIONS(646),
[anon_sym_LT_LT] = ACTIONS(1266),
[anon_sym_LT_LT_DASH] = ACTIONS(646),
[anon_sym_BQUOTE] = ACTIONS(646),
[sym_comment] = ACTIONS(52),
},
[355] = {
[sym_file_descriptor] = ACTIONS(384),
[anon_sym_PIPE] = ACTIONS(382),
[anon_sym_RPAREN] = ACTIONS(384),
[anon_sym_PIPE_AMP] = ACTIONS(384),
[anon_sym_AMP_AMP] = ACTIONS(384),
[anon_sym_PIPE_PIPE] = ACTIONS(382),
[anon_sym_LT] = ACTIONS(382),
[anon_sym_GT] = ACTIONS(382),
[anon_sym_GT_GT] = ACTIONS(384),
[anon_sym_AMP_GT] = ACTIONS(382),
[anon_sym_AMP_GT_GT] = ACTIONS(384),
[anon_sym_LT_AMP] = ACTIONS(384),
[anon_sym_GT_AMP] = ACTIONS(384),
[anon_sym_LT_LT] = ACTIONS(382),
[anon_sym_LT_LT_DASH] = ACTIONS(384),
[anon_sym_DQUOTE] = ACTIONS(384),
[sym_raw_string] = ACTIONS(384),
[anon_sym_DOLLAR] = ACTIONS(382),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(384),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(384),
[anon_sym_BQUOTE] = ACTIONS(384),
[anon_sym_LT_LPAREN] = ACTIONS(384),
[anon_sym_GT_LPAREN] = ACTIONS(384),
[sym_word] = ACTIONS(386),
[sym_comment] = ACTIONS(52),
},
[356] = {
[sym_file_redirect] = STATE(354),
[sym_heredoc_redirect] = STATE(354),
[sym_concatenation] = STATE(355),
[sym_string] = STATE(353),
[sym_simple_expansion] = STATE(353),
[sym_expansion] = STATE(353),
[sym_command_substitution] = STATE(353),
[sym_process_substitution] = STATE(353),
[aux_sym_for_statement_repeat1] = STATE(641),
[aux_sym_command_repeat2] = STATE(642),
[sym_file_descriptor] = ACTIONS(554),
[anon_sym_PIPE] = ACTIONS(1268),
[anon_sym_RPAREN] = ACTIONS(1270),
[anon_sym_PIPE_AMP] = ACTIONS(1270),
[anon_sym_AMP_AMP] = ACTIONS(1270),
[anon_sym_PIPE_PIPE] = ACTIONS(1268),
[anon_sym_LT] = ACTIONS(560),
[anon_sym_GT] = ACTIONS(560),
[anon_sym_GT_GT] = ACTIONS(562),
[anon_sym_AMP_GT] = ACTIONS(560),
[anon_sym_AMP_GT_GT] = ACTIONS(562),
[anon_sym_LT_AMP] = ACTIONS(562),
[anon_sym_GT_AMP] = ACTIONS(562),
[anon_sym_LT_LT] = ACTIONS(564),
[anon_sym_LT_LT_DASH] = ACTIONS(566),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(568),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(570),
[sym_comment] = ACTIONS(52),
},
[357] = {
[sym_file_redirect] = STATE(354),
[sym_heredoc_redirect] = STATE(354),
[aux_sym_command_repeat2] = STATE(643),
[sym_file_descriptor] = ACTIONS(554),
[anon_sym_PIPE] = ACTIONS(1268),
[anon_sym_RPAREN] = ACTIONS(1270),
[anon_sym_PIPE_AMP] = ACTIONS(1270),
[anon_sym_AMP_AMP] = ACTIONS(1270),
[anon_sym_PIPE_PIPE] = ACTIONS(1270),
[anon_sym_LT] = ACTIONS(560),
[anon_sym_GT] = ACTIONS(560),
[anon_sym_GT_GT] = ACTIONS(562),
[anon_sym_AMP_GT] = ACTIONS(560),
[anon_sym_AMP_GT_GT] = ACTIONS(562),
[anon_sym_LT_AMP] = ACTIONS(562),
[anon_sym_GT_AMP] = ACTIONS(562),
[anon_sym_LT_LT] = ACTIONS(564),
[anon_sym_LT_LT_DASH] = ACTIONS(566),
[sym_comment] = ACTIONS(52),
},
[358] = {
[sym_file_redirect] = STATE(354),
[sym_heredoc_redirect] = STATE(354),
[sym_concatenation] = STATE(355),
[sym_string] = STATE(353),
[sym_simple_expansion] = STATE(353),
[sym_expansion] = STATE(353),
[sym_command_substitution] = STATE(353),
[sym_process_substitution] = STATE(353),
[aux_sym_for_statement_repeat1] = STATE(644),
[aux_sym_command_repeat2] = STATE(642),
[sym_file_descriptor] = ACTIONS(554),
[anon_sym_PIPE] = ACTIONS(1268),
[anon_sym_RPAREN] = ACTIONS(1270),
[anon_sym_PIPE_AMP] = ACTIONS(1270),
[anon_sym_AMP_AMP] = ACTIONS(1270),
[anon_sym_PIPE_PIPE] = ACTIONS(1268),
[anon_sym_LT] = ACTIONS(560),
[anon_sym_GT] = ACTIONS(560),
[anon_sym_GT_GT] = ACTIONS(562),
[anon_sym_AMP_GT] = ACTIONS(560),
[anon_sym_AMP_GT_GT] = ACTIONS(562),
[anon_sym_LT_AMP] = ACTIONS(562),
[anon_sym_GT_AMP] = ACTIONS(562),
[anon_sym_LT_LT] = ACTIONS(564),
[anon_sym_LT_LT_DASH] = ACTIONS(566),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(568),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(570),
[sym_comment] = ACTIONS(52),
},
[359] = {
[sym_concatenation] = STATE(578),
[sym_string] = STATE(645),
[sym_array] = STATE(578),
[sym_simple_expansion] = STATE(645),
[sym_expansion] = STATE(645),
[sym_command_substitution] = STATE(645),
[sym_process_substitution] = STATE(645),
[sym__empty_value] = ACTIONS(1146),
[anon_sym_LPAREN] = ACTIONS(1148),
[anon_sym_DQUOTE] = ACTIONS(1150),
[sym_raw_string] = ACTIONS(1272),
[anon_sym_DOLLAR] = ACTIONS(1154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1158),
[anon_sym_BQUOTE] = ACTIONS(1160),
[anon_sym_LT_LPAREN] = ACTIONS(1162),
[anon_sym_GT_LPAREN] = ACTIONS(1162),
[sym_word] = ACTIONS(1274),
[sym_comment] = ACTIONS(52),
},
[360] = {
[sym_compound_statement] = STATE(647),
[anon_sym_LPAREN] = ACTIONS(1276),
[anon_sym_LBRACE] = ACTIONS(544),
[sym_comment] = ACTIONS(52),
},
[361] = {
[sym__assignment] = STATE(601),
[anon_sym_LBRACK] = ACTIONS(58),
[anon_sym_EQ] = ACTIONS(1278),
[anon_sym_PLUS_EQ] = ACTIONS(1278),
[sym_comment] = ACTIONS(52),
},
[362] = {
[sym__assignment] = STATE(601),
[anon_sym_EQ] = ACTIONS(1278),
[anon_sym_PLUS_EQ] = ACTIONS(1278),
[sym_comment] = ACTIONS(52),
},
[363] = {
[sym_variable_assignment] = STATE(324),
[sym_subscript] = STATE(362),
[aux_sym_declaration_command_repeat1] = STATE(649),
[aux_sym_declaration_command_repeat2] = STATE(650),
[sym_variable_name] = ACTIONS(580),
[anon_sym_PIPE] = ACTIONS(1192),
[anon_sym_PIPE_AMP] = ACTIONS(1194),
[anon_sym_AMP_AMP] = ACTIONS(1194),
[anon_sym_PIPE_PIPE] = ACTIONS(1194),
[anon_sym_DASH] = ACTIONS(522),
[anon_sym_BQUOTE] = ACTIONS(1194),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(524),
},
[364] = {
[sym_variable_assignment] = STATE(324),
[sym_subscript] = STATE(362),
[aux_sym_declaration_command_repeat2] = STATE(651),
[sym_variable_name] = ACTIONS(580),
[anon_sym_PIPE] = ACTIONS(1192),
[anon_sym_PIPE_AMP] = ACTIONS(1194),
[anon_sym_AMP_AMP] = ACTIONS(1194),
[anon_sym_PIPE_PIPE] = ACTIONS(1194),
[anon_sym_BQUOTE] = ACTIONS(1194),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(524),
},
[365] = {
[aux_sym_concatenation_repeat1] = STATE(652),
[sym_file_descriptor] = ACTIONS(470),
[sym__concat] = ACTIONS(528),
[anon_sym_PIPE] = ACTIONS(891),
[anon_sym_PIPE_AMP] = ACTIONS(470),
[anon_sym_AMP_AMP] = ACTIONS(470),
[anon_sym_PIPE_PIPE] = ACTIONS(891),
[anon_sym_LT] = ACTIONS(891),
[anon_sym_GT] = ACTIONS(891),
[anon_sym_GT_GT] = ACTIONS(470),
[anon_sym_AMP_GT] = ACTIONS(891),
[anon_sym_AMP_GT_GT] = ACTIONS(470),
[anon_sym_LT_AMP] = ACTIONS(470),
[anon_sym_GT_AMP] = ACTIONS(470),
[anon_sym_LT_LT] = ACTIONS(891),
[anon_sym_LT_LT_DASH] = ACTIONS(470),
[anon_sym_DQUOTE] = ACTIONS(470),
[sym_raw_string] = ACTIONS(470),
[anon_sym_DOLLAR] = ACTIONS(891),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(470),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(470),
[anon_sym_BQUOTE] = ACTIONS(470),
[anon_sym_LT_LPAREN] = ACTIONS(470),
[anon_sym_GT_LPAREN] = ACTIONS(470),
[sym_word] = ACTIONS(472),
[sym_comment] = ACTIONS(52),
},
[366] = {
[anon_sym_RPAREN] = ACTIONS(1280),
[sym_comment] = ACTIONS(52),
},
[367] = {
[sym_file_redirect] = STATE(624),
[sym_file_descriptor] = ACTIONS(1282),
[anon_sym_PIPE] = ACTIONS(1230),
[anon_sym_PIPE_AMP] = ACTIONS(1232),
[anon_sym_AMP_AMP] = ACTIONS(1232),
[anon_sym_PIPE_PIPE] = ACTIONS(1232),
[anon_sym_LT] = ACTIONS(1284),
[anon_sym_GT] = ACTIONS(1284),
[anon_sym_GT_GT] = ACTIONS(1286),
[anon_sym_AMP_GT] = ACTIONS(1284),
[anon_sym_AMP_GT_GT] = ACTIONS(1286),
[anon_sym_LT_AMP] = ACTIONS(1286),
[anon_sym_GT_AMP] = ACTIONS(1286),
[anon_sym_BQUOTE] = ACTIONS(1232),
[sym_comment] = ACTIONS(52),
},
[368] = {
[sym_for_statement] = STATE(625),
[sym_while_statement] = STATE(625),
[sym_if_statement] = STATE(625),
[sym_case_statement] = STATE(625),
[sym_function_definition] = STATE(625),
[sym_subshell] = STATE(625),
[sym_pipeline] = STATE(625),
[sym_list] = STATE(625),
[sym_bracket_command] = STATE(625),
[sym_command] = STATE(625),
[sym_command_name] = STATE(139),
[sym_variable_assignment] = STATE(656),
[sym_declaration_command] = STATE(625),
[sym_subscript] = STATE(141),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(136),
[sym_simple_expansion] = STATE(136),
[sym_expansion] = STATE(136),
[sym_command_substitution] = STATE(136),
[sym_process_substitution] = STATE(136),
[aux_sym_command_repeat1] = STATE(142),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(218),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(220),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(222),
[anon_sym_typeset] = ACTIONS(222),
[anon_sym_export] = ACTIONS(222),
[anon_sym_readonly] = ACTIONS(222),
[anon_sym_local] = ACTIONS(222),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(224),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(226),
[sym_comment] = ACTIONS(52),
},
[369] = {
[sym_for_statement] = STATE(657),
[sym_while_statement] = STATE(657),
[sym_if_statement] = STATE(657),
[sym_case_statement] = STATE(657),
[sym_function_definition] = STATE(657),
[sym_subshell] = STATE(657),
[sym_pipeline] = STATE(657),
[sym_list] = STATE(657),
[sym_bracket_command] = STATE(657),
[sym_command] = STATE(657),
[sym_command_name] = STATE(139),
[sym_variable_assignment] = STATE(658),
[sym_declaration_command] = STATE(657),
[sym_subscript] = STATE(141),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(136),
[sym_simple_expansion] = STATE(136),
[sym_expansion] = STATE(136),
[sym_command_substitution] = STATE(136),
[sym_process_substitution] = STATE(136),
[aux_sym_command_repeat1] = STATE(142),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(218),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(220),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(222),
[anon_sym_typeset] = ACTIONS(222),
[anon_sym_export] = ACTIONS(222),
[anon_sym_readonly] = ACTIONS(222),
[anon_sym_local] = ACTIONS(222),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(224),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(226),
[sym_comment] = ACTIONS(52),
},
[370] = {
[anon_sym_LT] = ACTIONS(1288),
[anon_sym_GT] = ACTIONS(1288),
[anon_sym_GT_GT] = ACTIONS(1290),
[anon_sym_AMP_GT] = ACTIONS(1288),
[anon_sym_AMP_GT_GT] = ACTIONS(1290),
[anon_sym_LT_AMP] = ACTIONS(1290),
[anon_sym_GT_AMP] = ACTIONS(1290),
[sym_comment] = ACTIONS(52),
},
[371] = {
[sym_concatenation] = STATE(637),
[sym_string] = STATE(660),
[sym_simple_expansion] = STATE(660),
[sym_expansion] = STATE(660),
[sym_command_substitution] = STATE(660),
[sym_process_substitution] = STATE(660),
[anon_sym_DQUOTE] = ACTIONS(1246),
[sym_raw_string] = ACTIONS(1292),
[anon_sym_DOLLAR] = ACTIONS(1250),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1252),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1254),
[anon_sym_BQUOTE] = ACTIONS(1256),
[anon_sym_LT_LPAREN] = ACTIONS(1258),
[anon_sym_GT_LPAREN] = ACTIONS(1258),
[sym_word] = ACTIONS(1294),
[sym_comment] = ACTIONS(52),
},
[372] = {
[aux_sym_concatenation_repeat1] = STATE(365),
[sym_file_descriptor] = ACTIONS(384),
[sym__concat] = ACTIONS(528),
[anon_sym_PIPE] = ACTIONS(382),
[anon_sym_PIPE_AMP] = ACTIONS(384),
[anon_sym_AMP_AMP] = ACTIONS(384),
[anon_sym_PIPE_PIPE] = ACTIONS(382),
[anon_sym_LT] = ACTIONS(382),
[anon_sym_GT] = ACTIONS(382),
[anon_sym_GT_GT] = ACTIONS(384),
[anon_sym_AMP_GT] = ACTIONS(382),
[anon_sym_AMP_GT_GT] = ACTIONS(384),
[anon_sym_LT_AMP] = ACTIONS(384),
[anon_sym_GT_AMP] = ACTIONS(384),
[anon_sym_LT_LT] = ACTIONS(382),
[anon_sym_LT_LT_DASH] = ACTIONS(384),
[anon_sym_DQUOTE] = ACTIONS(384),
[sym_raw_string] = ACTIONS(384),
[anon_sym_DOLLAR] = ACTIONS(382),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(384),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(384),
[anon_sym_BQUOTE] = ACTIONS(384),
[anon_sym_LT_LPAREN] = ACTIONS(384),
[anon_sym_GT_LPAREN] = ACTIONS(384),
[sym_word] = ACTIONS(386),
[sym_comment] = ACTIONS(52),
},
[373] = {
[sym_file_redirect] = STATE(354),
[sym_heredoc_redirect] = STATE(354),
[sym_concatenation] = STATE(355),
[sym_string] = STATE(372),
[sym_simple_expansion] = STATE(372),
[sym_expansion] = STATE(372),
[sym_command_substitution] = STATE(372),
[sym_process_substitution] = STATE(372),
[aux_sym_for_statement_repeat1] = STATE(661),
[aux_sym_command_repeat2] = STATE(662),
[sym_file_descriptor] = ACTIONS(590),
[anon_sym_PIPE] = ACTIONS(1268),
[anon_sym_PIPE_AMP] = ACTIONS(1270),
[anon_sym_AMP_AMP] = ACTIONS(1270),
[anon_sym_PIPE_PIPE] = ACTIONS(1268),
[anon_sym_LT] = ACTIONS(592),
[anon_sym_GT] = ACTIONS(592),
[anon_sym_GT_GT] = ACTIONS(594),
[anon_sym_AMP_GT] = ACTIONS(592),
[anon_sym_AMP_GT_GT] = ACTIONS(594),
[anon_sym_LT_AMP] = ACTIONS(594),
[anon_sym_GT_AMP] = ACTIONS(594),
[anon_sym_LT_LT] = ACTIONS(564),
[anon_sym_LT_LT_DASH] = ACTIONS(566),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(596),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(1270),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(598),
[sym_comment] = ACTIONS(52),
},
[374] = {
[sym_file_redirect] = STATE(354),
[sym_heredoc_redirect] = STATE(354),
[aux_sym_command_repeat2] = STATE(663),
[sym_file_descriptor] = ACTIONS(590),
[anon_sym_PIPE] = ACTIONS(1268),
[anon_sym_PIPE_AMP] = ACTIONS(1270),
[anon_sym_AMP_AMP] = ACTIONS(1270),
[anon_sym_PIPE_PIPE] = ACTIONS(1270),
[anon_sym_LT] = ACTIONS(592),
[anon_sym_GT] = ACTIONS(592),
[anon_sym_GT_GT] = ACTIONS(594),
[anon_sym_AMP_GT] = ACTIONS(592),
[anon_sym_AMP_GT_GT] = ACTIONS(594),
[anon_sym_LT_AMP] = ACTIONS(594),
[anon_sym_GT_AMP] = ACTIONS(594),
[anon_sym_LT_LT] = ACTIONS(564),
[anon_sym_LT_LT_DASH] = ACTIONS(566),
[anon_sym_BQUOTE] = ACTIONS(1270),
[sym_comment] = ACTIONS(52),
},
[375] = {
[sym_file_redirect] = STATE(354),
[sym_heredoc_redirect] = STATE(354),
[sym_concatenation] = STATE(355),
[sym_string] = STATE(372),
[sym_simple_expansion] = STATE(372),
[sym_expansion] = STATE(372),
[sym_command_substitution] = STATE(372),
[sym_process_substitution] = STATE(372),
[aux_sym_for_statement_repeat1] = STATE(664),
[aux_sym_command_repeat2] = STATE(662),
[sym_file_descriptor] = ACTIONS(590),
[anon_sym_PIPE] = ACTIONS(1268),
[anon_sym_PIPE_AMP] = ACTIONS(1270),
[anon_sym_AMP_AMP] = ACTIONS(1270),
[anon_sym_PIPE_PIPE] = ACTIONS(1268),
[anon_sym_LT] = ACTIONS(592),
[anon_sym_GT] = ACTIONS(592),
[anon_sym_GT_GT] = ACTIONS(594),
[anon_sym_AMP_GT] = ACTIONS(592),
[anon_sym_AMP_GT_GT] = ACTIONS(594),
[anon_sym_LT_AMP] = ACTIONS(594),
[anon_sym_GT_AMP] = ACTIONS(594),
[anon_sym_LT_LT] = ACTIONS(564),
[anon_sym_LT_LT_DASH] = ACTIONS(566),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(596),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(1270),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(598),
[sym_comment] = ACTIONS(52),
},
[376] = {
[sym_file_descriptor] = ACTIONS(1296),
[sym__concat] = ACTIONS(1296),
[anon_sym_PIPE] = ACTIONS(1298),
[anon_sym_RPAREN] = ACTIONS(1298),
[anon_sym_SEMI_SEMI] = ACTIONS(1298),
[anon_sym_PIPE_AMP] = ACTIONS(1298),
[anon_sym_AMP_AMP] = ACTIONS(1298),
[anon_sym_PIPE_PIPE] = ACTIONS(1298),
[anon_sym_LT] = ACTIONS(1298),
[anon_sym_GT] = ACTIONS(1298),
[anon_sym_GT_GT] = ACTIONS(1298),
[anon_sym_AMP_GT] = ACTIONS(1298),
[anon_sym_AMP_GT_GT] = ACTIONS(1298),
[anon_sym_LT_AMP] = ACTIONS(1298),
[anon_sym_GT_AMP] = ACTIONS(1298),
[anon_sym_LT_LT] = ACTIONS(1298),
[anon_sym_LT_LT_DASH] = ACTIONS(1298),
[anon_sym_DQUOTE] = ACTIONS(1298),
[sym_raw_string] = ACTIONS(1298),
[anon_sym_DOLLAR] = ACTIONS(1298),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1298),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1298),
[anon_sym_BQUOTE] = ACTIONS(1298),
[anon_sym_LT_LPAREN] = ACTIONS(1298),
[anon_sym_GT_LPAREN] = ACTIONS(1298),
[sym_word] = ACTIONS(1298),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1298),
[anon_sym_LF] = ACTIONS(1298),
[anon_sym_AMP] = ACTIONS(1298),
},
[377] = {
[sym_compound_statement] = STATE(665),
[anon_sym_LBRACE] = ACTIONS(352),
[sym_comment] = ACTIONS(52),
},
[378] = {
[sym_file_descriptor] = ACTIONS(1300),
[anon_sym_PIPE] = ACTIONS(1302),
[anon_sym_RPAREN] = ACTIONS(1302),
[anon_sym_SEMI_SEMI] = ACTIONS(1302),
[anon_sym_PIPE_AMP] = ACTIONS(1302),
[anon_sym_AMP_AMP] = ACTIONS(1302),
[anon_sym_PIPE_PIPE] = ACTIONS(1302),
[anon_sym_LT] = ACTIONS(1302),
[anon_sym_GT] = ACTIONS(1302),
[anon_sym_GT_GT] = ACTIONS(1302),
[anon_sym_AMP_GT] = ACTIONS(1302),
[anon_sym_AMP_GT_GT] = ACTIONS(1302),
[anon_sym_LT_AMP] = ACTIONS(1302),
[anon_sym_GT_AMP] = ACTIONS(1302),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1302),
[anon_sym_LF] = ACTIONS(1302),
[anon_sym_AMP] = ACTIONS(1302),
},
[379] = {
[sym__terminated_statement] = STATE(23),
[sym_for_statement] = STATE(24),
[sym_while_statement] = STATE(24),
[sym_if_statement] = STATE(24),
[sym_case_statement] = STATE(24),
[sym_function_definition] = STATE(24),
[sym_subshell] = STATE(24),
[sym_pipeline] = STATE(24),
[sym_list] = STATE(24),
[sym_bracket_command] = STATE(24),
[sym_command] = STATE(24),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(26),
[sym_declaration_command] = STATE(24),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(667),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_RBRACE] = ACTIONS(1304),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[380] = {
[anon_sym_LT] = ACTIONS(1306),
[anon_sym_GT] = ACTIONS(1306),
[anon_sym_GT_GT] = ACTIONS(1308),
[anon_sym_AMP_GT] = ACTIONS(1306),
[anon_sym_AMP_GT_GT] = ACTIONS(1308),
[anon_sym_LT_AMP] = ACTIONS(1308),
[anon_sym_GT_AMP] = ACTIONS(1308),
[sym_comment] = ACTIONS(52),
},
[381] = {
[sym_concatenation] = STATE(676),
[sym_string] = STATE(670),
[sym_simple_expansion] = STATE(670),
[sym_expansion] = STATE(670),
[sym_command_substitution] = STATE(670),
[sym_process_substitution] = STATE(670),
[anon_sym_DQUOTE] = ACTIONS(1310),
[sym_raw_string] = ACTIONS(1312),
[anon_sym_DOLLAR] = ACTIONS(1314),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1316),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1318),
[anon_sym_BQUOTE] = ACTIONS(1320),
[anon_sym_LT_LPAREN] = ACTIONS(1322),
[anon_sym_GT_LPAREN] = ACTIONS(1322),
[sym_word] = ACTIONS(1324),
[sym_comment] = ACTIONS(52),
},
[382] = {
[anon_sym_PIPE] = ACTIONS(851),
[anon_sym_RPAREN] = ACTIONS(851),
[anon_sym_SEMI_SEMI] = ACTIONS(851),
[anon_sym_PIPE_AMP] = ACTIONS(851),
[anon_sym_AMP_AMP] = ACTIONS(851),
[anon_sym_PIPE_PIPE] = ACTIONS(851),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(851),
[anon_sym_LF] = ACTIONS(851),
[anon_sym_AMP] = ACTIONS(851),
},
[383] = {
[anon_sym_PIPE] = ACTIONS(1326),
[anon_sym_RPAREN] = ACTIONS(1326),
[anon_sym_SEMI_SEMI] = ACTIONS(1326),
[anon_sym_PIPE_AMP] = ACTIONS(1326),
[anon_sym_AMP_AMP] = ACTIONS(1326),
[anon_sym_PIPE_PIPE] = ACTIONS(1326),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1326),
[anon_sym_LF] = ACTIONS(1326),
[anon_sym_AMP] = ACTIONS(1326),
},
[384] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(1326),
[anon_sym_RPAREN] = ACTIONS(1326),
[anon_sym_SEMI_SEMI] = ACTIONS(1326),
[anon_sym_PIPE_AMP] = ACTIONS(1326),
[anon_sym_AMP_AMP] = ACTIONS(1326),
[anon_sym_PIPE_PIPE] = ACTIONS(1326),
[anon_sym_LT] = ACTIONS(270),
[anon_sym_GT] = ACTIONS(270),
[anon_sym_GT_GT] = ACTIONS(270),
[anon_sym_AMP_GT] = ACTIONS(270),
[anon_sym_AMP_GT_GT] = ACTIONS(270),
[anon_sym_LT_AMP] = ACTIONS(270),
[anon_sym_GT_AMP] = ACTIONS(270),
[anon_sym_DQUOTE] = ACTIONS(270),
[sym_raw_string] = ACTIONS(270),
[anon_sym_DOLLAR] = ACTIONS(270),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(270),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(270),
[anon_sym_BQUOTE] = ACTIONS(270),
[anon_sym_LT_LPAREN] = ACTIONS(270),
[anon_sym_GT_LPAREN] = ACTIONS(270),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1326),
[anon_sym_LF] = ACTIONS(1326),
[anon_sym_AMP] = ACTIONS(1326),
},
[385] = {
[anon_sym_PIPE] = ACTIONS(240),
[anon_sym_SEMI_SEMI] = ACTIONS(1328),
[anon_sym_PIPE_AMP] = ACTIONS(240),
[anon_sym_AMP_AMP] = ACTIONS(1328),
[anon_sym_PIPE_PIPE] = ACTIONS(1328),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1328),
[anon_sym_LF] = ACTIONS(1328),
[anon_sym_AMP] = ACTIONS(1328),
},
[386] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(240),
[anon_sym_SEMI_SEMI] = ACTIONS(1328),
[anon_sym_PIPE_AMP] = ACTIONS(240),
[anon_sym_AMP_AMP] = ACTIONS(1328),
[anon_sym_PIPE_PIPE] = ACTIONS(1328),
[anon_sym_LT] = ACTIONS(270),
[anon_sym_GT] = ACTIONS(270),
[anon_sym_GT_GT] = ACTIONS(270),
[anon_sym_AMP_GT] = ACTIONS(270),
[anon_sym_AMP_GT_GT] = ACTIONS(270),
[anon_sym_LT_AMP] = ACTIONS(270),
[anon_sym_GT_AMP] = ACTIONS(270),
[anon_sym_DQUOTE] = ACTIONS(270),
[sym_raw_string] = ACTIONS(270),
[anon_sym_DOLLAR] = ACTIONS(270),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(270),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(270),
[anon_sym_BQUOTE] = ACTIONS(270),
[anon_sym_LT_LPAREN] = ACTIONS(270),
[anon_sym_GT_LPAREN] = ACTIONS(270),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1328),
[anon_sym_LF] = ACTIONS(1328),
[anon_sym_AMP] = ACTIONS(1328),
},
[387] = {
[sym_concatenation] = STATE(678),
[sym_string] = STATE(677),
[sym_simple_expansion] = STATE(677),
[sym_expansion] = STATE(677),
[sym_command_substitution] = STATE(677),
[sym_process_substitution] = STATE(677),
[anon_sym_DQUOTE] = ACTIONS(626),
[sym_raw_string] = ACTIONS(1330),
[anon_sym_DOLLAR] = ACTIONS(630),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(632),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(634),
[anon_sym_BQUOTE] = ACTIONS(636),
[anon_sym_LT_LPAREN] = ACTIONS(638),
[anon_sym_GT_LPAREN] = ACTIONS(638),
[sym_word] = ACTIONS(1332),
[sym_comment] = ACTIONS(52),
},
[388] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(680),
[anon_sym_DQUOTE] = ACTIONS(1334),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[389] = {
[aux_sym_concatenation_repeat1] = STATE(682),
[sym_file_descriptor] = ACTIONS(430),
[sym__concat] = ACTIONS(1336),
[anon_sym_PIPE] = ACTIONS(1338),
[anon_sym_SEMI_SEMI] = ACTIONS(1338),
[anon_sym_PIPE_AMP] = ACTIONS(1338),
[anon_sym_AMP_AMP] = ACTIONS(1338),
[anon_sym_PIPE_PIPE] = ACTIONS(1338),
[anon_sym_LT] = ACTIONS(1338),
[anon_sym_GT] = ACTIONS(1338),
[anon_sym_GT_GT] = ACTIONS(1338),
[anon_sym_AMP_GT] = ACTIONS(1338),
[anon_sym_AMP_GT_GT] = ACTIONS(1338),
[anon_sym_LT_AMP] = ACTIONS(1338),
[anon_sym_GT_AMP] = ACTIONS(1338),
[anon_sym_LT_LT] = ACTIONS(1338),
[anon_sym_LT_LT_DASH] = ACTIONS(1338),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1338),
[anon_sym_LF] = ACTIONS(1338),
[anon_sym_AMP] = ACTIONS(1338),
},
[390] = {
[sym_special_variable_name] = STATE(685),
[anon_sym_DASH] = ACTIONS(1340),
[anon_sym_DOLLAR] = ACTIONS(1340),
[anon_sym_POUND] = ACTIONS(1340),
[anon_sym_AT] = ACTIONS(1340),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1342),
[anon_sym_STAR] = ACTIONS(1340),
[anon_sym_QMARK] = ACTIONS(1340),
[anon_sym_BANG] = ACTIONS(1340),
[anon_sym_0] = ACTIONS(1344),
[anon_sym__] = ACTIONS(1344),
},
[391] = {
[sym_special_variable_name] = STATE(688),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(1346),
[anon_sym_AT] = ACTIONS(174),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1348),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[392] = {
[sym_for_statement] = STATE(689),
[sym_while_statement] = STATE(689),
[sym_if_statement] = STATE(689),
[sym_case_statement] = STATE(689),
[sym_function_definition] = STATE(689),
[sym_subshell] = STATE(689),
[sym_pipeline] = STATE(689),
[sym_list] = STATE(689),
[sym_bracket_command] = STATE(689),
[sym_command] = STATE(689),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(690),
[sym_declaration_command] = STATE(689),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[393] = {
[sym_for_statement] = STATE(691),
[sym_while_statement] = STATE(691),
[sym_if_statement] = STATE(691),
[sym_case_statement] = STATE(691),
[sym_function_definition] = STATE(691),
[sym_subshell] = STATE(691),
[sym_pipeline] = STATE(691),
[sym_list] = STATE(691),
[sym_bracket_command] = STATE(691),
[sym_command] = STATE(691),
[sym_command_name] = STATE(139),
[sym_variable_assignment] = STATE(692),
[sym_declaration_command] = STATE(691),
[sym_subscript] = STATE(141),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(136),
[sym_simple_expansion] = STATE(136),
[sym_expansion] = STATE(136),
[sym_command_substitution] = STATE(136),
[sym_process_substitution] = STATE(136),
[aux_sym_command_repeat1] = STATE(142),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(218),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(220),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(222),
[anon_sym_typeset] = ACTIONS(222),
[anon_sym_export] = ACTIONS(222),
[anon_sym_readonly] = ACTIONS(222),
[anon_sym_local] = ACTIONS(222),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(224),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(226),
[sym_comment] = ACTIONS(52),
},
[394] = {
[sym_for_statement] = STATE(693),
[sym_while_statement] = STATE(693),
[sym_if_statement] = STATE(693),
[sym_case_statement] = STATE(693),
[sym_function_definition] = STATE(693),
[sym_subshell] = STATE(693),
[sym_pipeline] = STATE(693),
[sym_list] = STATE(693),
[sym_bracket_command] = STATE(693),
[sym_command] = STATE(693),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(694),
[sym_declaration_command] = STATE(693),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[395] = {
[sym_file_descriptor] = ACTIONS(430),
[anon_sym_PIPE] = ACTIONS(1338),
[anon_sym_RPAREN] = ACTIONS(1338),
[anon_sym_SEMI_SEMI] = ACTIONS(1338),
[anon_sym_PIPE_AMP] = ACTIONS(1338),
[anon_sym_AMP_AMP] = ACTIONS(1338),
[anon_sym_PIPE_PIPE] = ACTIONS(1338),
[anon_sym_LT] = ACTIONS(1338),
[anon_sym_GT] = ACTIONS(1338),
[anon_sym_GT_GT] = ACTIONS(1338),
[anon_sym_AMP_GT] = ACTIONS(1338),
[anon_sym_AMP_GT_GT] = ACTIONS(1338),
[anon_sym_LT_AMP] = ACTIONS(1338),
[anon_sym_GT_AMP] = ACTIONS(1338),
[anon_sym_LT_LT] = ACTIONS(1338),
[anon_sym_LT_LT_DASH] = ACTIONS(1338),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1338),
[anon_sym_LF] = ACTIONS(1338),
[anon_sym_AMP] = ACTIONS(1338),
},
[396] = {
[sym_file_descriptor] = ACTIONS(1350),
[anon_sym_PIPE] = ACTIONS(1352),
[anon_sym_RPAREN] = ACTIONS(1352),
[anon_sym_SEMI_SEMI] = ACTIONS(1352),
[anon_sym_PIPE_AMP] = ACTIONS(1352),
[anon_sym_AMP_AMP] = ACTIONS(1352),
[anon_sym_PIPE_PIPE] = ACTIONS(1352),
[anon_sym_LT] = ACTIONS(1352),
[anon_sym_GT] = ACTIONS(1352),
[anon_sym_GT_GT] = ACTIONS(1352),
[anon_sym_AMP_GT] = ACTIONS(1352),
[anon_sym_AMP_GT_GT] = ACTIONS(1352),
[anon_sym_LT_AMP] = ACTIONS(1352),
[anon_sym_GT_AMP] = ACTIONS(1352),
[anon_sym_LT_LT] = ACTIONS(1352),
[anon_sym_LT_LT_DASH] = ACTIONS(1352),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1352),
[anon_sym_LF] = ACTIONS(1352),
[anon_sym_AMP] = ACTIONS(1352),
},
[397] = {
[sym_simple_expansion] = STATE(695),
[sym_expansion] = STATE(695),
[aux_sym_heredoc_repeat1] = STATE(699),
[sym__heredoc_middle] = ACTIONS(1354),
[sym__heredoc_end] = ACTIONS(1356),
[anon_sym_DOLLAR] = ACTIONS(1358),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1360),
[sym_comment] = ACTIONS(52),
},
[398] = {
[sym_file_descriptor] = ACTIONS(1362),
[anon_sym_PIPE] = ACTIONS(1364),
[anon_sym_RPAREN] = ACTIONS(1364),
[anon_sym_SEMI_SEMI] = ACTIONS(1364),
[anon_sym_PIPE_AMP] = ACTIONS(1364),
[anon_sym_AMP_AMP] = ACTIONS(1364),
[anon_sym_PIPE_PIPE] = ACTIONS(1364),
[anon_sym_LT] = ACTIONS(1364),
[anon_sym_GT] = ACTIONS(1364),
[anon_sym_GT_GT] = ACTIONS(1364),
[anon_sym_AMP_GT] = ACTIONS(1364),
[anon_sym_AMP_GT_GT] = ACTIONS(1364),
[anon_sym_LT_AMP] = ACTIONS(1364),
[anon_sym_GT_AMP] = ACTIONS(1364),
[anon_sym_LT_LT] = ACTIONS(1364),
[anon_sym_LT_LT_DASH] = ACTIONS(1364),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1364),
[anon_sym_LF] = ACTIONS(1364),
[anon_sym_AMP] = ACTIONS(1364),
},
[399] = {
[sym_concatenation] = STATE(156),
[sym_string] = STATE(154),
[sym_simple_expansion] = STATE(154),
[sym_expansion] = STATE(154),
[sym_command_substitution] = STATE(154),
[sym_process_substitution] = STATE(154),
[aux_sym_for_statement_repeat1] = STATE(399),
[sym_file_descriptor] = ACTIONS(1366),
[anon_sym_PIPE] = ACTIONS(1368),
[anon_sym_SEMI_SEMI] = ACTIONS(1368),
[anon_sym_PIPE_AMP] = ACTIONS(1368),
[anon_sym_AMP_AMP] = ACTIONS(1368),
[anon_sym_PIPE_PIPE] = ACTIONS(1368),
[anon_sym_LT] = ACTIONS(1368),
[anon_sym_GT] = ACTIONS(1368),
[anon_sym_GT_GT] = ACTIONS(1368),
[anon_sym_AMP_GT] = ACTIONS(1368),
[anon_sym_AMP_GT_GT] = ACTIONS(1368),
[anon_sym_LT_AMP] = ACTIONS(1368),
[anon_sym_GT_AMP] = ACTIONS(1368),
[anon_sym_LT_LT] = ACTIONS(1368),
[anon_sym_LT_LT_DASH] = ACTIONS(1368),
[anon_sym_DQUOTE] = ACTIONS(1370),
[sym_raw_string] = ACTIONS(1373),
[anon_sym_DOLLAR] = ACTIONS(1376),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1379),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1382),
[anon_sym_BQUOTE] = ACTIONS(1385),
[anon_sym_LT_LPAREN] = ACTIONS(1388),
[anon_sym_GT_LPAREN] = ACTIONS(1388),
[sym_word] = ACTIONS(1373),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1368),
[anon_sym_LF] = ACTIONS(1368),
[anon_sym_AMP] = ACTIONS(1368),
},
[400] = {
[sym_file_redirect] = STATE(155),
[sym_heredoc_redirect] = STATE(155),
[aux_sym_command_repeat2] = STATE(401),
[sym_file_descriptor] = ACTIONS(246),
[anon_sym_PIPE] = ACTIONS(1391),
[anon_sym_SEMI_SEMI] = ACTIONS(1391),
[anon_sym_PIPE_AMP] = ACTIONS(1391),
[anon_sym_AMP_AMP] = ACTIONS(1391),
[anon_sym_PIPE_PIPE] = ACTIONS(1391),
[anon_sym_LT] = ACTIONS(250),
[anon_sym_GT] = ACTIONS(250),
[anon_sym_GT_GT] = ACTIONS(250),
[anon_sym_AMP_GT] = ACTIONS(250),
[anon_sym_AMP_GT_GT] = ACTIONS(250),
[anon_sym_LT_AMP] = ACTIONS(250),
[anon_sym_GT_AMP] = ACTIONS(250),
[anon_sym_LT_LT] = ACTIONS(252),
[anon_sym_LT_LT_DASH] = ACTIONS(252),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1391),
[anon_sym_LF] = ACTIONS(1391),
[anon_sym_AMP] = ACTIONS(1391),
},
[401] = {
[sym_file_redirect] = STATE(155),
[sym_heredoc_redirect] = STATE(155),
[aux_sym_command_repeat2] = STATE(401),
[sym_file_descriptor] = ACTIONS(1393),
[anon_sym_PIPE] = ACTIONS(1396),
[anon_sym_SEMI_SEMI] = ACTIONS(1396),
[anon_sym_PIPE_AMP] = ACTIONS(1396),
[anon_sym_AMP_AMP] = ACTIONS(1396),
[anon_sym_PIPE_PIPE] = ACTIONS(1396),
[anon_sym_LT] = ACTIONS(1398),
[anon_sym_GT] = ACTIONS(1398),
[anon_sym_GT_GT] = ACTIONS(1398),
[anon_sym_AMP_GT] = ACTIONS(1398),
[anon_sym_AMP_GT_GT] = ACTIONS(1398),
[anon_sym_LT_AMP] = ACTIONS(1398),
[anon_sym_GT_AMP] = ACTIONS(1398),
[anon_sym_LT_LT] = ACTIONS(1401),
[anon_sym_LT_LT_DASH] = ACTIONS(1401),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1396),
[anon_sym_LF] = ACTIONS(1396),
[anon_sym_AMP] = ACTIONS(1396),
},
[402] = {
[sym_concatenation] = STATE(700),
[sym_string] = STATE(702),
[sym_array] = STATE(700),
[sym_simple_expansion] = STATE(702),
[sym_expansion] = STATE(702),
[sym_command_substitution] = STATE(702),
[sym_process_substitution] = STATE(702),
[sym__empty_value] = ACTIONS(1404),
[anon_sym_LPAREN] = ACTIONS(1406),
[anon_sym_DQUOTE] = ACTIONS(134),
[sym_raw_string] = ACTIONS(1408),
[anon_sym_DOLLAR] = ACTIONS(138),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(140),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(142),
[anon_sym_BQUOTE] = ACTIONS(144),
[anon_sym_LT_LPAREN] = ACTIONS(146),
[anon_sym_GT_LPAREN] = ACTIONS(146),
[sym_word] = ACTIONS(1410),
[sym_comment] = ACTIONS(52),
},
[403] = {
[sym_file_descriptor] = ACTIONS(320),
[sym_variable_name] = ACTIONS(320),
[anon_sym_LT] = ACTIONS(1166),
[anon_sym_GT] = ACTIONS(1166),
[anon_sym_GT_GT] = ACTIONS(320),
[anon_sym_AMP_GT] = ACTIONS(1166),
[anon_sym_AMP_GT_GT] = ACTIONS(320),
[anon_sym_LT_AMP] = ACTIONS(320),
[anon_sym_GT_AMP] = ACTIONS(320),
[anon_sym_DQUOTE] = ACTIONS(320),
[sym_raw_string] = ACTIONS(320),
[anon_sym_DOLLAR] = ACTIONS(1166),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(320),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(320),
[anon_sym_BQUOTE] = ACTIONS(320),
[anon_sym_LT_LPAREN] = ACTIONS(320),
[anon_sym_GT_LPAREN] = ACTIONS(320),
[sym_word] = ACTIONS(1166),
[sym_comment] = ACTIONS(52),
},
[404] = {
[sym_file_redirect] = STATE(155),
[sym_heredoc_redirect] = STATE(155),
[sym_concatenation] = STATE(156),
[sym_string] = STATE(154),
[sym_simple_expansion] = STATE(154),
[sym_expansion] = STATE(154),
[sym_command_substitution] = STATE(154),
[sym_process_substitution] = STATE(154),
[aux_sym_for_statement_repeat1] = STATE(399),
[aux_sym_command_repeat2] = STATE(703),
[sym_file_descriptor] = ACTIONS(246),
[anon_sym_PIPE] = ACTIONS(1391),
[anon_sym_SEMI_SEMI] = ACTIONS(1391),
[anon_sym_PIPE_AMP] = ACTIONS(1391),
[anon_sym_AMP_AMP] = ACTIONS(1391),
[anon_sym_PIPE_PIPE] = ACTIONS(1391),
[anon_sym_LT] = ACTIONS(250),
[anon_sym_GT] = ACTIONS(250),
[anon_sym_GT_GT] = ACTIONS(250),
[anon_sym_AMP_GT] = ACTIONS(250),
[anon_sym_AMP_GT_GT] = ACTIONS(250),
[anon_sym_LT_AMP] = ACTIONS(250),
[anon_sym_GT_AMP] = ACTIONS(250),
[anon_sym_LT_LT] = ACTIONS(252),
[anon_sym_LT_LT_DASH] = ACTIONS(252),
[anon_sym_DQUOTE] = ACTIONS(254),
[sym_raw_string] = ACTIONS(256),
[anon_sym_DOLLAR] = ACTIONS(258),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(260),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(262),
[anon_sym_BQUOTE] = ACTIONS(264),
[anon_sym_LT_LPAREN] = ACTIONS(266),
[anon_sym_GT_LPAREN] = ACTIONS(266),
[sym_word] = ACTIONS(256),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1391),
[anon_sym_LF] = ACTIONS(1391),
[anon_sym_AMP] = ACTIONS(1391),
},
[405] = {
[sym__concat] = ACTIONS(446),
[anon_sym_PIPE] = ACTIONS(446),
[anon_sym_RPAREN] = ACTIONS(446),
[anon_sym_RBRACK] = ACTIONS(446),
[sym_comment] = ACTIONS(52),
},
[406] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(298),
[anon_sym_DQUOTE] = ACTIONS(1412),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[407] = {
[sym_string] = STATE(705),
[sym_simple_expansion] = STATE(705),
[sym_expansion] = STATE(705),
[sym_command_substitution] = STATE(705),
[sym_process_substitution] = STATE(705),
[anon_sym_DQUOTE] = ACTIONS(284),
[sym_raw_string] = ACTIONS(1414),
[anon_sym_DOLLAR] = ACTIONS(288),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(290),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(292),
[anon_sym_BQUOTE] = ACTIONS(294),
[anon_sym_LT_LPAREN] = ACTIONS(296),
[anon_sym_GT_LPAREN] = ACTIONS(296),
[sym_word] = ACTIONS(1416),
[sym_comment] = ACTIONS(52),
},
[408] = {
[anon_sym_EQ] = ACTIONS(1418),
[anon_sym_PLUS_EQ] = ACTIONS(1418),
[sym_comment] = ACTIONS(52),
},
[409] = {
[aux_sym_concatenation_repeat1] = STATE(706),
[sym__concat] = ACTIONS(741),
[anon_sym_RBRACK] = ACTIONS(470),
[sym_comment] = ACTIONS(52),
},
[410] = {
[sym__concat] = ACTIONS(474),
[anon_sym_PIPE] = ACTIONS(474),
[anon_sym_RPAREN] = ACTIONS(474),
[anon_sym_RBRACK] = ACTIONS(474),
[sym_comment] = ACTIONS(52),
},
[411] = {
[sym__concat] = ACTIONS(478),
[anon_sym_PIPE] = ACTIONS(478),
[anon_sym_RPAREN] = ACTIONS(478),
[anon_sym_RBRACK] = ACTIONS(478),
[sym_comment] = ACTIONS(52),
},
[412] = {
[sym__concat] = ACTIONS(482),
[anon_sym_PIPE] = ACTIONS(482),
[anon_sym_RPAREN] = ACTIONS(482),
[anon_sym_RBRACK] = ACTIONS(482),
[sym_comment] = ACTIONS(52),
},
[413] = {
[sym_special_variable_name] = STATE(708),
[anon_sym_RBRACE] = ACTIONS(474),
[anon_sym_LBRACK] = ACTIONS(474),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_EQ] = ACTIONS(474),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(174),
[anon_sym_AT] = ACTIONS(174),
[anon_sym_COLON] = ACTIONS(486),
[anon_sym_COLON_QMARK] = ACTIONS(474),
[anon_sym_COLON_DASH] = ACTIONS(474),
[anon_sym_PERCENT] = ACTIONS(474),
[anon_sym_SLASH] = ACTIONS(474),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1420),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[414] = {
[anon_sym_RBRACE] = ACTIONS(1422),
[anon_sym_LBRACK] = ACTIONS(1424),
[anon_sym_EQ] = ACTIONS(1426),
[anon_sym_COLON] = ACTIONS(1428),
[anon_sym_COLON_QMARK] = ACTIONS(1426),
[anon_sym_COLON_DASH] = ACTIONS(1426),
[anon_sym_PERCENT] = ACTIONS(1426),
[anon_sym_SLASH] = ACTIONS(1426),
[sym_comment] = ACTIONS(52),
},
[415] = {
[anon_sym_RBRACE] = ACTIONS(1430),
[anon_sym_LBRACK] = ACTIONS(1432),
[anon_sym_EQ] = ACTIONS(1434),
[anon_sym_COLON] = ACTIONS(1436),
[anon_sym_COLON_QMARK] = ACTIONS(1434),
[anon_sym_COLON_DASH] = ACTIONS(1434),
[anon_sym_PERCENT] = ACTIONS(1434),
[anon_sym_SLASH] = ACTIONS(1434),
[sym_comment] = ACTIONS(52),
},
[416] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(1438),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[417] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(1438),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[418] = {
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(588),
[anon_sym_BQUOTE] = ACTIONS(1438),
[sym_comment] = ACTIONS(52),
},
[419] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(600),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(1438),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[420] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(1440),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[421] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(1440),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[422] = {
[sym_file_descriptor] = ACTIONS(1442),
[sym_variable_name] = ACTIONS(1442),
[anon_sym_PIPE] = ACTIONS(1444),
[anon_sym_RPAREN] = ACTIONS(1444),
[anon_sym_SEMI_SEMI] = ACTIONS(1444),
[anon_sym_PIPE_AMP] = ACTIONS(1444),
[anon_sym_AMP_AMP] = ACTIONS(1444),
[anon_sym_PIPE_PIPE] = ACTIONS(1444),
[anon_sym_LT] = ACTIONS(1444),
[anon_sym_GT] = ACTIONS(1444),
[anon_sym_GT_GT] = ACTIONS(1444),
[anon_sym_AMP_GT] = ACTIONS(1444),
[anon_sym_AMP_GT_GT] = ACTIONS(1444),
[anon_sym_LT_AMP] = ACTIONS(1444),
[anon_sym_GT_AMP] = ACTIONS(1444),
[anon_sym_DQUOTE] = ACTIONS(1444),
[sym_raw_string] = ACTIONS(1444),
[anon_sym_DOLLAR] = ACTIONS(1444),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1444),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1444),
[anon_sym_BQUOTE] = ACTIONS(1444),
[anon_sym_LT_LPAREN] = ACTIONS(1444),
[anon_sym_GT_LPAREN] = ACTIONS(1444),
[sym_word] = ACTIONS(1444),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1444),
[anon_sym_LF] = ACTIONS(1444),
[anon_sym_AMP] = ACTIONS(1444),
},
[423] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(718),
[anon_sym_DQUOTE] = ACTIONS(1446),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[424] = {
[aux_sym_concatenation_repeat1] = STATE(720),
[sym__concat] = ACTIONS(1448),
[anon_sym_RPAREN] = ACTIONS(384),
[anon_sym_DQUOTE] = ACTIONS(384),
[sym_raw_string] = ACTIONS(384),
[anon_sym_DOLLAR] = ACTIONS(382),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(384),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(384),
[anon_sym_BQUOTE] = ACTIONS(384),
[anon_sym_LT_LPAREN] = ACTIONS(384),
[anon_sym_GT_LPAREN] = ACTIONS(384),
[sym_word] = ACTIONS(382),
[sym_comment] = ACTIONS(52),
},
[425] = {
[sym_special_variable_name] = STATE(723),
[anon_sym_DASH] = ACTIONS(1450),
[anon_sym_DOLLAR] = ACTIONS(1450),
[anon_sym_POUND] = ACTIONS(1450),
[anon_sym_AT] = ACTIONS(1450),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1452),
[anon_sym_STAR] = ACTIONS(1450),
[anon_sym_QMARK] = ACTIONS(1450),
[anon_sym_BANG] = ACTIONS(1450),
[anon_sym_0] = ACTIONS(1454),
[anon_sym__] = ACTIONS(1454),
},
[426] = {
[sym_special_variable_name] = STATE(726),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(1456),
[anon_sym_AT] = ACTIONS(174),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1458),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[427] = {
[sym_for_statement] = STATE(727),
[sym_while_statement] = STATE(727),
[sym_if_statement] = STATE(727),
[sym_case_statement] = STATE(727),
[sym_function_definition] = STATE(727),
[sym_subshell] = STATE(727),
[sym_pipeline] = STATE(727),
[sym_list] = STATE(727),
[sym_bracket_command] = STATE(727),
[sym_command] = STATE(727),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(728),
[sym_declaration_command] = STATE(727),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[428] = {
[sym_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_bracket_command] = STATE(729),
[sym_command] = STATE(729),
[sym_command_name] = STATE(139),
[sym_variable_assignment] = STATE(730),
[sym_declaration_command] = STATE(729),
[sym_subscript] = STATE(141),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(136),
[sym_simple_expansion] = STATE(136),
[sym_expansion] = STATE(136),
[sym_command_substitution] = STATE(136),
[sym_process_substitution] = STATE(136),
[aux_sym_command_repeat1] = STATE(142),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(218),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(220),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(222),
[anon_sym_typeset] = ACTIONS(222),
[anon_sym_export] = ACTIONS(222),
[anon_sym_readonly] = ACTIONS(222),
[anon_sym_local] = ACTIONS(222),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(224),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(226),
[sym_comment] = ACTIONS(52),
},
[429] = {
[sym_for_statement] = STATE(731),
[sym_while_statement] = STATE(731),
[sym_if_statement] = STATE(731),
[sym_case_statement] = STATE(731),
[sym_function_definition] = STATE(731),
[sym_subshell] = STATE(731),
[sym_pipeline] = STATE(731),
[sym_list] = STATE(731),
[sym_bracket_command] = STATE(731),
[sym_command] = STATE(731),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(732),
[sym_declaration_command] = STATE(731),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[430] = {
[anon_sym_RPAREN] = ACTIONS(384),
[anon_sym_DQUOTE] = ACTIONS(384),
[sym_raw_string] = ACTIONS(384),
[anon_sym_DOLLAR] = ACTIONS(382),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(384),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(384),
[anon_sym_BQUOTE] = ACTIONS(384),
[anon_sym_LT_LPAREN] = ACTIONS(384),
[anon_sym_GT_LPAREN] = ACTIONS(384),
[sym_word] = ACTIONS(382),
[sym_comment] = ACTIONS(52),
},
[431] = {
[sym_concatenation] = STATE(430),
[sym_string] = STATE(424),
[sym_simple_expansion] = STATE(424),
[sym_expansion] = STATE(424),
[sym_command_substitution] = STATE(424),
[sym_process_substitution] = STATE(424),
[aux_sym_for_statement_repeat1] = STATE(734),
[anon_sym_RPAREN] = ACTIONS(1460),
[anon_sym_DQUOTE] = ACTIONS(761),
[sym_raw_string] = ACTIONS(763),
[anon_sym_DOLLAR] = ACTIONS(765),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(767),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(769),
[anon_sym_BQUOTE] = ACTIONS(771),
[anon_sym_LT_LPAREN] = ACTIONS(773),
[anon_sym_GT_LPAREN] = ACTIONS(773),
[sym_word] = ACTIONS(775),
[sym_comment] = ACTIONS(52),
},
[432] = {
[sym_file_descriptor] = ACTIONS(446),
[sym__concat] = ACTIONS(446),
[sym_variable_name] = ACTIONS(446),
[anon_sym_PIPE] = ACTIONS(448),
[anon_sym_RPAREN] = ACTIONS(448),
[anon_sym_SEMI_SEMI] = ACTIONS(448),
[anon_sym_PIPE_AMP] = ACTIONS(448),
[anon_sym_AMP_AMP] = ACTIONS(448),
[anon_sym_PIPE_PIPE] = ACTIONS(448),
[anon_sym_LT] = ACTIONS(448),
[anon_sym_GT] = ACTIONS(448),
[anon_sym_GT_GT] = ACTIONS(448),
[anon_sym_AMP_GT] = ACTIONS(448),
[anon_sym_AMP_GT_GT] = ACTIONS(448),
[anon_sym_LT_AMP] = ACTIONS(448),
[anon_sym_GT_AMP] = ACTIONS(448),
[anon_sym_DQUOTE] = ACTIONS(448),
[sym_raw_string] = ACTIONS(448),
[anon_sym_DOLLAR] = ACTIONS(448),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(448),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(448),
[anon_sym_BQUOTE] = ACTIONS(448),
[anon_sym_LT_LPAREN] = ACTIONS(448),
[anon_sym_GT_LPAREN] = ACTIONS(448),
[sym_word] = ACTIONS(448),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(448),
[anon_sym_LF] = ACTIONS(448),
[anon_sym_AMP] = ACTIONS(448),
},
[433] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(298),
[anon_sym_DQUOTE] = ACTIONS(1462),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[434] = {
[sym_string] = STATE(736),
[sym_simple_expansion] = STATE(736),
[sym_expansion] = STATE(736),
[sym_command_substitution] = STATE(736),
[sym_process_substitution] = STATE(736),
[anon_sym_DQUOTE] = ACTIONS(304),
[sym_raw_string] = ACTIONS(1464),
[anon_sym_DOLLAR] = ACTIONS(308),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(310),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(312),
[anon_sym_BQUOTE] = ACTIONS(314),
[anon_sym_LT_LPAREN] = ACTIONS(316),
[anon_sym_GT_LPAREN] = ACTIONS(316),
[sym_word] = ACTIONS(1466),
[sym_comment] = ACTIONS(52),
},
[435] = {
[aux_sym_concatenation_repeat1] = STATE(737),
[sym_file_descriptor] = ACTIONS(470),
[sym__concat] = ACTIONS(779),
[sym_variable_name] = ACTIONS(470),
[anon_sym_PIPE] = ACTIONS(472),
[anon_sym_SEMI_SEMI] = ACTIONS(472),
[anon_sym_PIPE_AMP] = ACTIONS(472),
[anon_sym_AMP_AMP] = ACTIONS(472),
[anon_sym_PIPE_PIPE] = ACTIONS(472),
[anon_sym_LT] = ACTIONS(472),
[anon_sym_GT] = ACTIONS(472),
[anon_sym_GT_GT] = ACTIONS(472),
[anon_sym_AMP_GT] = ACTIONS(472),
[anon_sym_AMP_GT_GT] = ACTIONS(472),
[anon_sym_LT_AMP] = ACTIONS(472),
[anon_sym_GT_AMP] = ACTIONS(472),
[anon_sym_DQUOTE] = ACTIONS(472),
[sym_raw_string] = ACTIONS(472),
[anon_sym_DOLLAR] = ACTIONS(472),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(472),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(472),
[anon_sym_BQUOTE] = ACTIONS(472),
[anon_sym_LT_LPAREN] = ACTIONS(472),
[anon_sym_GT_LPAREN] = ACTIONS(472),
[sym_word] = ACTIONS(472),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(472),
[anon_sym_LF] = ACTIONS(472),
[anon_sym_AMP] = ACTIONS(472),
},
[436] = {
[sym_file_descriptor] = ACTIONS(474),
[sym__concat] = ACTIONS(474),
[sym_variable_name] = ACTIONS(474),
[anon_sym_PIPE] = ACTIONS(476),
[anon_sym_RPAREN] = ACTIONS(476),
[anon_sym_SEMI_SEMI] = ACTIONS(476),
[anon_sym_PIPE_AMP] = ACTIONS(476),
[anon_sym_AMP_AMP] = ACTIONS(476),
[anon_sym_PIPE_PIPE] = ACTIONS(476),
[anon_sym_LT] = ACTIONS(476),
[anon_sym_GT] = ACTIONS(476),
[anon_sym_GT_GT] = ACTIONS(476),
[anon_sym_AMP_GT] = ACTIONS(476),
[anon_sym_AMP_GT_GT] = ACTIONS(476),
[anon_sym_LT_AMP] = ACTIONS(476),
[anon_sym_GT_AMP] = ACTIONS(476),
[anon_sym_DQUOTE] = ACTIONS(476),
[sym_raw_string] = ACTIONS(476),
[anon_sym_DOLLAR] = ACTIONS(476),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(476),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(476),
[anon_sym_BQUOTE] = ACTIONS(476),
[anon_sym_LT_LPAREN] = ACTIONS(476),
[anon_sym_GT_LPAREN] = ACTIONS(476),
[sym_word] = ACTIONS(476),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(476),
[anon_sym_LF] = ACTIONS(476),
[anon_sym_AMP] = ACTIONS(476),
},
[437] = {
[sym_file_descriptor] = ACTIONS(478),
[sym__concat] = ACTIONS(478),
[sym_variable_name] = ACTIONS(478),
[anon_sym_PIPE] = ACTIONS(480),
[anon_sym_RPAREN] = ACTIONS(480),
[anon_sym_SEMI_SEMI] = ACTIONS(480),
[anon_sym_PIPE_AMP] = ACTIONS(480),
[anon_sym_AMP_AMP] = ACTIONS(480),
[anon_sym_PIPE_PIPE] = ACTIONS(480),
[anon_sym_LT] = ACTIONS(480),
[anon_sym_GT] = ACTIONS(480),
[anon_sym_GT_GT] = ACTIONS(480),
[anon_sym_AMP_GT] = ACTIONS(480),
[anon_sym_AMP_GT_GT] = ACTIONS(480),
[anon_sym_LT_AMP] = ACTIONS(480),
[anon_sym_GT_AMP] = ACTIONS(480),
[anon_sym_DQUOTE] = ACTIONS(480),
[sym_raw_string] = ACTIONS(480),
[anon_sym_DOLLAR] = ACTIONS(480),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(480),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(480),
[anon_sym_BQUOTE] = ACTIONS(480),
[anon_sym_LT_LPAREN] = ACTIONS(480),
[anon_sym_GT_LPAREN] = ACTIONS(480),
[sym_word] = ACTIONS(480),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(480),
[anon_sym_LF] = ACTIONS(480),
[anon_sym_AMP] = ACTIONS(480),
},
[438] = {
[sym_file_descriptor] = ACTIONS(482),
[sym__concat] = ACTIONS(482),
[sym_variable_name] = ACTIONS(482),
[anon_sym_PIPE] = ACTIONS(484),
[anon_sym_RPAREN] = ACTIONS(484),
[anon_sym_SEMI_SEMI] = ACTIONS(484),
[anon_sym_PIPE_AMP] = ACTIONS(484),
[anon_sym_AMP_AMP] = ACTIONS(484),
[anon_sym_PIPE_PIPE] = ACTIONS(484),
[anon_sym_LT] = ACTIONS(484),
[anon_sym_GT] = ACTIONS(484),
[anon_sym_GT_GT] = ACTIONS(484),
[anon_sym_AMP_GT] = ACTIONS(484),
[anon_sym_AMP_GT_GT] = ACTIONS(484),
[anon_sym_LT_AMP] = ACTIONS(484),
[anon_sym_GT_AMP] = ACTIONS(484),
[anon_sym_DQUOTE] = ACTIONS(484),
[sym_raw_string] = ACTIONS(484),
[anon_sym_DOLLAR] = ACTIONS(484),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(484),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(484),
[anon_sym_BQUOTE] = ACTIONS(484),
[anon_sym_LT_LPAREN] = ACTIONS(484),
[anon_sym_GT_LPAREN] = ACTIONS(484),
[sym_word] = ACTIONS(484),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(484),
[anon_sym_LF] = ACTIONS(484),
[anon_sym_AMP] = ACTIONS(484),
},
[439] = {
[sym_special_variable_name] = STATE(739),
[anon_sym_RBRACE] = ACTIONS(474),
[anon_sym_LBRACK] = ACTIONS(474),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_EQ] = ACTIONS(474),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(174),
[anon_sym_AT] = ACTIONS(174),
[anon_sym_COLON] = ACTIONS(486),
[anon_sym_COLON_QMARK] = ACTIONS(474),
[anon_sym_COLON_DASH] = ACTIONS(474),
[anon_sym_PERCENT] = ACTIONS(474),
[anon_sym_SLASH] = ACTIONS(474),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1468),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[440] = {
[anon_sym_RBRACE] = ACTIONS(1470),
[anon_sym_LBRACK] = ACTIONS(1472),
[anon_sym_EQ] = ACTIONS(1474),
[anon_sym_COLON] = ACTIONS(1476),
[anon_sym_COLON_QMARK] = ACTIONS(1474),
[anon_sym_COLON_DASH] = ACTIONS(1474),
[anon_sym_PERCENT] = ACTIONS(1474),
[anon_sym_SLASH] = ACTIONS(1474),
[sym_comment] = ACTIONS(52),
},
[441] = {
[anon_sym_RBRACE] = ACTIONS(1478),
[anon_sym_LBRACK] = ACTIONS(1480),
[anon_sym_EQ] = ACTIONS(1482),
[anon_sym_COLON] = ACTIONS(1484),
[anon_sym_COLON_QMARK] = ACTIONS(1482),
[anon_sym_COLON_DASH] = ACTIONS(1482),
[anon_sym_PERCENT] = ACTIONS(1482),
[anon_sym_SLASH] = ACTIONS(1482),
[sym_comment] = ACTIONS(52),
},
[442] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(1486),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[443] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(1486),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[444] = {
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(588),
[anon_sym_BQUOTE] = ACTIONS(1486),
[sym_comment] = ACTIONS(52),
},
[445] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(600),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(1486),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[446] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(1488),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[447] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(1488),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[448] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(749),
[anon_sym_DQUOTE] = ACTIONS(1490),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[449] = {
[aux_sym_concatenation_repeat1] = STATE(751),
[sym__concat] = ACTIONS(1492),
[anon_sym_SEMI_SEMI] = ACTIONS(386),
[anon_sym_DQUOTE] = ACTIONS(386),
[sym_raw_string] = ACTIONS(386),
[anon_sym_DOLLAR] = ACTIONS(386),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(386),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(386),
[anon_sym_BQUOTE] = ACTIONS(386),
[anon_sym_LT_LPAREN] = ACTIONS(386),
[anon_sym_GT_LPAREN] = ACTIONS(386),
[sym_word] = ACTIONS(386),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(386),
[anon_sym_LF] = ACTIONS(386),
[anon_sym_AMP] = ACTIONS(386),
},
[450] = {
[sym_special_variable_name] = STATE(754),
[anon_sym_DASH] = ACTIONS(1494),
[anon_sym_DOLLAR] = ACTIONS(1494),
[anon_sym_POUND] = ACTIONS(1494),
[anon_sym_AT] = ACTIONS(1494),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1496),
[anon_sym_STAR] = ACTIONS(1494),
[anon_sym_QMARK] = ACTIONS(1494),
[anon_sym_BANG] = ACTIONS(1494),
[anon_sym_0] = ACTIONS(1498),
[anon_sym__] = ACTIONS(1498),
},
[451] = {
[sym_special_variable_name] = STATE(757),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(1500),
[anon_sym_AT] = ACTIONS(174),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1502),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[452] = {
[sym_for_statement] = STATE(758),
[sym_while_statement] = STATE(758),
[sym_if_statement] = STATE(758),
[sym_case_statement] = STATE(758),
[sym_function_definition] = STATE(758),
[sym_subshell] = STATE(758),
[sym_pipeline] = STATE(758),
[sym_list] = STATE(758),
[sym_bracket_command] = STATE(758),
[sym_command] = STATE(758),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(759),
[sym_declaration_command] = STATE(758),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[453] = {
[sym_for_statement] = STATE(760),
[sym_while_statement] = STATE(760),
[sym_if_statement] = STATE(760),
[sym_case_statement] = STATE(760),
[sym_function_definition] = STATE(760),
[sym_subshell] = STATE(760),
[sym_pipeline] = STATE(760),
[sym_list] = STATE(760),
[sym_bracket_command] = STATE(760),
[sym_command] = STATE(760),
[sym_command_name] = STATE(139),
[sym_variable_assignment] = STATE(761),
[sym_declaration_command] = STATE(760),
[sym_subscript] = STATE(141),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(136),
[sym_simple_expansion] = STATE(136),
[sym_expansion] = STATE(136),
[sym_command_substitution] = STATE(136),
[sym_process_substitution] = STATE(136),
[aux_sym_command_repeat1] = STATE(142),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(218),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(220),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(222),
[anon_sym_typeset] = ACTIONS(222),
[anon_sym_export] = ACTIONS(222),
[anon_sym_readonly] = ACTIONS(222),
[anon_sym_local] = ACTIONS(222),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(224),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(226),
[sym_comment] = ACTIONS(52),
},
[454] = {
[sym_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_bracket_command] = STATE(762),
[sym_command] = STATE(762),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(763),
[sym_declaration_command] = STATE(762),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[455] = {
[anon_sym_SEMI_SEMI] = ACTIONS(386),
[anon_sym_DQUOTE] = ACTIONS(386),
[sym_raw_string] = ACTIONS(386),
[anon_sym_DOLLAR] = ACTIONS(386),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(386),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(386),
[anon_sym_BQUOTE] = ACTIONS(386),
[anon_sym_LT_LPAREN] = ACTIONS(386),
[anon_sym_GT_LPAREN] = ACTIONS(386),
[sym_word] = ACTIONS(386),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(386),
[anon_sym_LF] = ACTIONS(386),
[anon_sym_AMP] = ACTIONS(386),
},
[456] = {
[sym_concatenation] = STATE(455),
[sym_string] = STATE(449),
[sym_simple_expansion] = STATE(449),
[sym_expansion] = STATE(449),
[sym_command_substitution] = STATE(449),
[sym_process_substitution] = STATE(449),
[aux_sym_for_statement_repeat1] = STATE(765),
[anon_sym_SEMI_SEMI] = ACTIONS(1504),
[anon_sym_DQUOTE] = ACTIONS(1506),
[sym_raw_string] = ACTIONS(1508),
[anon_sym_DOLLAR] = ACTIONS(1510),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1512),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1514),
[anon_sym_BQUOTE] = ACTIONS(1516),
[anon_sym_LT_LPAREN] = ACTIONS(1518),
[anon_sym_GT_LPAREN] = ACTIONS(1518),
[sym_word] = ACTIONS(1508),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1504),
[anon_sym_LF] = ACTIONS(1504),
[anon_sym_AMP] = ACTIONS(1504),
},
[457] = {
[anon_sym_PIPE] = ACTIONS(1520),
[anon_sym_RPAREN] = ACTIONS(1520),
[anon_sym_SEMI_SEMI] = ACTIONS(1520),
[anon_sym_PIPE_AMP] = ACTIONS(1520),
[anon_sym_AMP_AMP] = ACTIONS(1520),
[anon_sym_PIPE_PIPE] = ACTIONS(1520),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1520),
[anon_sym_LF] = ACTIONS(1520),
[anon_sym_AMP] = ACTIONS(1520),
},
[458] = {
[sym_file_descriptor] = ACTIONS(234),
[sym_variable_name] = ACTIONS(234),
[anon_sym_for] = ACTIONS(236),
[anon_sym_while] = ACTIONS(236),
[anon_sym_done] = ACTIONS(236),
[anon_sym_if] = ACTIONS(236),
[anon_sym_case] = ACTIONS(236),
[anon_sym_function] = ACTIONS(236),
[anon_sym_LPAREN] = ACTIONS(234),
[anon_sym_LBRACK] = ACTIONS(236),
[anon_sym_LBRACK_LBRACK] = ACTIONS(236),
[anon_sym_declare] = ACTIONS(236),
[anon_sym_typeset] = ACTIONS(236),
[anon_sym_export] = ACTIONS(236),
[anon_sym_readonly] = ACTIONS(236),
[anon_sym_local] = ACTIONS(236),
[anon_sym_LT] = ACTIONS(236),
[anon_sym_GT] = ACTIONS(236),
[anon_sym_GT_GT] = ACTIONS(234),
[anon_sym_AMP_GT] = ACTIONS(236),
[anon_sym_AMP_GT_GT] = ACTIONS(234),
[anon_sym_LT_AMP] = ACTIONS(234),
[anon_sym_GT_AMP] = ACTIONS(234),
[anon_sym_DQUOTE] = ACTIONS(234),
[sym_raw_string] = ACTIONS(234),
[anon_sym_DOLLAR] = ACTIONS(236),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(234),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(234),
[anon_sym_BQUOTE] = ACTIONS(234),
[anon_sym_LT_LPAREN] = ACTIONS(234),
[anon_sym_GT_LPAREN] = ACTIONS(234),
[sym_word] = ACTIONS(238),
[sym_comment] = ACTIONS(52),
},
[459] = {
[anon_sym_PIPE] = ACTIONS(240),
[anon_sym_SEMI_SEMI] = ACTIONS(1522),
[anon_sym_PIPE_AMP] = ACTIONS(240),
[anon_sym_AMP_AMP] = ACTIONS(244),
[anon_sym_PIPE_PIPE] = ACTIONS(244),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1522),
[anon_sym_LF] = ACTIONS(1522),
[anon_sym_AMP] = ACTIONS(1522),
},
[460] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(240),
[anon_sym_SEMI_SEMI] = ACTIONS(1522),
[anon_sym_PIPE_AMP] = ACTIONS(240),
[anon_sym_AMP_AMP] = ACTIONS(244),
[anon_sym_PIPE_PIPE] = ACTIONS(244),
[anon_sym_LT] = ACTIONS(270),
[anon_sym_GT] = ACTIONS(270),
[anon_sym_GT_GT] = ACTIONS(270),
[anon_sym_AMP_GT] = ACTIONS(270),
[anon_sym_AMP_GT_GT] = ACTIONS(270),
[anon_sym_LT_AMP] = ACTIONS(270),
[anon_sym_GT_AMP] = ACTIONS(270),
[anon_sym_DQUOTE] = ACTIONS(270),
[sym_raw_string] = ACTIONS(270),
[anon_sym_DOLLAR] = ACTIONS(270),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(270),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(270),
[anon_sym_BQUOTE] = ACTIONS(270),
[anon_sym_LT_LPAREN] = ACTIONS(270),
[anon_sym_GT_LPAREN] = ACTIONS(270),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1522),
[anon_sym_LF] = ACTIONS(1522),
[anon_sym_AMP] = ACTIONS(1522),
},
[461] = {
[sym__terminated_statement] = STATE(458),
[sym_for_statement] = STATE(459),
[sym_while_statement] = STATE(459),
[sym_if_statement] = STATE(459),
[sym_case_statement] = STATE(459),
[sym_function_definition] = STATE(459),
[sym_subshell] = STATE(459),
[sym_pipeline] = STATE(459),
[sym_list] = STATE(459),
[sym_bracket_command] = STATE(459),
[sym_command] = STATE(459),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(460),
[sym_declaration_command] = STATE(459),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(768),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_done] = ACTIONS(1524),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[462] = {
[anon_sym_PIPE] = ACTIONS(1526),
[anon_sym_RPAREN] = ACTIONS(1526),
[anon_sym_SEMI_SEMI] = ACTIONS(1526),
[anon_sym_PIPE_AMP] = ACTIONS(1526),
[anon_sym_AMP_AMP] = ACTIONS(1526),
[anon_sym_PIPE_PIPE] = ACTIONS(1526),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1526),
[anon_sym_LF] = ACTIONS(1526),
[anon_sym_AMP] = ACTIONS(1526),
},
[463] = {
[sym__terminated_statement] = STATE(769),
[sym_for_statement] = STATE(38),
[sym_while_statement] = STATE(38),
[sym_if_statement] = STATE(38),
[sym_case_statement] = STATE(38),
[sym_function_definition] = STATE(38),
[sym_subshell] = STATE(38),
[sym_pipeline] = STATE(38),
[sym_list] = STATE(38),
[sym_bracket_command] = STATE(38),
[sym_command] = STATE(38),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(39),
[sym_declaration_command] = STATE(38),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[464] = {
[sym__terminated_statement] = STATE(770),
[sym_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_bracket_command] = STATE(771),
[sym_command] = STATE(771),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(772),
[sym_declaration_command] = STATE(771),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(773),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_fi] = ACTIONS(1528),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[465] = {
[sym_file_descriptor] = ACTIONS(234),
[sym_variable_name] = ACTIONS(234),
[anon_sym_for] = ACTIONS(236),
[anon_sym_while] = ACTIONS(236),
[anon_sym_if] = ACTIONS(236),
[anon_sym_fi] = ACTIONS(236),
[anon_sym_elif] = ACTIONS(236),
[anon_sym_else] = ACTIONS(236),
[anon_sym_case] = ACTIONS(236),
[anon_sym_function] = ACTIONS(236),
[anon_sym_LPAREN] = ACTIONS(234),
[anon_sym_LBRACK] = ACTIONS(236),
[anon_sym_LBRACK_LBRACK] = ACTIONS(236),
[anon_sym_declare] = ACTIONS(236),
[anon_sym_typeset] = ACTIONS(236),
[anon_sym_export] = ACTIONS(236),
[anon_sym_readonly] = ACTIONS(236),
[anon_sym_local] = ACTIONS(236),
[anon_sym_LT] = ACTIONS(236),
[anon_sym_GT] = ACTIONS(236),
[anon_sym_GT_GT] = ACTIONS(234),
[anon_sym_AMP_GT] = ACTIONS(236),
[anon_sym_AMP_GT_GT] = ACTIONS(234),
[anon_sym_LT_AMP] = ACTIONS(234),
[anon_sym_GT_AMP] = ACTIONS(234),
[anon_sym_DQUOTE] = ACTIONS(234),
[sym_raw_string] = ACTIONS(234),
[anon_sym_DOLLAR] = ACTIONS(236),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(234),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(234),
[anon_sym_BQUOTE] = ACTIONS(234),
[anon_sym_LT_LPAREN] = ACTIONS(234),
[anon_sym_GT_LPAREN] = ACTIONS(234),
[sym_word] = ACTIONS(238),
[sym_comment] = ACTIONS(52),
},
[466] = {
[anon_sym_PIPE] = ACTIONS(240),
[anon_sym_SEMI_SEMI] = ACTIONS(1530),
[anon_sym_PIPE_AMP] = ACTIONS(240),
[anon_sym_AMP_AMP] = ACTIONS(244),
[anon_sym_PIPE_PIPE] = ACTIONS(244),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1530),
[anon_sym_LF] = ACTIONS(1530),
[anon_sym_AMP] = ACTIONS(1530),
},
[467] = {
[anon_sym_fi] = ACTIONS(1532),
[anon_sym_elif] = ACTIONS(1532),
[anon_sym_else] = ACTIONS(1532),
[sym_comment] = ACTIONS(52),
},
[468] = {
[anon_sym_fi] = ACTIONS(1534),
[sym_comment] = ACTIONS(52),
},
[469] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(240),
[anon_sym_SEMI_SEMI] = ACTIONS(1530),
[anon_sym_PIPE_AMP] = ACTIONS(240),
[anon_sym_AMP_AMP] = ACTIONS(244),
[anon_sym_PIPE_PIPE] = ACTIONS(244),
[anon_sym_LT] = ACTIONS(270),
[anon_sym_GT] = ACTIONS(270),
[anon_sym_GT_GT] = ACTIONS(270),
[anon_sym_AMP_GT] = ACTIONS(270),
[anon_sym_AMP_GT_GT] = ACTIONS(270),
[anon_sym_LT_AMP] = ACTIONS(270),
[anon_sym_GT_AMP] = ACTIONS(270),
[anon_sym_DQUOTE] = ACTIONS(270),
[sym_raw_string] = ACTIONS(270),
[anon_sym_DOLLAR] = ACTIONS(270),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(270),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(270),
[anon_sym_BQUOTE] = ACTIONS(270),
[anon_sym_LT_LPAREN] = ACTIONS(270),
[anon_sym_GT_LPAREN] = ACTIONS(270),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1530),
[anon_sym_LF] = ACTIONS(1530),
[anon_sym_AMP] = ACTIONS(1530),
},
[470] = {
[sym__terminated_statement] = STATE(465),
[sym_for_statement] = STATE(466),
[sym_while_statement] = STATE(466),
[sym_if_statement] = STATE(466),
[sym_elif_clause] = STATE(467),
[sym_else_clause] = STATE(776),
[sym_case_statement] = STATE(466),
[sym_function_definition] = STATE(466),
[sym_subshell] = STATE(466),
[sym_pipeline] = STATE(466),
[sym_list] = STATE(466),
[sym_bracket_command] = STATE(466),
[sym_command] = STATE(466),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(469),
[sym_declaration_command] = STATE(466),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(777),
[aux_sym_if_statement_repeat1] = STATE(778),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_fi] = ACTIONS(1536),
[anon_sym_elif] = ACTIONS(813),
[anon_sym_else] = ACTIONS(815),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[471] = {
[sym_elif_clause] = STATE(467),
[sym_else_clause] = STATE(776),
[aux_sym_if_statement_repeat1] = STATE(779),
[anon_sym_fi] = ACTIONS(1534),
[anon_sym_elif] = ACTIONS(1538),
[anon_sym_else] = ACTIONS(1540),
[sym_comment] = ACTIONS(52),
},
[472] = {
[sym__concat] = ACTIONS(1088),
[anon_sym_in] = ACTIONS(1090),
[anon_sym_SEMI_SEMI] = ACTIONS(1090),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1090),
[anon_sym_LF] = ACTIONS(1090),
[anon_sym_AMP] = ACTIONS(1090),
},
[473] = {
[sym__concat] = ACTIONS(1109),
[anon_sym_in] = ACTIONS(1111),
[anon_sym_SEMI_SEMI] = ACTIONS(1111),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1111),
[anon_sym_LF] = ACTIONS(1111),
[anon_sym_AMP] = ACTIONS(1111),
},
[474] = {
[sym_case_item] = STATE(782),
[sym_concatenation] = STATE(783),
[sym_string] = STATE(781),
[sym_simple_expansion] = STATE(781),
[sym_expansion] = STATE(781),
[sym_command_substitution] = STATE(781),
[sym_process_substitution] = STATE(781),
[aux_sym_case_statement_repeat1] = STATE(784),
[anon_sym_esac] = ACTIONS(1542),
[anon_sym_DQUOTE] = ACTIONS(284),
[sym_raw_string] = ACTIONS(1544),
[anon_sym_DOLLAR] = ACTIONS(288),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(290),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(292),
[anon_sym_BQUOTE] = ACTIONS(294),
[anon_sym_LT_LPAREN] = ACTIONS(296),
[anon_sym_GT_LPAREN] = ACTIONS(296),
[sym_word] = ACTIONS(1546),
[sym_comment] = ACTIONS(52),
},
[475] = {
[anon_sym_SEMI_SEMI] = ACTIONS(1548),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1548),
[anon_sym_LF] = ACTIONS(1548),
[anon_sym_AMP] = ACTIONS(1548),
},
[476] = {
[aux_sym_concatenation_repeat1] = STATE(476),
[sym__concat] = ACTIONS(1550),
[anon_sym_in] = ACTIONS(1111),
[anon_sym_SEMI_SEMI] = ACTIONS(1111),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1111),
[anon_sym_LF] = ACTIONS(1111),
[anon_sym_AMP] = ACTIONS(1111),
},
[477] = {
[anon_sym_RBRACE] = ACTIONS(1553),
[anon_sym_LBRACK] = ACTIONS(1555),
[sym_comment] = ACTIONS(52),
},
[478] = {
[anon_sym_RBRACE] = ACTIONS(1557),
[anon_sym_LBRACK] = ACTIONS(1559),
[sym_comment] = ACTIONS(52),
},
[479] = {
[sym__concat] = ACTIONS(1124),
[anon_sym_in] = ACTIONS(1126),
[anon_sym_SEMI_SEMI] = ACTIONS(1126),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1126),
[anon_sym_LF] = ACTIONS(1126),
[anon_sym_AMP] = ACTIONS(1126),
},
[480] = {
[anon_sym_AT] = ACTIONS(1561),
[sym_comment] = ACTIONS(52),
},
[481] = {
[sym_concatenation] = STATE(793),
[sym_string] = STATE(792),
[sym_simple_expansion] = STATE(792),
[sym_expansion] = STATE(792),
[sym_command_substitution] = STATE(792),
[sym_process_substitution] = STATE(792),
[anon_sym_RBRACE] = ACTIONS(1563),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(1565),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(1567),
[sym_comment] = ACTIONS(52),
},
[482] = {
[sym__concat] = ACTIONS(1136),
[anon_sym_in] = ACTIONS(1138),
[anon_sym_SEMI_SEMI] = ACTIONS(1138),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1138),
[anon_sym_LF] = ACTIONS(1138),
[anon_sym_AMP] = ACTIONS(1138),
},
[483] = {
[anon_sym_AT] = ACTIONS(1569),
[sym_comment] = ACTIONS(52),
},
[484] = {
[sym_concatenation] = STATE(796),
[sym_string] = STATE(795),
[sym_simple_expansion] = STATE(795),
[sym_expansion] = STATE(795),
[sym_command_substitution] = STATE(795),
[sym_process_substitution] = STATE(795),
[anon_sym_RBRACE] = ACTIONS(1557),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(1571),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(1573),
[sym_comment] = ACTIONS(52),
},
[485] = {
[sym__concat] = ACTIONS(1238),
[anon_sym_in] = ACTIONS(1240),
[anon_sym_SEMI_SEMI] = ACTIONS(1240),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1240),
[anon_sym_LF] = ACTIONS(1240),
[anon_sym_AMP] = ACTIONS(1240),
},
[486] = {
[sym__concat] = ACTIONS(1296),
[anon_sym_in] = ACTIONS(1298),
[anon_sym_SEMI_SEMI] = ACTIONS(1298),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1298),
[anon_sym_LF] = ACTIONS(1298),
[anon_sym_AMP] = ACTIONS(1298),
},
[487] = {
[sym_compound_statement] = STATE(797),
[anon_sym_LBRACE] = ACTIONS(352),
[sym_comment] = ACTIONS(52),
},
[488] = {
[anon_sym_PIPE] = ACTIONS(1575),
[anon_sym_RPAREN] = ACTIONS(1575),
[anon_sym_SEMI_SEMI] = ACTIONS(1575),
[anon_sym_PIPE_AMP] = ACTIONS(1575),
[anon_sym_AMP_AMP] = ACTIONS(1575),
[anon_sym_PIPE_PIPE] = ACTIONS(1575),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1575),
[anon_sym_LF] = ACTIONS(1575),
[anon_sym_AMP] = ACTIONS(1575),
},
[489] = {
[aux_sym_concatenation_repeat1] = STATE(798),
[sym_file_descriptor] = ACTIONS(755),
[sym__concat] = ACTIONS(779),
[sym_variable_name] = ACTIONS(755),
[anon_sym_PIPE] = ACTIONS(757),
[anon_sym_RPAREN] = ACTIONS(757),
[anon_sym_SEMI_SEMI] = ACTIONS(757),
[anon_sym_PIPE_AMP] = ACTIONS(757),
[anon_sym_AMP_AMP] = ACTIONS(757),
[anon_sym_PIPE_PIPE] = ACTIONS(757),
[anon_sym_LT] = ACTIONS(757),
[anon_sym_GT] = ACTIONS(757),
[anon_sym_GT_GT] = ACTIONS(757),
[anon_sym_AMP_GT] = ACTIONS(757),
[anon_sym_AMP_GT_GT] = ACTIONS(757),
[anon_sym_LT_AMP] = ACTIONS(757),
[anon_sym_GT_AMP] = ACTIONS(757),
[anon_sym_DQUOTE] = ACTIONS(757),
[sym_raw_string] = ACTIONS(757),
[anon_sym_DOLLAR] = ACTIONS(757),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(757),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(757),
[anon_sym_BQUOTE] = ACTIONS(757),
[anon_sym_LT_LPAREN] = ACTIONS(757),
[anon_sym_GT_LPAREN] = ACTIONS(757),
[sym_word] = ACTIONS(757),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(757),
[anon_sym_LF] = ACTIONS(757),
[anon_sym_AMP] = ACTIONS(757),
},
[490] = {
[anon_sym_RPAREN] = ACTIONS(1577),
[sym_comment] = ACTIONS(52),
},
[491] = {
[sym_file_redirect] = STATE(488),
[sym_file_descriptor] = ACTIONS(863),
[anon_sym_PIPE] = ACTIONS(851),
[anon_sym_RPAREN] = ACTIONS(851),
[anon_sym_SEMI_SEMI] = ACTIONS(851),
[anon_sym_PIPE_AMP] = ACTIONS(851),
[anon_sym_AMP_AMP] = ACTIONS(851),
[anon_sym_PIPE_PIPE] = ACTIONS(851),
[anon_sym_LT] = ACTIONS(865),
[anon_sym_GT] = ACTIONS(865),
[anon_sym_GT_GT] = ACTIONS(865),
[anon_sym_AMP_GT] = ACTIONS(865),
[anon_sym_AMP_GT_GT] = ACTIONS(865),
[anon_sym_LT_AMP] = ACTIONS(865),
[anon_sym_GT_AMP] = ACTIONS(865),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(851),
[anon_sym_LF] = ACTIONS(851),
[anon_sym_AMP] = ACTIONS(851),
},
[492] = {
[sym_concatenation] = STATE(536),
[sym_string] = STATE(800),
[sym_array] = STATE(536),
[sym_simple_expansion] = STATE(800),
[sym_expansion] = STATE(800),
[sym_command_substitution] = STATE(800),
[sym_process_substitution] = STATE(800),
[sym__empty_value] = ACTIONS(999),
[anon_sym_LPAREN] = ACTIONS(1001),
[anon_sym_DQUOTE] = ACTIONS(1003),
[sym_raw_string] = ACTIONS(1579),
[anon_sym_DOLLAR] = ACTIONS(1007),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1009),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1011),
[anon_sym_BQUOTE] = ACTIONS(1013),
[anon_sym_LT_LPAREN] = ACTIONS(1015),
[anon_sym_GT_LPAREN] = ACTIONS(1015),
[sym_word] = ACTIONS(1581),
[sym_comment] = ACTIONS(52),
},
[493] = {
[aux_sym_declaration_command_repeat1] = STATE(493),
[sym_variable_name] = ACTIONS(1023),
[anon_sym_PIPE] = ACTIONS(1025),
[anon_sym_RPAREN] = ACTIONS(1025),
[anon_sym_SEMI_SEMI] = ACTIONS(1025),
[anon_sym_PIPE_AMP] = ACTIONS(1025),
[anon_sym_AMP_AMP] = ACTIONS(1025),
[anon_sym_PIPE_PIPE] = ACTIONS(1025),
[anon_sym_DASH] = ACTIONS(1027),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1025),
[anon_sym_SEMI] = ACTIONS(1025),
[anon_sym_LF] = ACTIONS(1025),
[anon_sym_AMP] = ACTIONS(1025),
},
[494] = {
[sym_variable_assignment] = STATE(81),
[sym_subscript] = STATE(211),
[aux_sym_declaration_command_repeat2] = STATE(495),
[sym_variable_name] = ACTIONS(358),
[anon_sym_PIPE] = ACTIONS(1030),
[anon_sym_RPAREN] = ACTIONS(1030),
[anon_sym_SEMI_SEMI] = ACTIONS(1030),
[anon_sym_PIPE_AMP] = ACTIONS(1030),
[anon_sym_AMP_AMP] = ACTIONS(1030),
[anon_sym_PIPE_PIPE] = ACTIONS(1030),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(132),
[anon_sym_SEMI] = ACTIONS(1030),
[anon_sym_LF] = ACTIONS(1030),
[anon_sym_AMP] = ACTIONS(1030),
},
[495] = {
[sym_variable_assignment] = STATE(81),
[sym_subscript] = STATE(211),
[aux_sym_declaration_command_repeat2] = STATE(495),
[sym_variable_name] = ACTIONS(1583),
[anon_sym_PIPE] = ACTIONS(1035),
[anon_sym_RPAREN] = ACTIONS(1035),
[anon_sym_SEMI_SEMI] = ACTIONS(1035),
[anon_sym_PIPE_AMP] = ACTIONS(1035),
[anon_sym_AMP_AMP] = ACTIONS(1035),
[anon_sym_PIPE_PIPE] = ACTIONS(1035),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1037),
[anon_sym_SEMI] = ACTIONS(1035),
[anon_sym_LF] = ACTIONS(1035),
[anon_sym_AMP] = ACTIONS(1035),
},
[496] = {
[aux_sym_concatenation_repeat1] = STATE(496),
[sym_file_descriptor] = ACTIONS(1109),
[sym__concat] = ACTIONS(1113),
[anon_sym_PIPE] = ACTIONS(1111),
[anon_sym_RPAREN] = ACTIONS(1111),
[anon_sym_SEMI_SEMI] = ACTIONS(1111),
[anon_sym_PIPE_AMP] = ACTIONS(1111),
[anon_sym_AMP_AMP] = ACTIONS(1111),
[anon_sym_PIPE_PIPE] = ACTIONS(1111),
[anon_sym_LT] = ACTIONS(1111),
[anon_sym_GT] = ACTIONS(1111),
[anon_sym_GT_GT] = ACTIONS(1111),
[anon_sym_AMP_GT] = ACTIONS(1111),
[anon_sym_AMP_GT_GT] = ACTIONS(1111),
[anon_sym_LT_AMP] = ACTIONS(1111),
[anon_sym_GT_AMP] = ACTIONS(1111),
[anon_sym_LT_LT] = ACTIONS(1111),
[anon_sym_LT_LT_DASH] = ACTIONS(1111),
[anon_sym_DQUOTE] = ACTIONS(1111),
[sym_raw_string] = ACTIONS(1111),
[anon_sym_DOLLAR] = ACTIONS(1111),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1111),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1111),
[anon_sym_BQUOTE] = ACTIONS(1111),
[anon_sym_LT_LPAREN] = ACTIONS(1111),
[anon_sym_GT_LPAREN] = ACTIONS(1111),
[sym_word] = ACTIONS(1111),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1111),
[anon_sym_LF] = ACTIONS(1111),
[anon_sym_AMP] = ACTIONS(1111),
},
[497] = {
[sym_compound_statement] = STATE(801),
[anon_sym_LBRACE] = ACTIONS(352),
[sym_comment] = ACTIONS(52),
},
[498] = {
[anon_sym_LT] = ACTIONS(1586),
[anon_sym_GT] = ACTIONS(1586),
[anon_sym_GT_GT] = ACTIONS(1588),
[anon_sym_AMP_GT] = ACTIONS(1586),
[anon_sym_AMP_GT_GT] = ACTIONS(1588),
[anon_sym_LT_AMP] = ACTIONS(1588),
[anon_sym_GT_AMP] = ACTIONS(1588),
[sym_comment] = ACTIONS(52),
},
[499] = {
[sym_concatenation] = STATE(676),
[sym_string] = STATE(803),
[sym_simple_expansion] = STATE(803),
[sym_expansion] = STATE(803),
[sym_command_substitution] = STATE(803),
[sym_process_substitution] = STATE(803),
[anon_sym_DQUOTE] = ACTIONS(1310),
[sym_raw_string] = ACTIONS(1590),
[anon_sym_DOLLAR] = ACTIONS(1314),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1316),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1318),
[anon_sym_BQUOTE] = ACTIONS(1320),
[anon_sym_LT_LPAREN] = ACTIONS(1322),
[anon_sym_GT_LPAREN] = ACTIONS(1322),
[sym_word] = ACTIONS(1592),
[sym_comment] = ACTIONS(52),
},
[500] = {
[anon_sym_PIPE] = ACTIONS(1594),
[anon_sym_RPAREN] = ACTIONS(1594),
[anon_sym_SEMI_SEMI] = ACTIONS(1594),
[anon_sym_PIPE_AMP] = ACTIONS(1594),
[anon_sym_AMP_AMP] = ACTIONS(1594),
[anon_sym_PIPE_PIPE] = ACTIONS(1594),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1594),
[anon_sym_LF] = ACTIONS(1594),
[anon_sym_AMP] = ACTIONS(1594),
},
[501] = {
[anon_sym_PIPE] = ACTIONS(362),
[anon_sym_RPAREN] = ACTIONS(1328),
[anon_sym_SEMI_SEMI] = ACTIONS(1328),
[anon_sym_PIPE_AMP] = ACTIONS(362),
[anon_sym_AMP_AMP] = ACTIONS(1328),
[anon_sym_PIPE_PIPE] = ACTIONS(1328),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1328),
[anon_sym_LF] = ACTIONS(1328),
[anon_sym_AMP] = ACTIONS(1328),
},
[502] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(362),
[anon_sym_RPAREN] = ACTIONS(1328),
[anon_sym_SEMI_SEMI] = ACTIONS(1328),
[anon_sym_PIPE_AMP] = ACTIONS(362),
[anon_sym_AMP_AMP] = ACTIONS(1328),
[anon_sym_PIPE_PIPE] = ACTIONS(1328),
[anon_sym_LT] = ACTIONS(270),
[anon_sym_GT] = ACTIONS(270),
[anon_sym_GT_GT] = ACTIONS(270),
[anon_sym_AMP_GT] = ACTIONS(270),
[anon_sym_AMP_GT_GT] = ACTIONS(270),
[anon_sym_LT_AMP] = ACTIONS(270),
[anon_sym_GT_AMP] = ACTIONS(270),
[anon_sym_DQUOTE] = ACTIONS(270),
[sym_raw_string] = ACTIONS(270),
[anon_sym_DOLLAR] = ACTIONS(270),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(270),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(270),
[anon_sym_BQUOTE] = ACTIONS(270),
[anon_sym_LT_LPAREN] = ACTIONS(270),
[anon_sym_GT_LPAREN] = ACTIONS(270),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1328),
[anon_sym_LF] = ACTIONS(1328),
[anon_sym_AMP] = ACTIONS(1328),
},
[503] = {
[sym_concatenation] = STATE(678),
[sym_string] = STATE(804),
[sym_simple_expansion] = STATE(804),
[sym_expansion] = STATE(804),
[sym_command_substitution] = STATE(804),
[sym_process_substitution] = STATE(804),
[anon_sym_DQUOTE] = ACTIONS(626),
[sym_raw_string] = ACTIONS(1596),
[anon_sym_DOLLAR] = ACTIONS(630),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(632),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(634),
[anon_sym_BQUOTE] = ACTIONS(636),
[anon_sym_LT_LPAREN] = ACTIONS(638),
[anon_sym_GT_LPAREN] = ACTIONS(638),
[sym_word] = ACTIONS(1598),
[sym_comment] = ACTIONS(52),
},
[504] = {
[aux_sym_concatenation_repeat1] = STATE(805),
[sym_file_descriptor] = ACTIONS(430),
[sym__concat] = ACTIONS(1336),
[anon_sym_PIPE] = ACTIONS(1338),
[anon_sym_RPAREN] = ACTIONS(1338),
[anon_sym_SEMI_SEMI] = ACTIONS(1338),
[anon_sym_PIPE_AMP] = ACTIONS(1338),
[anon_sym_AMP_AMP] = ACTIONS(1338),
[anon_sym_PIPE_PIPE] = ACTIONS(1338),
[anon_sym_LT] = ACTIONS(1338),
[anon_sym_GT] = ACTIONS(1338),
[anon_sym_GT_GT] = ACTIONS(1338),
[anon_sym_AMP_GT] = ACTIONS(1338),
[anon_sym_AMP_GT_GT] = ACTIONS(1338),
[anon_sym_LT_AMP] = ACTIONS(1338),
[anon_sym_GT_AMP] = ACTIONS(1338),
[anon_sym_LT_LT] = ACTIONS(1338),
[anon_sym_LT_LT_DASH] = ACTIONS(1338),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1338),
[anon_sym_LF] = ACTIONS(1338),
[anon_sym_AMP] = ACTIONS(1338),
},
[505] = {
[sym_concatenation] = STATE(156),
[sym_string] = STATE(223),
[sym_simple_expansion] = STATE(223),
[sym_expansion] = STATE(223),
[sym_command_substitution] = STATE(223),
[sym_process_substitution] = STATE(223),
[aux_sym_for_statement_repeat1] = STATE(505),
[sym_file_descriptor] = ACTIONS(1366),
[anon_sym_PIPE] = ACTIONS(1368),
[anon_sym_RPAREN] = ACTIONS(1368),
[anon_sym_SEMI_SEMI] = ACTIONS(1368),
[anon_sym_PIPE_AMP] = ACTIONS(1368),
[anon_sym_AMP_AMP] = ACTIONS(1368),
[anon_sym_PIPE_PIPE] = ACTIONS(1368),
[anon_sym_LT] = ACTIONS(1368),
[anon_sym_GT] = ACTIONS(1368),
[anon_sym_GT_GT] = ACTIONS(1368),
[anon_sym_AMP_GT] = ACTIONS(1368),
[anon_sym_AMP_GT_GT] = ACTIONS(1368),
[anon_sym_LT_AMP] = ACTIONS(1368),
[anon_sym_GT_AMP] = ACTIONS(1368),
[anon_sym_LT_LT] = ACTIONS(1368),
[anon_sym_LT_LT_DASH] = ACTIONS(1368),
[anon_sym_DQUOTE] = ACTIONS(1370),
[sym_raw_string] = ACTIONS(1600),
[anon_sym_DOLLAR] = ACTIONS(1376),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1379),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1382),
[anon_sym_BQUOTE] = ACTIONS(1385),
[anon_sym_LT_LPAREN] = ACTIONS(1388),
[anon_sym_GT_LPAREN] = ACTIONS(1388),
[sym_word] = ACTIONS(1600),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1368),
[anon_sym_LF] = ACTIONS(1368),
[anon_sym_AMP] = ACTIONS(1368),
},
[506] = {
[sym_file_redirect] = STATE(155),
[sym_heredoc_redirect] = STATE(155),
[aux_sym_command_repeat2] = STATE(507),
[sym_file_descriptor] = ACTIONS(370),
[anon_sym_PIPE] = ACTIONS(1391),
[anon_sym_RPAREN] = ACTIONS(1391),
[anon_sym_SEMI_SEMI] = ACTIONS(1391),
[anon_sym_PIPE_AMP] = ACTIONS(1391),
[anon_sym_AMP_AMP] = ACTIONS(1391),
[anon_sym_PIPE_PIPE] = ACTIONS(1391),
[anon_sym_LT] = ACTIONS(372),
[anon_sym_GT] = ACTIONS(372),
[anon_sym_GT_GT] = ACTIONS(372),
[anon_sym_AMP_GT] = ACTIONS(372),
[anon_sym_AMP_GT_GT] = ACTIONS(372),
[anon_sym_LT_AMP] = ACTIONS(372),
[anon_sym_GT_AMP] = ACTIONS(372),
[anon_sym_LT_LT] = ACTIONS(252),
[anon_sym_LT_LT_DASH] = ACTIONS(252),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1391),
[anon_sym_LF] = ACTIONS(1391),
[anon_sym_AMP] = ACTIONS(1391),
},
[507] = {
[sym_file_redirect] = STATE(155),
[sym_heredoc_redirect] = STATE(155),
[aux_sym_command_repeat2] = STATE(507),
[sym_file_descriptor] = ACTIONS(1603),
[anon_sym_PIPE] = ACTIONS(1396),
[anon_sym_RPAREN] = ACTIONS(1396),
[anon_sym_SEMI_SEMI] = ACTIONS(1396),
[anon_sym_PIPE_AMP] = ACTIONS(1396),
[anon_sym_AMP_AMP] = ACTIONS(1396),
[anon_sym_PIPE_PIPE] = ACTIONS(1396),
[anon_sym_LT] = ACTIONS(1606),
[anon_sym_GT] = ACTIONS(1606),
[anon_sym_GT_GT] = ACTIONS(1606),
[anon_sym_AMP_GT] = ACTIONS(1606),
[anon_sym_AMP_GT_GT] = ACTIONS(1606),
[anon_sym_LT_AMP] = ACTIONS(1606),
[anon_sym_GT_AMP] = ACTIONS(1606),
[anon_sym_LT_LT] = ACTIONS(1401),
[anon_sym_LT_LT_DASH] = ACTIONS(1401),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1396),
[anon_sym_LF] = ACTIONS(1396),
[anon_sym_AMP] = ACTIONS(1396),
},
[508] = {
[sym_file_descriptor] = ACTIONS(616),
[sym_variable_name] = ACTIONS(616),
[anon_sym_for] = ACTIONS(618),
[anon_sym_while] = ACTIONS(618),
[anon_sym_if] = ACTIONS(618),
[anon_sym_case] = ACTIONS(618),
[anon_sym_RPAREN] = ACTIONS(1609),
[anon_sym_function] = ACTIONS(618),
[anon_sym_LPAREN] = ACTIONS(616),
[anon_sym_LBRACK] = ACTIONS(618),
[anon_sym_LBRACK_LBRACK] = ACTIONS(618),
[anon_sym_declare] = ACTIONS(618),
[anon_sym_typeset] = ACTIONS(618),
[anon_sym_export] = ACTIONS(618),
[anon_sym_readonly] = ACTIONS(618),
[anon_sym_local] = ACTIONS(618),
[anon_sym_LT] = ACTIONS(618),
[anon_sym_GT] = ACTIONS(618),
[anon_sym_GT_GT] = ACTIONS(616),
[anon_sym_AMP_GT] = ACTIONS(618),
[anon_sym_AMP_GT_GT] = ACTIONS(616),
[anon_sym_LT_AMP] = ACTIONS(616),
[anon_sym_GT_AMP] = ACTIONS(616),
[anon_sym_DQUOTE] = ACTIONS(616),
[sym_raw_string] = ACTIONS(616),
[anon_sym_DOLLAR] = ACTIONS(618),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(616),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(616),
[anon_sym_BQUOTE] = ACTIONS(616),
[anon_sym_LT_LPAREN] = ACTIONS(616),
[anon_sym_GT_LPAREN] = ACTIONS(616),
[sym_word] = ACTIONS(620),
[sym_comment] = ACTIONS(52),
},
[509] = {
[sym_file_redirect] = STATE(155),
[sym_heredoc_redirect] = STATE(155),
[sym_concatenation] = STATE(156),
[sym_string] = STATE(223),
[sym_simple_expansion] = STATE(223),
[sym_expansion] = STATE(223),
[sym_command_substitution] = STATE(223),
[sym_process_substitution] = STATE(223),
[aux_sym_for_statement_repeat1] = STATE(505),
[aux_sym_command_repeat2] = STATE(807),
[sym_file_descriptor] = ACTIONS(370),
[anon_sym_PIPE] = ACTIONS(1391),
[anon_sym_RPAREN] = ACTIONS(1391),
[anon_sym_SEMI_SEMI] = ACTIONS(1391),
[anon_sym_PIPE_AMP] = ACTIONS(1391),
[anon_sym_AMP_AMP] = ACTIONS(1391),
[anon_sym_PIPE_PIPE] = ACTIONS(1391),
[anon_sym_LT] = ACTIONS(372),
[anon_sym_GT] = ACTIONS(372),
[anon_sym_GT_GT] = ACTIONS(372),
[anon_sym_AMP_GT] = ACTIONS(372),
[anon_sym_AMP_GT_GT] = ACTIONS(372),
[anon_sym_LT_AMP] = ACTIONS(372),
[anon_sym_GT_AMP] = ACTIONS(372),
[anon_sym_LT_LT] = ACTIONS(252),
[anon_sym_LT_LT_DASH] = ACTIONS(252),
[anon_sym_DQUOTE] = ACTIONS(254),
[sym_raw_string] = ACTIONS(374),
[anon_sym_DOLLAR] = ACTIONS(258),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(260),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(262),
[anon_sym_BQUOTE] = ACTIONS(264),
[anon_sym_LT_LPAREN] = ACTIONS(266),
[anon_sym_GT_LPAREN] = ACTIONS(266),
[sym_word] = ACTIONS(374),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1391),
[anon_sym_LF] = ACTIONS(1391),
[anon_sym_AMP] = ACTIONS(1391),
},
[510] = {
[sym__concat] = ACTIONS(1088),
[anon_sym_RBRACE] = ACTIONS(1088),
[anon_sym_RBRACK] = ACTIONS(1611),
[anon_sym_DQUOTE] = ACTIONS(1088),
[sym_raw_string] = ACTIONS(1088),
[anon_sym_DOLLAR] = ACTIONS(1611),
[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_word] = ACTIONS(1090),
[sym_comment] = ACTIONS(52),
},
[511] = {
[sym__concat] = ACTIONS(1109),
[anon_sym_RBRACE] = ACTIONS(1109),
[anon_sym_RBRACK] = ACTIONS(1613),
[anon_sym_DQUOTE] = ACTIONS(1109),
[sym_raw_string] = ACTIONS(1109),
[anon_sym_DOLLAR] = ACTIONS(1613),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1109),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1109),
[anon_sym_BQUOTE] = ACTIONS(1109),
[anon_sym_LT_LPAREN] = ACTIONS(1109),
[anon_sym_GT_LPAREN] = ACTIONS(1109),
[sym_word] = ACTIONS(1111),
[sym_comment] = ACTIONS(52),
},
[512] = {
[aux_sym_concatenation_repeat1] = STATE(512),
[sym__concat] = ACTIONS(1615),
[anon_sym_RBRACK] = ACTIONS(1613),
[anon_sym_DQUOTE] = ACTIONS(1109),
[sym_raw_string] = ACTIONS(1109),
[anon_sym_DOLLAR] = ACTIONS(1613),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1109),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1109),
[anon_sym_BQUOTE] = ACTIONS(1109),
[anon_sym_LT_LPAREN] = ACTIONS(1109),
[anon_sym_GT_LPAREN] = ACTIONS(1109),
[sym_word] = ACTIONS(1111),
[sym_comment] = ACTIONS(52),
},
[513] = {
[anon_sym_RBRACE] = ACTIONS(1618),
[anon_sym_LBRACK] = ACTIONS(1620),
[sym_comment] = ACTIONS(52),
},
[514] = {
[anon_sym_RBRACE] = ACTIONS(1622),
[anon_sym_LBRACK] = ACTIONS(1624),
[sym_comment] = ACTIONS(52),
},
[515] = {
[sym__concat] = ACTIONS(1124),
[anon_sym_RBRACE] = ACTIONS(1124),
[anon_sym_RBRACK] = ACTIONS(1626),
[anon_sym_DQUOTE] = ACTIONS(1124),
[sym_raw_string] = ACTIONS(1124),
[anon_sym_DOLLAR] = ACTIONS(1626),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1124),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1124),
[anon_sym_BQUOTE] = ACTIONS(1124),
[anon_sym_LT_LPAREN] = ACTIONS(1124),
[anon_sym_GT_LPAREN] = ACTIONS(1124),
[sym_word] = ACTIONS(1126),
[sym_comment] = ACTIONS(52),
},
[516] = {
[anon_sym_AT] = ACTIONS(1628),
[sym_comment] = ACTIONS(52),
},
[517] = {
[sym_concatenation] = STATE(815),
[sym_string] = STATE(814),
[sym_simple_expansion] = STATE(814),
[sym_expansion] = STATE(814),
[sym_command_substitution] = STATE(814),
[sym_process_substitution] = STATE(814),
[anon_sym_RBRACE] = ACTIONS(1630),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(1632),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(1634),
[sym_comment] = ACTIONS(52),
},
[518] = {
[sym__concat] = ACTIONS(1136),
[anon_sym_RBRACE] = ACTIONS(1136),
[anon_sym_RBRACK] = ACTIONS(1636),
[anon_sym_DQUOTE] = ACTIONS(1136),
[sym_raw_string] = ACTIONS(1136),
[anon_sym_DOLLAR] = ACTIONS(1636),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1136),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1136),
[anon_sym_BQUOTE] = ACTIONS(1136),
[anon_sym_LT_LPAREN] = ACTIONS(1136),
[anon_sym_GT_LPAREN] = ACTIONS(1136),
[sym_word] = ACTIONS(1138),
[sym_comment] = ACTIONS(52),
},
[519] = {
[anon_sym_AT] = ACTIONS(1638),
[sym_comment] = ACTIONS(52),
},
[520] = {
[sym_concatenation] = STATE(818),
[sym_string] = STATE(817),
[sym_simple_expansion] = STATE(817),
[sym_expansion] = STATE(817),
[sym_command_substitution] = STATE(817),
[sym_process_substitution] = STATE(817),
[anon_sym_RBRACE] = ACTIONS(1622),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(1640),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(1642),
[sym_comment] = ACTIONS(52),
},
[521] = {
[sym__concat] = ACTIONS(1238),
[anon_sym_RBRACE] = ACTIONS(1238),
[anon_sym_RBRACK] = ACTIONS(1644),
[anon_sym_DQUOTE] = ACTIONS(1238),
[sym_raw_string] = ACTIONS(1238),
[anon_sym_DOLLAR] = ACTIONS(1644),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1238),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1238),
[anon_sym_BQUOTE] = ACTIONS(1238),
[anon_sym_LT_LPAREN] = ACTIONS(1238),
[anon_sym_GT_LPAREN] = ACTIONS(1238),
[sym_word] = ACTIONS(1240),
[sym_comment] = ACTIONS(52),
},
[522] = {
[sym__concat] = ACTIONS(1296),
[anon_sym_RBRACE] = ACTIONS(1296),
[anon_sym_RBRACK] = ACTIONS(1646),
[anon_sym_DQUOTE] = ACTIONS(1296),
[sym_raw_string] = ACTIONS(1296),
[anon_sym_DOLLAR] = ACTIONS(1646),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1296),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1296),
[anon_sym_BQUOTE] = ACTIONS(1296),
[anon_sym_LT_LPAREN] = ACTIONS(1296),
[anon_sym_GT_LPAREN] = ACTIONS(1296),
[sym_word] = ACTIONS(1298),
[sym_comment] = ACTIONS(52),
},
[523] = {
[sym__concat] = ACTIONS(1088),
[anon_sym_RBRACK_RBRACK] = ACTIONS(1611),
[anon_sym_DQUOTE] = ACTIONS(1088),
[sym_raw_string] = ACTIONS(1088),
[anon_sym_DOLLAR] = ACTIONS(1611),
[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_word] = ACTIONS(1090),
[sym_comment] = ACTIONS(52),
},
[524] = {
[sym__concat] = ACTIONS(1109),
[anon_sym_RBRACK_RBRACK] = ACTIONS(1613),
[anon_sym_DQUOTE] = ACTIONS(1109),
[sym_raw_string] = ACTIONS(1109),
[anon_sym_DOLLAR] = ACTIONS(1613),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1109),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1109),
[anon_sym_BQUOTE] = ACTIONS(1109),
[anon_sym_LT_LPAREN] = ACTIONS(1109),
[anon_sym_GT_LPAREN] = ACTIONS(1109),
[sym_word] = ACTIONS(1111),
[sym_comment] = ACTIONS(52),
},
[525] = {
[aux_sym_concatenation_repeat1] = STATE(525),
[sym__concat] = ACTIONS(1648),
[anon_sym_RBRACK_RBRACK] = ACTIONS(1613),
[anon_sym_DQUOTE] = ACTIONS(1109),
[sym_raw_string] = ACTIONS(1109),
[anon_sym_DOLLAR] = ACTIONS(1613),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1109),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1109),
[anon_sym_BQUOTE] = ACTIONS(1109),
[anon_sym_LT_LPAREN] = ACTIONS(1109),
[anon_sym_GT_LPAREN] = ACTIONS(1109),
[sym_word] = ACTIONS(1111),
[sym_comment] = ACTIONS(52),
},
[526] = {
[anon_sym_RBRACE] = ACTIONS(1651),
[anon_sym_LBRACK] = ACTIONS(1653),
[sym_comment] = ACTIONS(52),
},
[527] = {
[anon_sym_RBRACE] = ACTIONS(1655),
[anon_sym_LBRACK] = ACTIONS(1657),
[sym_comment] = ACTIONS(52),
},
[528] = {
[sym__concat] = ACTIONS(1124),
[anon_sym_RBRACK_RBRACK] = ACTIONS(1626),
[anon_sym_DQUOTE] = ACTIONS(1124),
[sym_raw_string] = ACTIONS(1124),
[anon_sym_DOLLAR] = ACTIONS(1626),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1124),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1124),
[anon_sym_BQUOTE] = ACTIONS(1124),
[anon_sym_LT_LPAREN] = ACTIONS(1124),
[anon_sym_GT_LPAREN] = ACTIONS(1124),
[sym_word] = ACTIONS(1126),
[sym_comment] = ACTIONS(52),
},
[529] = {
[anon_sym_AT] = ACTIONS(1659),
[sym_comment] = ACTIONS(52),
},
[530] = {
[sym_concatenation] = STATE(826),
[sym_string] = STATE(825),
[sym_simple_expansion] = STATE(825),
[sym_expansion] = STATE(825),
[sym_command_substitution] = STATE(825),
[sym_process_substitution] = STATE(825),
[anon_sym_RBRACE] = ACTIONS(1661),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(1663),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(1665),
[sym_comment] = ACTIONS(52),
},
[531] = {
[sym__concat] = ACTIONS(1136),
[anon_sym_RBRACK_RBRACK] = ACTIONS(1636),
[anon_sym_DQUOTE] = ACTIONS(1136),
[sym_raw_string] = ACTIONS(1136),
[anon_sym_DOLLAR] = ACTIONS(1636),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1136),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1136),
[anon_sym_BQUOTE] = ACTIONS(1136),
[anon_sym_LT_LPAREN] = ACTIONS(1136),
[anon_sym_GT_LPAREN] = ACTIONS(1136),
[sym_word] = ACTIONS(1138),
[sym_comment] = ACTIONS(52),
},
[532] = {
[anon_sym_AT] = ACTIONS(1667),
[sym_comment] = ACTIONS(52),
},
[533] = {
[sym_concatenation] = STATE(829),
[sym_string] = STATE(828),
[sym_simple_expansion] = STATE(828),
[sym_expansion] = STATE(828),
[sym_command_substitution] = STATE(828),
[sym_process_substitution] = STATE(828),
[anon_sym_RBRACE] = ACTIONS(1655),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(1669),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(1671),
[sym_comment] = ACTIONS(52),
},
[534] = {
[sym__concat] = ACTIONS(1238),
[anon_sym_RBRACK_RBRACK] = ACTIONS(1644),
[anon_sym_DQUOTE] = ACTIONS(1238),
[sym_raw_string] = ACTIONS(1238),
[anon_sym_DOLLAR] = ACTIONS(1644),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1238),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1238),
[anon_sym_BQUOTE] = ACTIONS(1238),
[anon_sym_LT_LPAREN] = ACTIONS(1238),
[anon_sym_GT_LPAREN] = ACTIONS(1238),
[sym_word] = ACTIONS(1240),
[sym_comment] = ACTIONS(52),
},
[535] = {
[sym__concat] = ACTIONS(1296),
[anon_sym_RBRACK_RBRACK] = ACTIONS(1646),
[anon_sym_DQUOTE] = ACTIONS(1296),
[sym_raw_string] = ACTIONS(1296),
[anon_sym_DOLLAR] = ACTIONS(1646),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1296),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1296),
[anon_sym_BQUOTE] = ACTIONS(1296),
[anon_sym_LT_LPAREN] = ACTIONS(1296),
[anon_sym_GT_LPAREN] = ACTIONS(1296),
[sym_word] = ACTIONS(1298),
[sym_comment] = ACTIONS(52),
},
[536] = {
[sym_variable_name] = ACTIONS(755),
[anon_sym_PIPE] = ACTIONS(757),
[anon_sym_RPAREN] = ACTIONS(757),
[anon_sym_SEMI_SEMI] = ACTIONS(757),
[anon_sym_PIPE_AMP] = ACTIONS(757),
[anon_sym_AMP_AMP] = ACTIONS(757),
[anon_sym_PIPE_PIPE] = ACTIONS(757),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(757),
[anon_sym_SEMI] = ACTIONS(757),
[anon_sym_LF] = ACTIONS(757),
[anon_sym_AMP] = ACTIONS(757),
},
[537] = {
[sym_concatenation] = STATE(430),
[sym_string] = STATE(424),
[sym_simple_expansion] = STATE(424),
[sym_expansion] = STATE(424),
[sym_command_substitution] = STATE(424),
[sym_process_substitution] = STATE(424),
[aux_sym_for_statement_repeat1] = STATE(831),
[anon_sym_RPAREN] = ACTIONS(1673),
[anon_sym_DQUOTE] = ACTIONS(761),
[sym_raw_string] = ACTIONS(763),
[anon_sym_DOLLAR] = ACTIONS(765),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(767),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(769),
[anon_sym_BQUOTE] = ACTIONS(771),
[anon_sym_LT_LPAREN] = ACTIONS(773),
[anon_sym_GT_LPAREN] = ACTIONS(773),
[sym_word] = ACTIONS(775),
[sym_comment] = ACTIONS(52),
},
[538] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(833),
[anon_sym_DQUOTE] = ACTIONS(1675),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[539] = {
[aux_sym_concatenation_repeat1] = STATE(835),
[sym__concat] = ACTIONS(1677),
[sym_variable_name] = ACTIONS(755),
[anon_sym_PIPE] = ACTIONS(757),
[anon_sym_SEMI_SEMI] = ACTIONS(757),
[anon_sym_PIPE_AMP] = ACTIONS(757),
[anon_sym_AMP_AMP] = ACTIONS(757),
[anon_sym_PIPE_PIPE] = ACTIONS(757),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(757),
[anon_sym_SEMI] = ACTIONS(757),
[anon_sym_LF] = ACTIONS(757),
[anon_sym_AMP] = ACTIONS(757),
},
[540] = {
[sym_special_variable_name] = STATE(838),
[anon_sym_DASH] = ACTIONS(1679),
[anon_sym_DOLLAR] = ACTIONS(1679),
[anon_sym_POUND] = ACTIONS(1679),
[anon_sym_AT] = ACTIONS(1679),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1681),
[anon_sym_STAR] = ACTIONS(1679),
[anon_sym_QMARK] = ACTIONS(1679),
[anon_sym_BANG] = ACTIONS(1679),
[anon_sym_0] = ACTIONS(1683),
[anon_sym__] = ACTIONS(1683),
},
[541] = {
[sym_special_variable_name] = STATE(841),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(1685),
[anon_sym_AT] = ACTIONS(174),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1687),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[542] = {
[sym_for_statement] = STATE(842),
[sym_while_statement] = STATE(842),
[sym_if_statement] = STATE(842),
[sym_case_statement] = STATE(842),
[sym_function_definition] = STATE(842),
[sym_subshell] = STATE(842),
[sym_pipeline] = STATE(842),
[sym_list] = STATE(842),
[sym_bracket_command] = STATE(842),
[sym_command] = STATE(842),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(843),
[sym_declaration_command] = STATE(842),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[543] = {
[sym_for_statement] = STATE(844),
[sym_while_statement] = STATE(844),
[sym_if_statement] = STATE(844),
[sym_case_statement] = STATE(844),
[sym_function_definition] = STATE(844),
[sym_subshell] = STATE(844),
[sym_pipeline] = STATE(844),
[sym_list] = STATE(844),
[sym_bracket_command] = STATE(844),
[sym_command] = STATE(844),
[sym_command_name] = STATE(139),
[sym_variable_assignment] = STATE(845),
[sym_declaration_command] = STATE(844),
[sym_subscript] = STATE(141),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(136),
[sym_simple_expansion] = STATE(136),
[sym_expansion] = STATE(136),
[sym_command_substitution] = STATE(136),
[sym_process_substitution] = STATE(136),
[aux_sym_command_repeat1] = STATE(142),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(218),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(220),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(222),
[anon_sym_typeset] = ACTIONS(222),
[anon_sym_export] = ACTIONS(222),
[anon_sym_readonly] = ACTIONS(222),
[anon_sym_local] = ACTIONS(222),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(224),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(226),
[sym_comment] = ACTIONS(52),
},
[544] = {
[sym_for_statement] = STATE(846),
[sym_while_statement] = STATE(846),
[sym_if_statement] = STATE(846),
[sym_case_statement] = STATE(846),
[sym_function_definition] = STATE(846),
[sym_subshell] = STATE(846),
[sym_pipeline] = STATE(846),
[sym_list] = STATE(846),
[sym_bracket_command] = STATE(846),
[sym_command] = STATE(846),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(847),
[sym_declaration_command] = STATE(846),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[545] = {
[sym_file_descriptor] = ACTIONS(1088),
[sym__concat] = ACTIONS(1088),
[sym_variable_name] = ACTIONS(1088),
[anon_sym_LT] = ACTIONS(1611),
[anon_sym_GT] = ACTIONS(1611),
[anon_sym_GT_GT] = ACTIONS(1088),
[anon_sym_AMP_GT] = ACTIONS(1611),
[anon_sym_AMP_GT_GT] = ACTIONS(1088),
[anon_sym_LT_AMP] = ACTIONS(1088),
[anon_sym_GT_AMP] = ACTIONS(1088),
[anon_sym_DQUOTE] = ACTIONS(1088),
[sym_raw_string] = ACTIONS(1088),
[anon_sym_DOLLAR] = ACTIONS(1611),
[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_word] = ACTIONS(1611),
[sym_comment] = ACTIONS(52),
},
[546] = {
[sym_file_descriptor] = ACTIONS(1109),
[sym__concat] = ACTIONS(1109),
[sym_variable_name] = ACTIONS(1109),
[anon_sym_LT] = ACTIONS(1613),
[anon_sym_GT] = ACTIONS(1613),
[anon_sym_GT_GT] = ACTIONS(1109),
[anon_sym_AMP_GT] = ACTIONS(1613),
[anon_sym_AMP_GT_GT] = ACTIONS(1109),
[anon_sym_LT_AMP] = ACTIONS(1109),
[anon_sym_GT_AMP] = ACTIONS(1109),
[anon_sym_DQUOTE] = ACTIONS(1109),
[sym_raw_string] = ACTIONS(1109),
[anon_sym_DOLLAR] = ACTIONS(1613),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1109),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1109),
[anon_sym_BQUOTE] = ACTIONS(1109),
[anon_sym_LT_LPAREN] = ACTIONS(1109),
[anon_sym_GT_LPAREN] = ACTIONS(1109),
[sym_word] = ACTIONS(1613),
[sym_comment] = ACTIONS(52),
},
[547] = {
[aux_sym_concatenation_repeat1] = STATE(547),
[sym_file_descriptor] = ACTIONS(1109),
[sym__concat] = ACTIONS(1689),
[sym_variable_name] = ACTIONS(1109),
[anon_sym_LT] = ACTIONS(1613),
[anon_sym_GT] = ACTIONS(1613),
[anon_sym_GT_GT] = ACTIONS(1109),
[anon_sym_AMP_GT] = ACTIONS(1613),
[anon_sym_AMP_GT_GT] = ACTIONS(1109),
[anon_sym_LT_AMP] = ACTIONS(1109),
[anon_sym_GT_AMP] = ACTIONS(1109),
[anon_sym_DQUOTE] = ACTIONS(1109),
[sym_raw_string] = ACTIONS(1109),
[anon_sym_DOLLAR] = ACTIONS(1613),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1109),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1109),
[anon_sym_BQUOTE] = ACTIONS(1109),
[anon_sym_LT_LPAREN] = ACTIONS(1109),
[anon_sym_GT_LPAREN] = ACTIONS(1109),
[sym_word] = ACTIONS(1613),
[sym_comment] = ACTIONS(52),
},
[548] = {
[anon_sym_RBRACE] = ACTIONS(1692),
[anon_sym_LBRACK] = ACTIONS(1694),
[sym_comment] = ACTIONS(52),
},
[549] = {
[anon_sym_RBRACE] = ACTIONS(1696),
[anon_sym_LBRACK] = ACTIONS(1698),
[sym_comment] = ACTIONS(52),
},
[550] = {
[sym_file_descriptor] = ACTIONS(1124),
[sym__concat] = ACTIONS(1124),
[sym_variable_name] = ACTIONS(1124),
[anon_sym_LT] = ACTIONS(1626),
[anon_sym_GT] = ACTIONS(1626),
[anon_sym_GT_GT] = ACTIONS(1124),
[anon_sym_AMP_GT] = ACTIONS(1626),
[anon_sym_AMP_GT_GT] = ACTIONS(1124),
[anon_sym_LT_AMP] = ACTIONS(1124),
[anon_sym_GT_AMP] = ACTIONS(1124),
[anon_sym_DQUOTE] = ACTIONS(1124),
[sym_raw_string] = ACTIONS(1124),
[anon_sym_DOLLAR] = ACTIONS(1626),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1124),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1124),
[anon_sym_BQUOTE] = ACTIONS(1124),
[anon_sym_LT_LPAREN] = ACTIONS(1124),
[anon_sym_GT_LPAREN] = ACTIONS(1124),
[sym_word] = ACTIONS(1626),
[sym_comment] = ACTIONS(52),
},
[551] = {
[anon_sym_AT] = ACTIONS(1700),
[sym_comment] = ACTIONS(52),
},
[552] = {
[sym_concatenation] = STATE(855),
[sym_string] = STATE(854),
[sym_simple_expansion] = STATE(854),
[sym_expansion] = STATE(854),
[sym_command_substitution] = STATE(854),
[sym_process_substitution] = STATE(854),
[anon_sym_RBRACE] = ACTIONS(1702),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(1704),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(1706),
[sym_comment] = ACTIONS(52),
},
[553] = {
[sym_file_descriptor] = ACTIONS(1136),
[sym__concat] = ACTIONS(1136),
[sym_variable_name] = ACTIONS(1136),
[anon_sym_LT] = ACTIONS(1636),
[anon_sym_GT] = ACTIONS(1636),
[anon_sym_GT_GT] = ACTIONS(1136),
[anon_sym_AMP_GT] = ACTIONS(1636),
[anon_sym_AMP_GT_GT] = ACTIONS(1136),
[anon_sym_LT_AMP] = ACTIONS(1136),
[anon_sym_GT_AMP] = ACTIONS(1136),
[anon_sym_DQUOTE] = ACTIONS(1136),
[sym_raw_string] = ACTIONS(1136),
[anon_sym_DOLLAR] = ACTIONS(1636),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1136),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1136),
[anon_sym_BQUOTE] = ACTIONS(1136),
[anon_sym_LT_LPAREN] = ACTIONS(1136),
[anon_sym_GT_LPAREN] = ACTIONS(1136),
[sym_word] = ACTIONS(1636),
[sym_comment] = ACTIONS(52),
},
[554] = {
[anon_sym_AT] = ACTIONS(1708),
[sym_comment] = ACTIONS(52),
},
[555] = {
[sym_concatenation] = STATE(858),
[sym_string] = STATE(857),
[sym_simple_expansion] = STATE(857),
[sym_expansion] = STATE(857),
[sym_command_substitution] = STATE(857),
[sym_process_substitution] = STATE(857),
[anon_sym_RBRACE] = ACTIONS(1696),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(1710),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(1712),
[sym_comment] = ACTIONS(52),
},
[556] = {
[sym_file_descriptor] = ACTIONS(1238),
[sym__concat] = ACTIONS(1238),
[sym_variable_name] = ACTIONS(1238),
[anon_sym_LT] = ACTIONS(1644),
[anon_sym_GT] = ACTIONS(1644),
[anon_sym_GT_GT] = ACTIONS(1238),
[anon_sym_AMP_GT] = ACTIONS(1644),
[anon_sym_AMP_GT_GT] = ACTIONS(1238),
[anon_sym_LT_AMP] = ACTIONS(1238),
[anon_sym_GT_AMP] = ACTIONS(1238),
[anon_sym_DQUOTE] = ACTIONS(1238),
[sym_raw_string] = ACTIONS(1238),
[anon_sym_DOLLAR] = ACTIONS(1644),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1238),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1238),
[anon_sym_BQUOTE] = ACTIONS(1238),
[anon_sym_LT_LPAREN] = ACTIONS(1238),
[anon_sym_GT_LPAREN] = ACTIONS(1238),
[sym_word] = ACTIONS(1644),
[sym_comment] = ACTIONS(52),
},
[557] = {
[sym_file_descriptor] = ACTIONS(1296),
[sym__concat] = ACTIONS(1296),
[sym_variable_name] = ACTIONS(1296),
[anon_sym_LT] = ACTIONS(1646),
[anon_sym_GT] = ACTIONS(1646),
[anon_sym_GT_GT] = ACTIONS(1296),
[anon_sym_AMP_GT] = ACTIONS(1646),
[anon_sym_AMP_GT_GT] = ACTIONS(1296),
[anon_sym_LT_AMP] = ACTIONS(1296),
[anon_sym_GT_AMP] = ACTIONS(1296),
[anon_sym_DQUOTE] = ACTIONS(1296),
[sym_raw_string] = ACTIONS(1296),
[anon_sym_DOLLAR] = ACTIONS(1646),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1296),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1296),
[anon_sym_BQUOTE] = ACTIONS(1296),
[anon_sym_LT_LPAREN] = ACTIONS(1296),
[anon_sym_GT_LPAREN] = ACTIONS(1296),
[sym_word] = ACTIONS(1646),
[sym_comment] = ACTIONS(52),
},
[558] = {
[anon_sym_RBRACE] = ACTIONS(1714),
[anon_sym_LBRACK] = ACTIONS(1716),
[sym_comment] = ACTIONS(52),
},
[559] = {
[anon_sym_RBRACE] = ACTIONS(1718),
[anon_sym_LBRACK] = ACTIONS(1720),
[sym_comment] = ACTIONS(52),
},
[560] = {
[anon_sym_DQUOTE] = ACTIONS(1126),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1626),
[anon_sym_DOLLAR] = ACTIONS(1126),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1126),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1126),
[anon_sym_BQUOTE] = ACTIONS(1126),
[sym_comment] = ACTIONS(130),
},
[561] = {
[anon_sym_AT] = ACTIONS(1722),
[sym_comment] = ACTIONS(52),
},
[562] = {
[sym_concatenation] = STATE(866),
[sym_string] = STATE(865),
[sym_simple_expansion] = STATE(865),
[sym_expansion] = STATE(865),
[sym_command_substitution] = STATE(865),
[sym_process_substitution] = STATE(865),
[anon_sym_RBRACE] = ACTIONS(1724),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(1726),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(1728),
[sym_comment] = ACTIONS(52),
},
[563] = {
[anon_sym_DQUOTE] = ACTIONS(1138),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1636),
[anon_sym_DOLLAR] = ACTIONS(1138),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1138),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1138),
[anon_sym_BQUOTE] = ACTIONS(1138),
[sym_comment] = ACTIONS(130),
},
[564] = {
[anon_sym_AT] = ACTIONS(1730),
[sym_comment] = ACTIONS(52),
},
[565] = {
[sym_concatenation] = STATE(869),
[sym_string] = STATE(868),
[sym_simple_expansion] = STATE(868),
[sym_expansion] = STATE(868),
[sym_command_substitution] = STATE(868),
[sym_process_substitution] = STATE(868),
[anon_sym_RBRACE] = ACTIONS(1718),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(1732),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(1734),
[sym_comment] = ACTIONS(52),
},
[566] = {
[anon_sym_DQUOTE] = ACTIONS(1240),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(1644),
[anon_sym_DOLLAR] = ACTIONS(1240),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1240),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1240),
[anon_sym_BQUOTE] = ACTIONS(1240),
[sym_comment] = ACTIONS(130),
},
[567] = {
[sym_file_descriptor] = ACTIONS(1736),
[sym__concat] = ACTIONS(1736),
[anon_sym_PIPE] = ACTIONS(1738),
[anon_sym_RPAREN] = ACTIONS(1738),
[anon_sym_SEMI_SEMI] = ACTIONS(1738),
[anon_sym_PIPE_AMP] = ACTIONS(1738),
[anon_sym_AMP_AMP] = ACTIONS(1738),
[anon_sym_PIPE_PIPE] = ACTIONS(1738),
[anon_sym_LT] = ACTIONS(1738),
[anon_sym_GT] = ACTIONS(1738),
[anon_sym_GT_GT] = ACTIONS(1738),
[anon_sym_AMP_GT] = ACTIONS(1738),
[anon_sym_AMP_GT_GT] = ACTIONS(1738),
[anon_sym_LT_AMP] = ACTIONS(1738),
[anon_sym_GT_AMP] = ACTIONS(1738),
[anon_sym_LT_LT] = ACTIONS(1738),
[anon_sym_LT_LT_DASH] = ACTIONS(1738),
[anon_sym_DQUOTE] = ACTIONS(1738),
[sym_raw_string] = ACTIONS(1738),
[anon_sym_DOLLAR] = ACTIONS(1738),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1738),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1738),
[anon_sym_BQUOTE] = ACTIONS(1738),
[anon_sym_LT_LPAREN] = ACTIONS(1738),
[anon_sym_GT_LPAREN] = ACTIONS(1738),
[sym_word] = ACTIONS(1738),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1738),
[anon_sym_LF] = ACTIONS(1738),
[anon_sym_AMP] = ACTIONS(1738),
},
[568] = {
[anon_sym_AT] = ACTIONS(1740),
[sym_comment] = ACTIONS(52),
},
[569] = {
[sym_file_descriptor] = ACTIONS(1742),
[sym__concat] = ACTIONS(1742),
[anon_sym_PIPE] = ACTIONS(1744),
[anon_sym_RPAREN] = ACTIONS(1744),
[anon_sym_SEMI_SEMI] = ACTIONS(1744),
[anon_sym_PIPE_AMP] = ACTIONS(1744),
[anon_sym_AMP_AMP] = ACTIONS(1744),
[anon_sym_PIPE_PIPE] = ACTIONS(1744),
[anon_sym_LT] = ACTIONS(1744),
[anon_sym_GT] = ACTIONS(1744),
[anon_sym_GT_GT] = ACTIONS(1744),
[anon_sym_AMP_GT] = ACTIONS(1744),
[anon_sym_AMP_GT_GT] = ACTIONS(1744),
[anon_sym_LT_AMP] = ACTIONS(1744),
[anon_sym_GT_AMP] = ACTIONS(1744),
[anon_sym_LT_LT] = ACTIONS(1744),
[anon_sym_LT_LT_DASH] = ACTIONS(1744),
[anon_sym_DQUOTE] = ACTIONS(1744),
[sym_raw_string] = ACTIONS(1744),
[anon_sym_DOLLAR] = ACTIONS(1744),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1744),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1744),
[anon_sym_BQUOTE] = ACTIONS(1744),
[anon_sym_LT_LPAREN] = ACTIONS(1744),
[anon_sym_GT_LPAREN] = ACTIONS(1744),
[sym_word] = ACTIONS(1744),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1744),
[anon_sym_LF] = ACTIONS(1744),
[anon_sym_AMP] = ACTIONS(1744),
},
[570] = {
[anon_sym_AT] = ACTIONS(1746),
[sym_comment] = ACTIONS(52),
},
[571] = {
[anon_sym_RBRACK] = ACTIONS(1748),
[sym_comment] = ACTIONS(52),
},
[572] = {
[sym_file_descriptor] = ACTIONS(1750),
[sym__concat] = ACTIONS(1750),
[anon_sym_PIPE] = ACTIONS(1752),
[anon_sym_RPAREN] = ACTIONS(1752),
[anon_sym_SEMI_SEMI] = ACTIONS(1752),
[anon_sym_PIPE_AMP] = ACTIONS(1752),
[anon_sym_AMP_AMP] = ACTIONS(1752),
[anon_sym_PIPE_PIPE] = ACTIONS(1752),
[anon_sym_LT] = ACTIONS(1752),
[anon_sym_GT] = ACTIONS(1752),
[anon_sym_GT_GT] = ACTIONS(1752),
[anon_sym_AMP_GT] = ACTIONS(1752),
[anon_sym_AMP_GT_GT] = ACTIONS(1752),
[anon_sym_LT_AMP] = ACTIONS(1752),
[anon_sym_GT_AMP] = ACTIONS(1752),
[anon_sym_LT_LT] = ACTIONS(1752),
[anon_sym_LT_LT_DASH] = ACTIONS(1752),
[anon_sym_DQUOTE] = ACTIONS(1752),
[sym_raw_string] = ACTIONS(1752),
[anon_sym_DOLLAR] = ACTIONS(1752),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1752),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1752),
[anon_sym_BQUOTE] = ACTIONS(1752),
[anon_sym_LT_LPAREN] = ACTIONS(1752),
[anon_sym_GT_LPAREN] = ACTIONS(1752),
[sym_word] = ACTIONS(1752),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1752),
[anon_sym_LF] = ACTIONS(1752),
[anon_sym_AMP] = ACTIONS(1752),
},
[573] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(1754),
[sym_comment] = ACTIONS(52),
},
[574] = {
[anon_sym_RBRACE] = ACTIONS(1754),
[sym_comment] = ACTIONS(52),
},
[575] = {
[anon_sym_RBRACK] = ACTIONS(1756),
[sym_comment] = ACTIONS(52),
},
[576] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(1758),
[sym_comment] = ACTIONS(52),
},
[577] = {
[anon_sym_RBRACE] = ACTIONS(1758),
[sym_comment] = ACTIONS(52),
},
[578] = {
[sym_file_descriptor] = ACTIONS(755),
[sym_variable_name] = ACTIONS(755),
[anon_sym_PIPE] = ACTIONS(1760),
[anon_sym_RPAREN] = ACTIONS(755),
[anon_sym_PIPE_AMP] = ACTIONS(755),
[anon_sym_AMP_AMP] = ACTIONS(755),
[anon_sym_PIPE_PIPE] = ACTIONS(1760),
[anon_sym_LT] = ACTIONS(1760),
[anon_sym_GT] = ACTIONS(1760),
[anon_sym_GT_GT] = ACTIONS(755),
[anon_sym_AMP_GT] = ACTIONS(1760),
[anon_sym_AMP_GT_GT] = ACTIONS(755),
[anon_sym_LT_AMP] = ACTIONS(755),
[anon_sym_GT_AMP] = ACTIONS(755),
[anon_sym_DQUOTE] = ACTIONS(755),
[sym_raw_string] = ACTIONS(755),
[anon_sym_DOLLAR] = ACTIONS(1760),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(755),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(755),
[anon_sym_BQUOTE] = ACTIONS(755),
[anon_sym_LT_LPAREN] = ACTIONS(755),
[anon_sym_GT_LPAREN] = ACTIONS(755),
[sym_word] = ACTIONS(757),
[sym_comment] = ACTIONS(52),
},
[579] = {
[sym_concatenation] = STATE(430),
[sym_string] = STATE(424),
[sym_simple_expansion] = STATE(424),
[sym_expansion] = STATE(424),
[sym_command_substitution] = STATE(424),
[sym_process_substitution] = STATE(424),
[aux_sym_for_statement_repeat1] = STATE(878),
[anon_sym_RPAREN] = ACTIONS(1762),
[anon_sym_DQUOTE] = ACTIONS(761),
[sym_raw_string] = ACTIONS(763),
[anon_sym_DOLLAR] = ACTIONS(765),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(767),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(769),
[anon_sym_BQUOTE] = ACTIONS(771),
[anon_sym_LT_LPAREN] = ACTIONS(773),
[anon_sym_GT_LPAREN] = ACTIONS(773),
[sym_word] = ACTIONS(775),
[sym_comment] = ACTIONS(52),
},
[580] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(880),
[anon_sym_DQUOTE] = ACTIONS(1764),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[581] = {
[aux_sym_concatenation_repeat1] = STATE(882),
[sym_file_descriptor] = ACTIONS(755),
[sym__concat] = ACTIONS(1766),
[sym_variable_name] = ACTIONS(755),
[anon_sym_PIPE] = ACTIONS(1760),
[anon_sym_RPAREN] = ACTIONS(755),
[anon_sym_PIPE_AMP] = ACTIONS(755),
[anon_sym_AMP_AMP] = ACTIONS(755),
[anon_sym_PIPE_PIPE] = ACTIONS(1760),
[anon_sym_LT] = ACTIONS(1760),
[anon_sym_GT] = ACTIONS(1760),
[anon_sym_GT_GT] = ACTIONS(755),
[anon_sym_AMP_GT] = ACTIONS(1760),
[anon_sym_AMP_GT_GT] = ACTIONS(755),
[anon_sym_LT_AMP] = ACTIONS(755),
[anon_sym_GT_AMP] = ACTIONS(755),
[anon_sym_DQUOTE] = ACTIONS(755),
[sym_raw_string] = ACTIONS(755),
[anon_sym_DOLLAR] = ACTIONS(1760),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(755),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(755),
[anon_sym_BQUOTE] = ACTIONS(755),
[anon_sym_LT_LPAREN] = ACTIONS(755),
[anon_sym_GT_LPAREN] = ACTIONS(755),
[sym_word] = ACTIONS(757),
[sym_comment] = ACTIONS(52),
},
[582] = {
[sym_special_variable_name] = STATE(885),
[anon_sym_DASH] = ACTIONS(1768),
[anon_sym_DOLLAR] = ACTIONS(1768),
[anon_sym_POUND] = ACTIONS(1768),
[anon_sym_AT] = ACTIONS(1768),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1770),
[anon_sym_STAR] = ACTIONS(1768),
[anon_sym_QMARK] = ACTIONS(1768),
[anon_sym_BANG] = ACTIONS(1768),
[anon_sym_0] = ACTIONS(1772),
[anon_sym__] = ACTIONS(1772),
},
[583] = {
[sym_special_variable_name] = STATE(888),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(1774),
[anon_sym_AT] = ACTIONS(174),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1776),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[584] = {
[sym_for_statement] = STATE(889),
[sym_while_statement] = STATE(889),
[sym_if_statement] = STATE(889),
[sym_case_statement] = STATE(889),
[sym_function_definition] = STATE(889),
[sym_subshell] = STATE(889),
[sym_pipeline] = STATE(889),
[sym_list] = STATE(889),
[sym_bracket_command] = STATE(889),
[sym_command] = STATE(889),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(890),
[sym_declaration_command] = STATE(889),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[585] = {
[sym_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_bracket_command] = STATE(891),
[sym_command] = STATE(891),
[sym_command_name] = STATE(139),
[sym_variable_assignment] = STATE(892),
[sym_declaration_command] = STATE(891),
[sym_subscript] = STATE(141),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(136),
[sym_simple_expansion] = STATE(136),
[sym_expansion] = STATE(136),
[sym_command_substitution] = STATE(136),
[sym_process_substitution] = STATE(136),
[aux_sym_command_repeat1] = STATE(142),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(218),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(220),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(222),
[anon_sym_typeset] = ACTIONS(222),
[anon_sym_export] = ACTIONS(222),
[anon_sym_readonly] = ACTIONS(222),
[anon_sym_local] = ACTIONS(222),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(224),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(226),
[sym_comment] = ACTIONS(52),
},
[586] = {
[sym_for_statement] = STATE(893),
[sym_while_statement] = STATE(893),
[sym_if_statement] = STATE(893),
[sym_case_statement] = STATE(893),
[sym_function_definition] = STATE(893),
[sym_subshell] = STATE(893),
[sym_pipeline] = STATE(893),
[sym_list] = STATE(893),
[sym_bracket_command] = STATE(893),
[sym_command] = STATE(893),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(894),
[sym_declaration_command] = STATE(893),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[587] = {
[sym_concatenation] = STATE(455),
[sym_string] = STATE(449),
[sym_simple_expansion] = STATE(449),
[sym_expansion] = STATE(449),
[sym_command_substitution] = STATE(449),
[sym_process_substitution] = STATE(449),
[aux_sym_for_statement_repeat1] = STATE(895),
[anon_sym_DQUOTE] = ACTIONS(791),
[sym_raw_string] = ACTIONS(793),
[anon_sym_DOLLAR] = ACTIONS(795),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(797),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(799),
[anon_sym_BQUOTE] = ACTIONS(801),
[anon_sym_LT_LPAREN] = ACTIONS(803),
[anon_sym_GT_LPAREN] = ACTIONS(803),
[sym_word] = ACTIONS(805),
[sym_comment] = ACTIONS(52),
},
[588] = {
[sym__terminated_statement] = STATE(458),
[sym_for_statement] = STATE(459),
[sym_while_statement] = STATE(459),
[sym_if_statement] = STATE(459),
[sym_case_statement] = STATE(459),
[sym_function_definition] = STATE(459),
[sym_subshell] = STATE(459),
[sym_pipeline] = STATE(459),
[sym_list] = STATE(459),
[sym_bracket_command] = STATE(459),
[sym_command] = STATE(459),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(460),
[sym_declaration_command] = STATE(459),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(897),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_done] = ACTIONS(1778),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[589] = {
[anon_sym_PIPE] = ACTIONS(1780),
[anon_sym_RPAREN] = ACTIONS(1782),
[anon_sym_PIPE_AMP] = ACTIONS(1782),
[anon_sym_AMP_AMP] = ACTIONS(1782),
[anon_sym_PIPE_PIPE] = ACTIONS(1782),
[anon_sym_BQUOTE] = ACTIONS(1782),
[sym_comment] = ACTIONS(52),
},
[590] = {
[sym__terminated_statement] = STATE(465),
[sym_for_statement] = STATE(466),
[sym_while_statement] = STATE(466),
[sym_if_statement] = STATE(466),
[sym_elif_clause] = STATE(467),
[sym_else_clause] = STATE(899),
[sym_case_statement] = STATE(466),
[sym_function_definition] = STATE(466),
[sym_subshell] = STATE(466),
[sym_pipeline] = STATE(466),
[sym_list] = STATE(466),
[sym_bracket_command] = STATE(466),
[sym_command] = STATE(466),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(469),
[sym_declaration_command] = STATE(466),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(900),
[aux_sym_if_statement_repeat1] = STATE(901),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_fi] = ACTIONS(1784),
[anon_sym_elif] = ACTIONS(813),
[anon_sym_else] = ACTIONS(815),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[591] = {
[anon_sym_SEMI_SEMI] = ACTIONS(1786),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1786),
[anon_sym_LF] = ACTIONS(1786),
[anon_sym_AMP] = ACTIONS(1786),
},
[592] = {
[anon_sym_in] = ACTIONS(1788),
[sym_comment] = ACTIONS(52),
},
[593] = {
[anon_sym_RPAREN] = ACTIONS(1790),
[sym_comment] = ACTIONS(52),
},
[594] = {
[sym_file_redirect] = STATE(905),
[sym_file_descriptor] = ACTIONS(1228),
[anon_sym_PIPE] = ACTIONS(1792),
[anon_sym_RPAREN] = ACTIONS(1794),
[anon_sym_PIPE_AMP] = ACTIONS(1794),
[anon_sym_AMP_AMP] = ACTIONS(1794),
[anon_sym_PIPE_PIPE] = ACTIONS(1794),
[anon_sym_LT] = ACTIONS(1234),
[anon_sym_GT] = ACTIONS(1234),
[anon_sym_GT_GT] = ACTIONS(1236),
[anon_sym_AMP_GT] = ACTIONS(1234),
[anon_sym_AMP_GT_GT] = ACTIONS(1236),
[anon_sym_LT_AMP] = ACTIONS(1236),
[anon_sym_GT_AMP] = ACTIONS(1236),
[sym_comment] = ACTIONS(52),
},
[595] = {
[anon_sym_PIPE] = ACTIONS(1796),
[anon_sym_RPAREN] = ACTIONS(1798),
[anon_sym_PIPE_AMP] = ACTIONS(1798),
[anon_sym_AMP_AMP] = ACTIONS(1798),
[anon_sym_PIPE_PIPE] = ACTIONS(1798),
[anon_sym_BQUOTE] = ACTIONS(1798),
[sym_comment] = ACTIONS(52),
},
[596] = {
[sym_file_descriptor] = ACTIONS(616),
[sym_variable_name] = ACTIONS(616),
[anon_sym_for] = ACTIONS(618),
[anon_sym_while] = ACTIONS(618),
[anon_sym_if] = ACTIONS(618),
[anon_sym_case] = ACTIONS(618),
[anon_sym_RPAREN] = ACTIONS(1800),
[anon_sym_function] = ACTIONS(618),
[anon_sym_LPAREN] = ACTIONS(616),
[anon_sym_LBRACK] = ACTIONS(618),
[anon_sym_LBRACK_LBRACK] = ACTIONS(618),
[anon_sym_declare] = ACTIONS(618),
[anon_sym_typeset] = ACTIONS(618),
[anon_sym_export] = ACTIONS(618),
[anon_sym_readonly] = ACTIONS(618),
[anon_sym_local] = ACTIONS(618),
[anon_sym_LT] = ACTIONS(618),
[anon_sym_GT] = ACTIONS(618),
[anon_sym_GT_GT] = ACTIONS(616),
[anon_sym_AMP_GT] = ACTIONS(618),
[anon_sym_AMP_GT_GT] = ACTIONS(616),
[anon_sym_LT_AMP] = ACTIONS(616),
[anon_sym_GT_AMP] = ACTIONS(616),
[anon_sym_DQUOTE] = ACTIONS(616),
[sym_raw_string] = ACTIONS(616),
[anon_sym_DOLLAR] = ACTIONS(618),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(616),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(616),
[anon_sym_BQUOTE] = ACTIONS(616),
[anon_sym_LT_LPAREN] = ACTIONS(616),
[anon_sym_GT_LPAREN] = ACTIONS(616),
[sym_word] = ACTIONS(620),
[sym_comment] = ACTIONS(52),
},
[597] = {
[anon_sym_PIPE] = ACTIONS(362),
[anon_sym_RPAREN] = ACTIONS(1802),
[anon_sym_SEMI_SEMI] = ACTIONS(1804),
[anon_sym_PIPE_AMP] = ACTIONS(362),
[anon_sym_AMP_AMP] = ACTIONS(368),
[anon_sym_PIPE_PIPE] = ACTIONS(368),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1804),
[anon_sym_LF] = ACTIONS(1804),
[anon_sym_AMP] = ACTIONS(1804),
},
[598] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(362),
[anon_sym_RPAREN] = ACTIONS(1802),
[anon_sym_SEMI_SEMI] = ACTIONS(1804),
[anon_sym_PIPE_AMP] = ACTIONS(362),
[anon_sym_AMP_AMP] = ACTIONS(368),
[anon_sym_PIPE_PIPE] = ACTIONS(368),
[anon_sym_LT] = ACTIONS(270),
[anon_sym_GT] = ACTIONS(270),
[anon_sym_GT_GT] = ACTIONS(270),
[anon_sym_AMP_GT] = ACTIONS(270),
[anon_sym_AMP_GT_GT] = ACTIONS(270),
[anon_sym_LT_AMP] = ACTIONS(270),
[anon_sym_GT_AMP] = ACTIONS(270),
[anon_sym_DQUOTE] = ACTIONS(270),
[sym_raw_string] = ACTIONS(270),
[anon_sym_DOLLAR] = ACTIONS(270),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(270),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(270),
[anon_sym_BQUOTE] = ACTIONS(270),
[anon_sym_LT_LPAREN] = ACTIONS(270),
[anon_sym_GT_LPAREN] = ACTIONS(270),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1804),
[anon_sym_LF] = ACTIONS(1804),
[anon_sym_AMP] = ACTIONS(1804),
},
[599] = {
[anon_sym_PIPE] = ACTIONS(1806),
[anon_sym_RPAREN] = ACTIONS(1808),
[anon_sym_PIPE_AMP] = ACTIONS(1808),
[anon_sym_AMP_AMP] = ACTIONS(1808),
[anon_sym_PIPE_PIPE] = ACTIONS(1808),
[anon_sym_BQUOTE] = ACTIONS(1808),
[sym_comment] = ACTIONS(52),
},
[600] = {
[sym_concatenation] = STATE(908),
[sym_string] = STATE(911),
[sym_array] = STATE(908),
[sym_simple_expansion] = STATE(911),
[sym_expansion] = STATE(911),
[sym_command_substitution] = STATE(911),
[sym_process_substitution] = STATE(911),
[sym__empty_value] = ACTIONS(1810),
[anon_sym_LPAREN] = ACTIONS(1812),
[anon_sym_DQUOTE] = ACTIONS(1814),
[sym_raw_string] = ACTIONS(1816),
[anon_sym_DOLLAR] = ACTIONS(1818),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1820),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1822),
[anon_sym_BQUOTE] = ACTIONS(1824),
[anon_sym_LT_LPAREN] = ACTIONS(1826),
[anon_sym_GT_LPAREN] = ACTIONS(1826),
[sym_word] = ACTIONS(1828),
[sym_comment] = ACTIONS(52),
},
[601] = {
[sym_variable_name] = ACTIONS(320),
[anon_sym_PIPE] = ACTIONS(1166),
[anon_sym_RPAREN] = ACTIONS(320),
[anon_sym_PIPE_AMP] = ACTIONS(320),
[anon_sym_AMP_AMP] = ACTIONS(320),
[anon_sym_PIPE_PIPE] = ACTIONS(320),
[anon_sym_BQUOTE] = ACTIONS(320),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(1166),
},
[602] = {
[sym_variable_name] = ACTIONS(1019),
[anon_sym_PIPE] = ACTIONS(1830),
[anon_sym_RPAREN] = ACTIONS(1019),
[anon_sym_PIPE_AMP] = ACTIONS(1019),
[anon_sym_AMP_AMP] = ACTIONS(1019),
[anon_sym_PIPE_PIPE] = ACTIONS(1019),
[anon_sym_DASH] = ACTIONS(1019),
[anon_sym_BQUOTE] = ACTIONS(1019),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(1830),
},
[603] = {
[aux_sym_declaration_command_repeat1] = STATE(603),
[sym_variable_name] = ACTIONS(1023),
[anon_sym_PIPE] = ACTIONS(1832),
[anon_sym_RPAREN] = ACTIONS(1023),
[anon_sym_PIPE_AMP] = ACTIONS(1023),
[anon_sym_AMP_AMP] = ACTIONS(1023),
[anon_sym_PIPE_PIPE] = ACTIONS(1023),
[anon_sym_DASH] = ACTIONS(1834),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(1832),
},
[604] = {
[sym_variable_assignment] = STATE(324),
[sym_subscript] = STATE(325),
[aux_sym_declaration_command_repeat2] = STATE(605),
[sym_variable_name] = ACTIONS(516),
[anon_sym_PIPE] = ACTIONS(1837),
[anon_sym_RPAREN] = ACTIONS(1839),
[anon_sym_PIPE_AMP] = ACTIONS(1839),
[anon_sym_AMP_AMP] = ACTIONS(1839),
[anon_sym_PIPE_PIPE] = ACTIONS(1839),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(524),
},
[605] = {
[sym_variable_assignment] = STATE(324),
[sym_subscript] = STATE(325),
[aux_sym_declaration_command_repeat2] = STATE(605),
[sym_variable_name] = ACTIONS(1841),
[anon_sym_PIPE] = ACTIONS(1844),
[anon_sym_RPAREN] = ACTIONS(1846),
[anon_sym_PIPE_AMP] = ACTIONS(1846),
[anon_sym_AMP_AMP] = ACTIONS(1846),
[anon_sym_PIPE_PIPE] = ACTIONS(1846),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(1848),
},
[606] = {
[sym_file_descriptor] = ACTIONS(1088),
[sym__concat] = ACTIONS(1088),
[anon_sym_PIPE] = ACTIONS(1611),
[anon_sym_RPAREN] = ACTIONS(1088),
[anon_sym_PIPE_AMP] = ACTIONS(1088),
[anon_sym_AMP_AMP] = ACTIONS(1088),
[anon_sym_PIPE_PIPE] = ACTIONS(1611),
[anon_sym_LT] = ACTIONS(1611),
[anon_sym_GT] = ACTIONS(1611),
[anon_sym_GT_GT] = ACTIONS(1088),
[anon_sym_AMP_GT] = ACTIONS(1611),
[anon_sym_AMP_GT_GT] = ACTIONS(1088),
[anon_sym_LT_AMP] = ACTIONS(1088),
[anon_sym_GT_AMP] = ACTIONS(1088),
[anon_sym_LT_LT] = ACTIONS(1611),
[anon_sym_LT_LT_DASH] = ACTIONS(1088),
[anon_sym_DQUOTE] = ACTIONS(1088),
[sym_raw_string] = ACTIONS(1088),
[anon_sym_DOLLAR] = ACTIONS(1611),
[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_word] = ACTIONS(1090),
[sym_comment] = ACTIONS(52),
},
[607] = {
[sym_file_descriptor] = ACTIONS(1109),
[sym__concat] = ACTIONS(1109),
[anon_sym_PIPE] = ACTIONS(1613),
[anon_sym_RPAREN] = ACTIONS(1109),
[anon_sym_PIPE_AMP] = ACTIONS(1109),
[anon_sym_AMP_AMP] = ACTIONS(1109),
[anon_sym_PIPE_PIPE] = ACTIONS(1613),
[anon_sym_LT] = ACTIONS(1613),
[anon_sym_GT] = ACTIONS(1613),
[anon_sym_GT_GT] = ACTIONS(1109),
[anon_sym_AMP_GT] = ACTIONS(1613),
[anon_sym_AMP_GT_GT] = ACTIONS(1109),
[anon_sym_LT_AMP] = ACTIONS(1109),
[anon_sym_GT_AMP] = ACTIONS(1109),
[anon_sym_LT_LT] = ACTIONS(1613),
[anon_sym_LT_LT_DASH] = ACTIONS(1109),
[anon_sym_DQUOTE] = ACTIONS(1109),
[sym_raw_string] = ACTIONS(1109),
[anon_sym_DOLLAR] = ACTIONS(1613),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1109),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1109),
[anon_sym_BQUOTE] = ACTIONS(1109),
[anon_sym_LT_LPAREN] = ACTIONS(1109),
[anon_sym_GT_LPAREN] = ACTIONS(1109),
[sym_word] = ACTIONS(1111),
[sym_comment] = ACTIONS(52),
},
[608] = {
[aux_sym_concatenation_repeat1] = STATE(608),
[sym_file_descriptor] = ACTIONS(1109),
[sym__concat] = ACTIONS(1851),
[anon_sym_PIPE] = ACTIONS(1613),
[anon_sym_RPAREN] = ACTIONS(1109),
[anon_sym_PIPE_AMP] = ACTIONS(1109),
[anon_sym_AMP_AMP] = ACTIONS(1109),
[anon_sym_PIPE_PIPE] = ACTIONS(1613),
[anon_sym_LT] = ACTIONS(1613),
[anon_sym_GT] = ACTIONS(1613),
[anon_sym_GT_GT] = ACTIONS(1109),
[anon_sym_AMP_GT] = ACTIONS(1613),
[anon_sym_AMP_GT_GT] = ACTIONS(1109),
[anon_sym_LT_AMP] = ACTIONS(1109),
[anon_sym_GT_AMP] = ACTIONS(1109),
[anon_sym_LT_LT] = ACTIONS(1613),
[anon_sym_LT_LT_DASH] = ACTIONS(1109),
[anon_sym_DQUOTE] = ACTIONS(1109),
[sym_raw_string] = ACTIONS(1109),
[anon_sym_DOLLAR] = ACTIONS(1613),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1109),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1109),
[anon_sym_BQUOTE] = ACTIONS(1109),
[anon_sym_LT_LPAREN] = ACTIONS(1109),
[anon_sym_GT_LPAREN] = ACTIONS(1109),
[sym_word] = ACTIONS(1111),
[sym_comment] = ACTIONS(52),
},
[609] = {
[anon_sym_RBRACE] = ACTIONS(1854),
[anon_sym_LBRACK] = ACTIONS(1856),
[sym_comment] = ACTIONS(52),
},
[610] = {
[anon_sym_RBRACE] = ACTIONS(1858),
[anon_sym_LBRACK] = ACTIONS(1860),
[sym_comment] = ACTIONS(52),
},
[611] = {
[sym_file_descriptor] = ACTIONS(1124),
[sym__concat] = ACTIONS(1124),
[anon_sym_PIPE] = ACTIONS(1626),
[anon_sym_RPAREN] = ACTIONS(1124),
[anon_sym_PIPE_AMP] = ACTIONS(1124),
[anon_sym_AMP_AMP] = ACTIONS(1124),
[anon_sym_PIPE_PIPE] = ACTIONS(1626),
[anon_sym_LT] = ACTIONS(1626),
[anon_sym_GT] = ACTIONS(1626),
[anon_sym_GT_GT] = ACTIONS(1124),
[anon_sym_AMP_GT] = ACTIONS(1626),
[anon_sym_AMP_GT_GT] = ACTIONS(1124),
[anon_sym_LT_AMP] = ACTIONS(1124),
[anon_sym_GT_AMP] = ACTIONS(1124),
[anon_sym_LT_LT] = ACTIONS(1626),
[anon_sym_LT_LT_DASH] = ACTIONS(1124),
[anon_sym_DQUOTE] = ACTIONS(1124),
[sym_raw_string] = ACTIONS(1124),
[anon_sym_DOLLAR] = ACTIONS(1626),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1124),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1124),
[anon_sym_BQUOTE] = ACTIONS(1124),
[anon_sym_LT_LPAREN] = ACTIONS(1124),
[anon_sym_GT_LPAREN] = ACTIONS(1124),
[sym_word] = ACTIONS(1126),
[sym_comment] = ACTIONS(52),
},
[612] = {
[anon_sym_AT] = ACTIONS(1862),
[sym_comment] = ACTIONS(52),
},
[613] = {
[sym_concatenation] = STATE(924),
[sym_string] = STATE(923),
[sym_simple_expansion] = STATE(923),
[sym_expansion] = STATE(923),
[sym_command_substitution] = STATE(923),
[sym_process_substitution] = STATE(923),
[anon_sym_RBRACE] = ACTIONS(1864),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(1866),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(1868),
[sym_comment] = ACTIONS(52),
},
[614] = {
[sym_file_descriptor] = ACTIONS(1136),
[sym__concat] = ACTIONS(1136),
[anon_sym_PIPE] = ACTIONS(1636),
[anon_sym_RPAREN] = ACTIONS(1136),
[anon_sym_PIPE_AMP] = ACTIONS(1136),
[anon_sym_AMP_AMP] = ACTIONS(1136),
[anon_sym_PIPE_PIPE] = ACTIONS(1636),
[anon_sym_LT] = ACTIONS(1636),
[anon_sym_GT] = ACTIONS(1636),
[anon_sym_GT_GT] = ACTIONS(1136),
[anon_sym_AMP_GT] = ACTIONS(1636),
[anon_sym_AMP_GT_GT] = ACTIONS(1136),
[anon_sym_LT_AMP] = ACTIONS(1136),
[anon_sym_GT_AMP] = ACTIONS(1136),
[anon_sym_LT_LT] = ACTIONS(1636),
[anon_sym_LT_LT_DASH] = ACTIONS(1136),
[anon_sym_DQUOTE] = ACTIONS(1136),
[sym_raw_string] = ACTIONS(1136),
[anon_sym_DOLLAR] = ACTIONS(1636),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1136),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1136),
[anon_sym_BQUOTE] = ACTIONS(1136),
[anon_sym_LT_LPAREN] = ACTIONS(1136),
[anon_sym_GT_LPAREN] = ACTIONS(1136),
[sym_word] = ACTIONS(1138),
[sym_comment] = ACTIONS(52),
},
[615] = {
[anon_sym_AT] = ACTIONS(1870),
[sym_comment] = ACTIONS(52),
},
[616] = {
[sym_concatenation] = STATE(927),
[sym_string] = STATE(926),
[sym_simple_expansion] = STATE(926),
[sym_expansion] = STATE(926),
[sym_command_substitution] = STATE(926),
[sym_process_substitution] = STATE(926),
[anon_sym_RBRACE] = ACTIONS(1858),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(1872),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(1874),
[sym_comment] = ACTIONS(52),
},
[617] = {
[sym_file_descriptor] = ACTIONS(1238),
[sym__concat] = ACTIONS(1238),
[anon_sym_PIPE] = ACTIONS(1644),
[anon_sym_RPAREN] = ACTIONS(1238),
[anon_sym_PIPE_AMP] = ACTIONS(1238),
[anon_sym_AMP_AMP] = ACTIONS(1238),
[anon_sym_PIPE_PIPE] = ACTIONS(1644),
[anon_sym_LT] = ACTIONS(1644),
[anon_sym_GT] = ACTIONS(1644),
[anon_sym_GT_GT] = ACTIONS(1238),
[anon_sym_AMP_GT] = ACTIONS(1644),
[anon_sym_AMP_GT_GT] = ACTIONS(1238),
[anon_sym_LT_AMP] = ACTIONS(1238),
[anon_sym_GT_AMP] = ACTIONS(1238),
[anon_sym_LT_LT] = ACTIONS(1644),
[anon_sym_LT_LT_DASH] = ACTIONS(1238),
[anon_sym_DQUOTE] = ACTIONS(1238),
[sym_raw_string] = ACTIONS(1238),
[anon_sym_DOLLAR] = ACTIONS(1644),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1238),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1238),
[anon_sym_BQUOTE] = ACTIONS(1238),
[anon_sym_LT_LPAREN] = ACTIONS(1238),
[anon_sym_GT_LPAREN] = ACTIONS(1238),
[sym_word] = ACTIONS(1240),
[sym_comment] = ACTIONS(52),
},
[618] = {
[sym_file_descriptor] = ACTIONS(1296),
[sym__concat] = ACTIONS(1296),
[anon_sym_PIPE] = ACTIONS(1646),
[anon_sym_RPAREN] = ACTIONS(1296),
[anon_sym_PIPE_AMP] = ACTIONS(1296),
[anon_sym_AMP_AMP] = ACTIONS(1296),
[anon_sym_PIPE_PIPE] = ACTIONS(1646),
[anon_sym_LT] = ACTIONS(1646),
[anon_sym_GT] = ACTIONS(1646),
[anon_sym_GT_GT] = ACTIONS(1296),
[anon_sym_AMP_GT] = ACTIONS(1646),
[anon_sym_AMP_GT_GT] = ACTIONS(1296),
[anon_sym_LT_AMP] = ACTIONS(1296),
[anon_sym_GT_AMP] = ACTIONS(1296),
[anon_sym_LT_LT] = ACTIONS(1646),
[anon_sym_LT_LT_DASH] = ACTIONS(1296),
[anon_sym_DQUOTE] = ACTIONS(1296),
[sym_raw_string] = ACTIONS(1296),
[anon_sym_DOLLAR] = ACTIONS(1646),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1296),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1296),
[anon_sym_BQUOTE] = ACTIONS(1296),
[anon_sym_LT_LPAREN] = ACTIONS(1296),
[anon_sym_GT_LPAREN] = ACTIONS(1296),
[sym_word] = ACTIONS(1298),
[sym_comment] = ACTIONS(52),
},
[619] = {
[sym_compound_statement] = STATE(928),
[anon_sym_LBRACE] = ACTIONS(544),
[sym_comment] = ACTIONS(52),
},
[620] = {
[sym_file_descriptor] = ACTIONS(1300),
[anon_sym_PIPE] = ACTIONS(1876),
[anon_sym_RPAREN] = ACTIONS(1300),
[anon_sym_PIPE_AMP] = ACTIONS(1300),
[anon_sym_AMP_AMP] = ACTIONS(1300),
[anon_sym_PIPE_PIPE] = ACTIONS(1300),
[anon_sym_LT] = ACTIONS(1876),
[anon_sym_GT] = ACTIONS(1876),
[anon_sym_GT_GT] = ACTIONS(1300),
[anon_sym_AMP_GT] = ACTIONS(1876),
[anon_sym_AMP_GT_GT] = ACTIONS(1300),
[anon_sym_LT_AMP] = ACTIONS(1300),
[anon_sym_GT_AMP] = ACTIONS(1300),
[anon_sym_BQUOTE] = ACTIONS(1300),
[sym_comment] = ACTIONS(52),
},
[621] = {
[sym__terminated_statement] = STATE(23),
[sym_for_statement] = STATE(24),
[sym_while_statement] = STATE(24),
[sym_if_statement] = STATE(24),
[sym_case_statement] = STATE(24),
[sym_function_definition] = STATE(24),
[sym_subshell] = STATE(24),
[sym_pipeline] = STATE(24),
[sym_list] = STATE(24),
[sym_bracket_command] = STATE(24),
[sym_command] = STATE(24),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(26),
[sym_declaration_command] = STATE(24),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(667),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_RBRACE] = ACTIONS(1878),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[622] = {
[anon_sym_LT] = ACTIONS(1880),
[anon_sym_GT] = ACTIONS(1880),
[anon_sym_GT_GT] = ACTIONS(1882),
[anon_sym_AMP_GT] = ACTIONS(1880),
[anon_sym_AMP_GT_GT] = ACTIONS(1882),
[anon_sym_LT_AMP] = ACTIONS(1882),
[anon_sym_GT_AMP] = ACTIONS(1882),
[sym_comment] = ACTIONS(52),
},
[623] = {
[sym_concatenation] = STATE(938),
[sym_string] = STATE(932),
[sym_simple_expansion] = STATE(932),
[sym_expansion] = STATE(932),
[sym_command_substitution] = STATE(932),
[sym_process_substitution] = STATE(932),
[anon_sym_DQUOTE] = ACTIONS(1884),
[sym_raw_string] = ACTIONS(1886),
[anon_sym_DOLLAR] = ACTIONS(1888),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1890),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1892),
[anon_sym_BQUOTE] = ACTIONS(1894),
[anon_sym_LT_LPAREN] = ACTIONS(1896),
[anon_sym_GT_LPAREN] = ACTIONS(1896),
[sym_word] = ACTIONS(1898),
[sym_comment] = ACTIONS(52),
},
[624] = {
[anon_sym_PIPE] = ACTIONS(1792),
[anon_sym_RPAREN] = ACTIONS(1794),
[anon_sym_PIPE_AMP] = ACTIONS(1794),
[anon_sym_AMP_AMP] = ACTIONS(1794),
[anon_sym_PIPE_PIPE] = ACTIONS(1794),
[anon_sym_BQUOTE] = ACTIONS(1794),
[sym_comment] = ACTIONS(52),
},
[625] = {
[anon_sym_PIPE] = ACTIONS(1900),
[anon_sym_RPAREN] = ACTIONS(1902),
[anon_sym_PIPE_AMP] = ACTIONS(1902),
[anon_sym_AMP_AMP] = ACTIONS(1902),
[anon_sym_PIPE_PIPE] = ACTIONS(1902),
[anon_sym_BQUOTE] = ACTIONS(1902),
[sym_comment] = ACTIONS(52),
},
[626] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(1900),
[anon_sym_RPAREN] = ACTIONS(1902),
[anon_sym_PIPE_AMP] = ACTIONS(1902),
[anon_sym_AMP_AMP] = ACTIONS(1902),
[anon_sym_PIPE_PIPE] = ACTIONS(1900),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[627] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(1904),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(1904),
[anon_sym_PIPE_PIPE] = ACTIONS(1904),
[sym_comment] = ACTIONS(52),
},
[628] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(1904),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(1904),
[anon_sym_PIPE_PIPE] = ACTIONS(1906),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[629] = {
[sym_concatenation] = STATE(940),
[sym_string] = STATE(939),
[sym_simple_expansion] = STATE(939),
[sym_expansion] = STATE(939),
[sym_command_substitution] = STATE(939),
[sym_process_substitution] = STATE(939),
[anon_sym_DQUOTE] = ACTIONS(1246),
[sym_raw_string] = ACTIONS(1908),
[anon_sym_DOLLAR] = ACTIONS(1250),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1252),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1254),
[anon_sym_BQUOTE] = ACTIONS(1256),
[anon_sym_LT_LPAREN] = ACTIONS(1258),
[anon_sym_GT_LPAREN] = ACTIONS(1258),
[sym_word] = ACTIONS(1910),
[sym_comment] = ACTIONS(52),
},
[630] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(942),
[anon_sym_DQUOTE] = ACTIONS(1912),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[631] = {
[aux_sym_concatenation_repeat1] = STATE(944),
[sym_file_descriptor] = ACTIONS(430),
[sym__concat] = ACTIONS(1914),
[anon_sym_PIPE] = ACTIONS(434),
[anon_sym_RPAREN] = ACTIONS(430),
[anon_sym_PIPE_AMP] = ACTIONS(430),
[anon_sym_AMP_AMP] = ACTIONS(430),
[anon_sym_PIPE_PIPE] = ACTIONS(430),
[anon_sym_LT] = ACTIONS(434),
[anon_sym_GT] = ACTIONS(434),
[anon_sym_GT_GT] = ACTIONS(430),
[anon_sym_AMP_GT] = ACTIONS(434),
[anon_sym_AMP_GT_GT] = ACTIONS(430),
[anon_sym_LT_AMP] = ACTIONS(430),
[anon_sym_GT_AMP] = ACTIONS(430),
[anon_sym_LT_LT] = ACTIONS(434),
[anon_sym_LT_LT_DASH] = ACTIONS(430),
[sym_comment] = ACTIONS(52),
},
[632] = {
[sym_special_variable_name] = STATE(947),
[anon_sym_DASH] = ACTIONS(1916),
[anon_sym_DOLLAR] = ACTIONS(1916),
[anon_sym_POUND] = ACTIONS(1916),
[anon_sym_AT] = ACTIONS(1916),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1918),
[anon_sym_STAR] = ACTIONS(1916),
[anon_sym_QMARK] = ACTIONS(1916),
[anon_sym_BANG] = ACTIONS(1916),
[anon_sym_0] = ACTIONS(1920),
[anon_sym__] = ACTIONS(1920),
},
[633] = {
[sym_special_variable_name] = STATE(950),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(1922),
[anon_sym_AT] = ACTIONS(174),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1924),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[634] = {
[sym_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_bracket_command] = STATE(951),
[sym_command] = STATE(951),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(952),
[sym_declaration_command] = STATE(951),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[635] = {
[sym_for_statement] = STATE(953),
[sym_while_statement] = STATE(953),
[sym_if_statement] = STATE(953),
[sym_case_statement] = STATE(953),
[sym_function_definition] = STATE(953),
[sym_subshell] = STATE(953),
[sym_pipeline] = STATE(953),
[sym_list] = STATE(953),
[sym_bracket_command] = STATE(953),
[sym_command] = STATE(953),
[sym_command_name] = STATE(139),
[sym_variable_assignment] = STATE(954),
[sym_declaration_command] = STATE(953),
[sym_subscript] = STATE(141),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(136),
[sym_simple_expansion] = STATE(136),
[sym_expansion] = STATE(136),
[sym_command_substitution] = STATE(136),
[sym_process_substitution] = STATE(136),
[aux_sym_command_repeat1] = STATE(142),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(218),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(220),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(222),
[anon_sym_typeset] = ACTIONS(222),
[anon_sym_export] = ACTIONS(222),
[anon_sym_readonly] = ACTIONS(222),
[anon_sym_local] = ACTIONS(222),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(224),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(226),
[sym_comment] = ACTIONS(52),
},
[636] = {
[sym_for_statement] = STATE(955),
[sym_while_statement] = STATE(955),
[sym_if_statement] = STATE(955),
[sym_case_statement] = STATE(955),
[sym_function_definition] = STATE(955),
[sym_subshell] = STATE(955),
[sym_pipeline] = STATE(955),
[sym_list] = STATE(955),
[sym_bracket_command] = STATE(955),
[sym_command] = STATE(955),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(956),
[sym_declaration_command] = STATE(955),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[637] = {
[sym_file_descriptor] = ACTIONS(430),
[anon_sym_PIPE] = ACTIONS(434),
[anon_sym_RPAREN] = ACTIONS(430),
[anon_sym_PIPE_AMP] = ACTIONS(430),
[anon_sym_AMP_AMP] = ACTIONS(430),
[anon_sym_PIPE_PIPE] = ACTIONS(430),
[anon_sym_LT] = ACTIONS(434),
[anon_sym_GT] = ACTIONS(434),
[anon_sym_GT_GT] = ACTIONS(430),
[anon_sym_AMP_GT] = ACTIONS(434),
[anon_sym_AMP_GT_GT] = ACTIONS(430),
[anon_sym_LT_AMP] = ACTIONS(430),
[anon_sym_GT_AMP] = ACTIONS(430),
[anon_sym_LT_LT] = ACTIONS(434),
[anon_sym_LT_LT_DASH] = ACTIONS(430),
[anon_sym_BQUOTE] = ACTIONS(430),
[sym_comment] = ACTIONS(52),
},
[638] = {
[sym_file_descriptor] = ACTIONS(1350),
[anon_sym_PIPE] = ACTIONS(1926),
[anon_sym_RPAREN] = ACTIONS(1350),
[anon_sym_PIPE_AMP] = ACTIONS(1350),
[anon_sym_AMP_AMP] = ACTIONS(1350),
[anon_sym_PIPE_PIPE] = ACTIONS(1350),
[anon_sym_LT] = ACTIONS(1926),
[anon_sym_GT] = ACTIONS(1926),
[anon_sym_GT_GT] = ACTIONS(1350),
[anon_sym_AMP_GT] = ACTIONS(1926),
[anon_sym_AMP_GT_GT] = ACTIONS(1350),
[anon_sym_LT_AMP] = ACTIONS(1350),
[anon_sym_GT_AMP] = ACTIONS(1350),
[anon_sym_LT_LT] = ACTIONS(1926),
[anon_sym_LT_LT_DASH] = ACTIONS(1350),
[anon_sym_BQUOTE] = ACTIONS(1350),
[sym_comment] = ACTIONS(52),
},
[639] = {
[sym_simple_expansion] = STATE(695),
[sym_expansion] = STATE(695),
[aux_sym_heredoc_repeat1] = STATE(958),
[sym__heredoc_middle] = ACTIONS(1354),
[sym__heredoc_end] = ACTIONS(1928),
[anon_sym_DOLLAR] = ACTIONS(1358),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1360),
[sym_comment] = ACTIONS(52),
},
[640] = {
[sym_file_descriptor] = ACTIONS(1362),
[anon_sym_PIPE] = ACTIONS(1930),
[anon_sym_RPAREN] = ACTIONS(1362),
[anon_sym_PIPE_AMP] = ACTIONS(1362),
[anon_sym_AMP_AMP] = ACTIONS(1362),
[anon_sym_PIPE_PIPE] = ACTIONS(1362),
[anon_sym_LT] = ACTIONS(1930),
[anon_sym_GT] = ACTIONS(1930),
[anon_sym_GT_GT] = ACTIONS(1362),
[anon_sym_AMP_GT] = ACTIONS(1930),
[anon_sym_AMP_GT_GT] = ACTIONS(1362),
[anon_sym_LT_AMP] = ACTIONS(1362),
[anon_sym_GT_AMP] = ACTIONS(1362),
[anon_sym_LT_LT] = ACTIONS(1930),
[anon_sym_LT_LT_DASH] = ACTIONS(1362),
[anon_sym_BQUOTE] = ACTIONS(1362),
[sym_comment] = ACTIONS(52),
},
[641] = {
[sym_concatenation] = STATE(355),
[sym_string] = STATE(353),
[sym_simple_expansion] = STATE(353),
[sym_expansion] = STATE(353),
[sym_command_substitution] = STATE(353),
[sym_process_substitution] = STATE(353),
[aux_sym_for_statement_repeat1] = STATE(641),
[sym_file_descriptor] = ACTIONS(1366),
[anon_sym_PIPE] = ACTIONS(921),
[anon_sym_RPAREN] = ACTIONS(1366),
[anon_sym_PIPE_AMP] = ACTIONS(1366),
[anon_sym_AMP_AMP] = ACTIONS(1366),
[anon_sym_PIPE_PIPE] = ACTIONS(921),
[anon_sym_LT] = ACTIONS(921),
[anon_sym_GT] = ACTIONS(921),
[anon_sym_GT_GT] = ACTIONS(1366),
[anon_sym_AMP_GT] = ACTIONS(921),
[anon_sym_AMP_GT_GT] = ACTIONS(1366),
[anon_sym_LT_AMP] = ACTIONS(1366),
[anon_sym_GT_AMP] = ACTIONS(1366),
[anon_sym_LT_LT] = ACTIONS(921),
[anon_sym_LT_LT_DASH] = ACTIONS(1366),
[anon_sym_DQUOTE] = ACTIONS(1932),
[sym_raw_string] = ACTIONS(1935),
[anon_sym_DOLLAR] = ACTIONS(1938),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1941),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1944),
[anon_sym_BQUOTE] = ACTIONS(1947),
[anon_sym_LT_LPAREN] = ACTIONS(1950),
[anon_sym_GT_LPAREN] = ACTIONS(1950),
[sym_word] = ACTIONS(1953),
[sym_comment] = ACTIONS(52),
},
[642] = {
[sym_file_redirect] = STATE(354),
[sym_heredoc_redirect] = STATE(354),
[aux_sym_command_repeat2] = STATE(643),
[sym_file_descriptor] = ACTIONS(554),
[anon_sym_PIPE] = ACTIONS(1956),
[anon_sym_RPAREN] = ACTIONS(1958),
[anon_sym_PIPE_AMP] = ACTIONS(1958),
[anon_sym_AMP_AMP] = ACTIONS(1958),
[anon_sym_PIPE_PIPE] = ACTIONS(1958),
[anon_sym_LT] = ACTIONS(560),
[anon_sym_GT] = ACTIONS(560),
[anon_sym_GT_GT] = ACTIONS(562),
[anon_sym_AMP_GT] = ACTIONS(560),
[anon_sym_AMP_GT_GT] = ACTIONS(562),
[anon_sym_LT_AMP] = ACTIONS(562),
[anon_sym_GT_AMP] = ACTIONS(562),
[anon_sym_LT_LT] = ACTIONS(564),
[anon_sym_LT_LT_DASH] = ACTIONS(566),
[sym_comment] = ACTIONS(52),
},
[643] = {
[sym_file_redirect] = STATE(354),
[sym_heredoc_redirect] = STATE(354),
[aux_sym_command_repeat2] = STATE(643),
[sym_file_descriptor] = ACTIONS(1960),
[anon_sym_PIPE] = ACTIONS(1963),
[anon_sym_RPAREN] = ACTIONS(1965),
[anon_sym_PIPE_AMP] = ACTIONS(1965),
[anon_sym_AMP_AMP] = ACTIONS(1965),
[anon_sym_PIPE_PIPE] = ACTIONS(1965),
[anon_sym_LT] = ACTIONS(1967),
[anon_sym_GT] = ACTIONS(1967),
[anon_sym_GT_GT] = ACTIONS(1970),
[anon_sym_AMP_GT] = ACTIONS(1967),
[anon_sym_AMP_GT_GT] = ACTIONS(1970),
[anon_sym_LT_AMP] = ACTIONS(1970),
[anon_sym_GT_AMP] = ACTIONS(1970),
[anon_sym_LT_LT] = ACTIONS(1973),
[anon_sym_LT_LT_DASH] = ACTIONS(1976),
[sym_comment] = ACTIONS(52),
},
[644] = {
[sym_file_redirect] = STATE(354),
[sym_heredoc_redirect] = STATE(354),
[sym_concatenation] = STATE(355),
[sym_string] = STATE(353),
[sym_simple_expansion] = STATE(353),
[sym_expansion] = STATE(353),
[sym_command_substitution] = STATE(353),
[sym_process_substitution] = STATE(353),
[aux_sym_for_statement_repeat1] = STATE(641),
[aux_sym_command_repeat2] = STATE(959),
[sym_file_descriptor] = ACTIONS(554),
[anon_sym_PIPE] = ACTIONS(1956),
[anon_sym_RPAREN] = ACTIONS(1958),
[anon_sym_PIPE_AMP] = ACTIONS(1958),
[anon_sym_AMP_AMP] = ACTIONS(1958),
[anon_sym_PIPE_PIPE] = ACTIONS(1956),
[anon_sym_LT] = ACTIONS(560),
[anon_sym_GT] = ACTIONS(560),
[anon_sym_GT_GT] = ACTIONS(562),
[anon_sym_AMP_GT] = ACTIONS(560),
[anon_sym_AMP_GT_GT] = ACTIONS(562),
[anon_sym_LT_AMP] = ACTIONS(562),
[anon_sym_GT_AMP] = ACTIONS(562),
[anon_sym_LT_LT] = ACTIONS(564),
[anon_sym_LT_LT_DASH] = ACTIONS(566),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(568),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(570),
[sym_comment] = ACTIONS(52),
},
[645] = {
[aux_sym_concatenation_repeat1] = STATE(960),
[sym_file_descriptor] = ACTIONS(755),
[sym__concat] = ACTIONS(1766),
[sym_variable_name] = ACTIONS(755),
[anon_sym_PIPE] = ACTIONS(1760),
[anon_sym_PIPE_AMP] = ACTIONS(755),
[anon_sym_AMP_AMP] = ACTIONS(755),
[anon_sym_PIPE_PIPE] = ACTIONS(1760),
[anon_sym_LT] = ACTIONS(1760),
[anon_sym_GT] = ACTIONS(1760),
[anon_sym_GT_GT] = ACTIONS(755),
[anon_sym_AMP_GT] = ACTIONS(1760),
[anon_sym_AMP_GT_GT] = ACTIONS(755),
[anon_sym_LT_AMP] = ACTIONS(755),
[anon_sym_GT_AMP] = ACTIONS(755),
[anon_sym_DQUOTE] = ACTIONS(755),
[sym_raw_string] = ACTIONS(755),
[anon_sym_DOLLAR] = ACTIONS(1760),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(755),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(755),
[anon_sym_BQUOTE] = ACTIONS(755),
[anon_sym_LT_LPAREN] = ACTIONS(755),
[anon_sym_GT_LPAREN] = ACTIONS(755),
[sym_word] = ACTIONS(757),
[sym_comment] = ACTIONS(52),
},
[646] = {
[anon_sym_RPAREN] = ACTIONS(1979),
[sym_comment] = ACTIONS(52),
},
[647] = {
[sym_file_redirect] = STATE(905),
[sym_file_descriptor] = ACTIONS(1282),
[anon_sym_PIPE] = ACTIONS(1792),
[anon_sym_PIPE_AMP] = ACTIONS(1794),
[anon_sym_AMP_AMP] = ACTIONS(1794),
[anon_sym_PIPE_PIPE] = ACTIONS(1794),
[anon_sym_LT] = ACTIONS(1284),
[anon_sym_GT] = ACTIONS(1284),
[anon_sym_GT_GT] = ACTIONS(1286),
[anon_sym_AMP_GT] = ACTIONS(1284),
[anon_sym_AMP_GT_GT] = ACTIONS(1286),
[anon_sym_LT_AMP] = ACTIONS(1286),
[anon_sym_GT_AMP] = ACTIONS(1286),
[anon_sym_BQUOTE] = ACTIONS(1794),
[sym_comment] = ACTIONS(52),
},
[648] = {
[sym_concatenation] = STATE(908),
[sym_string] = STATE(962),
[sym_array] = STATE(908),
[sym_simple_expansion] = STATE(962),
[sym_expansion] = STATE(962),
[sym_command_substitution] = STATE(962),
[sym_process_substitution] = STATE(962),
[sym__empty_value] = ACTIONS(1810),
[anon_sym_LPAREN] = ACTIONS(1812),
[anon_sym_DQUOTE] = ACTIONS(1814),
[sym_raw_string] = ACTIONS(1981),
[anon_sym_DOLLAR] = ACTIONS(1818),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1820),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1822),
[anon_sym_BQUOTE] = ACTIONS(1824),
[anon_sym_LT_LPAREN] = ACTIONS(1826),
[anon_sym_GT_LPAREN] = ACTIONS(1826),
[sym_word] = ACTIONS(1983),
[sym_comment] = ACTIONS(52),
},
[649] = {
[aux_sym_declaration_command_repeat1] = STATE(649),
[sym_variable_name] = ACTIONS(1023),
[anon_sym_PIPE] = ACTIONS(1832),
[anon_sym_PIPE_AMP] = ACTIONS(1023),
[anon_sym_AMP_AMP] = ACTIONS(1023),
[anon_sym_PIPE_PIPE] = ACTIONS(1023),
[anon_sym_DASH] = ACTIONS(1834),
[anon_sym_BQUOTE] = ACTIONS(1023),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(1832),
},
[650] = {
[sym_variable_assignment] = STATE(324),
[sym_subscript] = STATE(362),
[aux_sym_declaration_command_repeat2] = STATE(651),
[sym_variable_name] = ACTIONS(580),
[anon_sym_PIPE] = ACTIONS(1837),
[anon_sym_PIPE_AMP] = ACTIONS(1839),
[anon_sym_AMP_AMP] = ACTIONS(1839),
[anon_sym_PIPE_PIPE] = ACTIONS(1839),
[anon_sym_BQUOTE] = ACTIONS(1839),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(524),
},
[651] = {
[sym_variable_assignment] = STATE(324),
[sym_subscript] = STATE(362),
[aux_sym_declaration_command_repeat2] = STATE(651),
[sym_variable_name] = ACTIONS(1985),
[anon_sym_PIPE] = ACTIONS(1844),
[anon_sym_PIPE_AMP] = ACTIONS(1846),
[anon_sym_AMP_AMP] = ACTIONS(1846),
[anon_sym_PIPE_PIPE] = ACTIONS(1846),
[anon_sym_BQUOTE] = ACTIONS(1846),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(1848),
},
[652] = {
[aux_sym_concatenation_repeat1] = STATE(652),
[sym_file_descriptor] = ACTIONS(1109),
[sym__concat] = ACTIONS(1851),
[anon_sym_PIPE] = ACTIONS(1613),
[anon_sym_PIPE_AMP] = ACTIONS(1109),
[anon_sym_AMP_AMP] = ACTIONS(1109),
[anon_sym_PIPE_PIPE] = ACTIONS(1613),
[anon_sym_LT] = ACTIONS(1613),
[anon_sym_GT] = ACTIONS(1613),
[anon_sym_GT_GT] = ACTIONS(1109),
[anon_sym_AMP_GT] = ACTIONS(1613),
[anon_sym_AMP_GT_GT] = ACTIONS(1109),
[anon_sym_LT_AMP] = ACTIONS(1109),
[anon_sym_GT_AMP] = ACTIONS(1109),
[anon_sym_LT_LT] = ACTIONS(1613),
[anon_sym_LT_LT_DASH] = ACTIONS(1109),
[anon_sym_DQUOTE] = ACTIONS(1109),
[sym_raw_string] = ACTIONS(1109),
[anon_sym_DOLLAR] = ACTIONS(1613),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1109),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1109),
[anon_sym_BQUOTE] = ACTIONS(1109),
[anon_sym_LT_LPAREN] = ACTIONS(1109),
[anon_sym_GT_LPAREN] = ACTIONS(1109),
[sym_word] = ACTIONS(1111),
[sym_comment] = ACTIONS(52),
},
[653] = {
[sym_compound_statement] = STATE(963),
[anon_sym_LBRACE] = ACTIONS(544),
[sym_comment] = ACTIONS(52),
},
[654] = {
[anon_sym_LT] = ACTIONS(1988),
[anon_sym_GT] = ACTIONS(1988),
[anon_sym_GT_GT] = ACTIONS(1990),
[anon_sym_AMP_GT] = ACTIONS(1988),
[anon_sym_AMP_GT_GT] = ACTIONS(1990),
[anon_sym_LT_AMP] = ACTIONS(1990),
[anon_sym_GT_AMP] = ACTIONS(1990),
[sym_comment] = ACTIONS(52),
},
[655] = {
[sym_concatenation] = STATE(938),
[sym_string] = STATE(965),
[sym_simple_expansion] = STATE(965),
[sym_expansion] = STATE(965),
[sym_command_substitution] = STATE(965),
[sym_process_substitution] = STATE(965),
[anon_sym_DQUOTE] = ACTIONS(1884),
[sym_raw_string] = ACTIONS(1992),
[anon_sym_DOLLAR] = ACTIONS(1888),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1890),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1892),
[anon_sym_BQUOTE] = ACTIONS(1894),
[anon_sym_LT_LPAREN] = ACTIONS(1896),
[anon_sym_GT_LPAREN] = ACTIONS(1896),
[sym_word] = ACTIONS(1994),
[sym_comment] = ACTIONS(52),
},
[656] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(1900),
[anon_sym_PIPE_AMP] = ACTIONS(1902),
[anon_sym_AMP_AMP] = ACTIONS(1902),
[anon_sym_PIPE_PIPE] = ACTIONS(1900),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(1902),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[657] = {
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(1904),
[anon_sym_PIPE_PIPE] = ACTIONS(1904),
[anon_sym_BQUOTE] = ACTIONS(1904),
[sym_comment] = ACTIONS(52),
},
[658] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(1904),
[anon_sym_PIPE_PIPE] = ACTIONS(1906),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[659] = {
[sym_concatenation] = STATE(940),
[sym_string] = STATE(966),
[sym_simple_expansion] = STATE(966),
[sym_expansion] = STATE(966),
[sym_command_substitution] = STATE(966),
[sym_process_substitution] = STATE(966),
[anon_sym_DQUOTE] = ACTIONS(1246),
[sym_raw_string] = ACTIONS(1996),
[anon_sym_DOLLAR] = ACTIONS(1250),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1252),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1254),
[anon_sym_BQUOTE] = ACTIONS(1256),
[anon_sym_LT_LPAREN] = ACTIONS(1258),
[anon_sym_GT_LPAREN] = ACTIONS(1258),
[sym_word] = ACTIONS(1998),
[sym_comment] = ACTIONS(52),
},
[660] = {
[aux_sym_concatenation_repeat1] = STATE(967),
[sym_file_descriptor] = ACTIONS(430),
[sym__concat] = ACTIONS(1914),
[anon_sym_PIPE] = ACTIONS(434),
[anon_sym_PIPE_AMP] = ACTIONS(430),
[anon_sym_AMP_AMP] = ACTIONS(430),
[anon_sym_PIPE_PIPE] = ACTIONS(430),
[anon_sym_LT] = ACTIONS(434),
[anon_sym_GT] = ACTIONS(434),
[anon_sym_GT_GT] = ACTIONS(430),
[anon_sym_AMP_GT] = ACTIONS(434),
[anon_sym_AMP_GT_GT] = ACTIONS(430),
[anon_sym_LT_AMP] = ACTIONS(430),
[anon_sym_GT_AMP] = ACTIONS(430),
[anon_sym_LT_LT] = ACTIONS(434),
[anon_sym_LT_LT_DASH] = ACTIONS(430),
[anon_sym_BQUOTE] = ACTIONS(430),
[sym_comment] = ACTIONS(52),
},
[661] = {
[sym_concatenation] = STATE(355),
[sym_string] = STATE(372),
[sym_simple_expansion] = STATE(372),
[sym_expansion] = STATE(372),
[sym_command_substitution] = STATE(372),
[sym_process_substitution] = STATE(372),
[aux_sym_for_statement_repeat1] = STATE(661),
[sym_file_descriptor] = ACTIONS(1366),
[anon_sym_PIPE] = ACTIONS(921),
[anon_sym_PIPE_AMP] = ACTIONS(1366),
[anon_sym_AMP_AMP] = ACTIONS(1366),
[anon_sym_PIPE_PIPE] = ACTIONS(921),
[anon_sym_LT] = ACTIONS(921),
[anon_sym_GT] = ACTIONS(921),
[anon_sym_GT_GT] = ACTIONS(1366),
[anon_sym_AMP_GT] = ACTIONS(921),
[anon_sym_AMP_GT_GT] = ACTIONS(1366),
[anon_sym_LT_AMP] = ACTIONS(1366),
[anon_sym_GT_AMP] = ACTIONS(1366),
[anon_sym_LT_LT] = ACTIONS(921),
[anon_sym_LT_LT_DASH] = ACTIONS(1366),
[anon_sym_DQUOTE] = ACTIONS(1932),
[sym_raw_string] = ACTIONS(2000),
[anon_sym_DOLLAR] = ACTIONS(1938),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1941),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1944),
[anon_sym_BQUOTE] = ACTIONS(1947),
[anon_sym_LT_LPAREN] = ACTIONS(1950),
[anon_sym_GT_LPAREN] = ACTIONS(1950),
[sym_word] = ACTIONS(2003),
[sym_comment] = ACTIONS(52),
},
[662] = {
[sym_file_redirect] = STATE(354),
[sym_heredoc_redirect] = STATE(354),
[aux_sym_command_repeat2] = STATE(663),
[sym_file_descriptor] = ACTIONS(590),
[anon_sym_PIPE] = ACTIONS(1956),
[anon_sym_PIPE_AMP] = ACTIONS(1958),
[anon_sym_AMP_AMP] = ACTIONS(1958),
[anon_sym_PIPE_PIPE] = ACTIONS(1958),
[anon_sym_LT] = ACTIONS(592),
[anon_sym_GT] = ACTIONS(592),
[anon_sym_GT_GT] = ACTIONS(594),
[anon_sym_AMP_GT] = ACTIONS(592),
[anon_sym_AMP_GT_GT] = ACTIONS(594),
[anon_sym_LT_AMP] = ACTIONS(594),
[anon_sym_GT_AMP] = ACTIONS(594),
[anon_sym_LT_LT] = ACTIONS(564),
[anon_sym_LT_LT_DASH] = ACTIONS(566),
[anon_sym_BQUOTE] = ACTIONS(1958),
[sym_comment] = ACTIONS(52),
},
[663] = {
[sym_file_redirect] = STATE(354),
[sym_heredoc_redirect] = STATE(354),
[aux_sym_command_repeat2] = STATE(663),
[sym_file_descriptor] = ACTIONS(2006),
[anon_sym_PIPE] = ACTIONS(1963),
[anon_sym_PIPE_AMP] = ACTIONS(1965),
[anon_sym_AMP_AMP] = ACTIONS(1965),
[anon_sym_PIPE_PIPE] = ACTIONS(1965),
[anon_sym_LT] = ACTIONS(2009),
[anon_sym_GT] = ACTIONS(2009),
[anon_sym_GT_GT] = ACTIONS(2012),
[anon_sym_AMP_GT] = ACTIONS(2009),
[anon_sym_AMP_GT_GT] = ACTIONS(2012),
[anon_sym_LT_AMP] = ACTIONS(2012),
[anon_sym_GT_AMP] = ACTIONS(2012),
[anon_sym_LT_LT] = ACTIONS(1973),
[anon_sym_LT_LT_DASH] = ACTIONS(1976),
[anon_sym_BQUOTE] = ACTIONS(1965),
[sym_comment] = ACTIONS(52),
},
[664] = {
[sym_file_redirect] = STATE(354),
[sym_heredoc_redirect] = STATE(354),
[sym_concatenation] = STATE(355),
[sym_string] = STATE(372),
[sym_simple_expansion] = STATE(372),
[sym_expansion] = STATE(372),
[sym_command_substitution] = STATE(372),
[sym_process_substitution] = STATE(372),
[aux_sym_for_statement_repeat1] = STATE(661),
[aux_sym_command_repeat2] = STATE(968),
[sym_file_descriptor] = ACTIONS(590),
[anon_sym_PIPE] = ACTIONS(1956),
[anon_sym_PIPE_AMP] = ACTIONS(1958),
[anon_sym_AMP_AMP] = ACTIONS(1958),
[anon_sym_PIPE_PIPE] = ACTIONS(1956),
[anon_sym_LT] = ACTIONS(592),
[anon_sym_GT] = ACTIONS(592),
[anon_sym_GT_GT] = ACTIONS(594),
[anon_sym_AMP_GT] = ACTIONS(592),
[anon_sym_AMP_GT_GT] = ACTIONS(594),
[anon_sym_LT_AMP] = ACTIONS(594),
[anon_sym_GT_AMP] = ACTIONS(594),
[anon_sym_LT_LT] = ACTIONS(564),
[anon_sym_LT_LT_DASH] = ACTIONS(566),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(596),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(1958),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(598),
[sym_comment] = ACTIONS(52),
},
[665] = {
[sym_file_redirect] = STATE(969),
[sym_file_descriptor] = ACTIONS(610),
[anon_sym_PIPE] = ACTIONS(1575),
[anon_sym_SEMI_SEMI] = ACTIONS(1575),
[anon_sym_PIPE_AMP] = ACTIONS(1575),
[anon_sym_AMP_AMP] = ACTIONS(1575),
[anon_sym_PIPE_PIPE] = ACTIONS(1575),
[anon_sym_LT] = ACTIONS(614),
[anon_sym_GT] = ACTIONS(614),
[anon_sym_GT_GT] = ACTIONS(614),
[anon_sym_AMP_GT] = ACTIONS(614),
[anon_sym_AMP_GT_GT] = ACTIONS(614),
[anon_sym_LT_AMP] = ACTIONS(614),
[anon_sym_GT_AMP] = ACTIONS(614),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1575),
[anon_sym_LF] = ACTIONS(1575),
[anon_sym_AMP] = ACTIONS(1575),
},
[666] = {
[sym_file_descriptor] = ACTIONS(2015),
[anon_sym_PIPE] = ACTIONS(2017),
[anon_sym_RPAREN] = ACTIONS(2017),
[anon_sym_SEMI_SEMI] = ACTIONS(2017),
[anon_sym_PIPE_AMP] = ACTIONS(2017),
[anon_sym_AMP_AMP] = ACTIONS(2017),
[anon_sym_PIPE_PIPE] = ACTIONS(2017),
[anon_sym_LT] = ACTIONS(2017),
[anon_sym_GT] = ACTIONS(2017),
[anon_sym_GT_GT] = ACTIONS(2017),
[anon_sym_AMP_GT] = ACTIONS(2017),
[anon_sym_AMP_GT_GT] = ACTIONS(2017),
[anon_sym_LT_AMP] = ACTIONS(2017),
[anon_sym_GT_AMP] = ACTIONS(2017),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2017),
[anon_sym_LF] = ACTIONS(2017),
[anon_sym_AMP] = ACTIONS(2017),
},
[667] = {
[sym__terminated_statement] = STATE(23),
[sym_for_statement] = STATE(24),
[sym_while_statement] = STATE(24),
[sym_if_statement] = STATE(24),
[sym_case_statement] = STATE(24),
[sym_function_definition] = STATE(24),
[sym_subshell] = STATE(24),
[sym_pipeline] = STATE(24),
[sym_list] = STATE(24),
[sym_bracket_command] = STATE(24),
[sym_command] = STATE(24),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(26),
[sym_declaration_command] = STATE(24),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(667),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(652),
[sym_variable_name] = ACTIONS(655),
[anon_sym_for] = ACTIONS(660),
[anon_sym_while] = ACTIONS(663),
[anon_sym_if] = ACTIONS(666),
[anon_sym_case] = ACTIONS(669),
[anon_sym_function] = ACTIONS(672),
[anon_sym_LPAREN] = ACTIONS(675),
[anon_sym_RBRACE] = ACTIONS(658),
[anon_sym_LBRACK] = ACTIONS(678),
[anon_sym_LBRACK_LBRACK] = ACTIONS(681),
[anon_sym_declare] = ACTIONS(684),
[anon_sym_typeset] = ACTIONS(684),
[anon_sym_export] = ACTIONS(684),
[anon_sym_readonly] = ACTIONS(684),
[anon_sym_local] = ACTIONS(684),
[anon_sym_LT] = ACTIONS(687),
[anon_sym_GT] = ACTIONS(687),
[anon_sym_GT_GT] = ACTIONS(690),
[anon_sym_AMP_GT] = ACTIONS(687),
[anon_sym_AMP_GT_GT] = ACTIONS(690),
[anon_sym_LT_AMP] = ACTIONS(690),
[anon_sym_GT_AMP] = ACTIONS(690),
[anon_sym_DQUOTE] = ACTIONS(693),
[sym_raw_string] = ACTIONS(696),
[anon_sym_DOLLAR] = ACTIONS(699),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(702),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(705),
[anon_sym_BQUOTE] = ACTIONS(708),
[anon_sym_LT_LPAREN] = ACTIONS(711),
[anon_sym_GT_LPAREN] = ACTIONS(711),
[sym_word] = ACTIONS(714),
[sym_comment] = ACTIONS(52),
},
[668] = {
[sym_concatenation] = STATE(971),
[sym_string] = STATE(970),
[sym_simple_expansion] = STATE(970),
[sym_expansion] = STATE(970),
[sym_command_substitution] = STATE(970),
[sym_process_substitution] = STATE(970),
[anon_sym_DQUOTE] = ACTIONS(1310),
[sym_raw_string] = ACTIONS(2019),
[anon_sym_DOLLAR] = ACTIONS(1314),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1316),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1318),
[anon_sym_BQUOTE] = ACTIONS(1320),
[anon_sym_LT_LPAREN] = ACTIONS(1322),
[anon_sym_GT_LPAREN] = ACTIONS(1322),
[sym_word] = ACTIONS(2021),
[sym_comment] = ACTIONS(52),
},
[669] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(973),
[anon_sym_DQUOTE] = ACTIONS(2023),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[670] = {
[aux_sym_concatenation_repeat1] = STATE(975),
[sym__concat] = ACTIONS(2025),
[anon_sym_PIPE] = ACTIONS(1338),
[anon_sym_SEMI_SEMI] = ACTIONS(1338),
[anon_sym_PIPE_AMP] = ACTIONS(1338),
[anon_sym_AMP_AMP] = ACTIONS(1338),
[anon_sym_PIPE_PIPE] = ACTIONS(1338),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1338),
[anon_sym_LF] = ACTIONS(1338),
[anon_sym_AMP] = ACTIONS(1338),
},
[671] = {
[sym_special_variable_name] = STATE(978),
[anon_sym_DASH] = ACTIONS(2027),
[anon_sym_DOLLAR] = ACTIONS(2027),
[anon_sym_POUND] = ACTIONS(2027),
[anon_sym_AT] = ACTIONS(2027),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(2029),
[anon_sym_STAR] = ACTIONS(2027),
[anon_sym_QMARK] = ACTIONS(2027),
[anon_sym_BANG] = ACTIONS(2027),
[anon_sym_0] = ACTIONS(2031),
[anon_sym__] = ACTIONS(2031),
},
[672] = {
[sym_special_variable_name] = STATE(981),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(2033),
[anon_sym_AT] = ACTIONS(174),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(2035),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[673] = {
[sym_for_statement] = STATE(982),
[sym_while_statement] = STATE(982),
[sym_if_statement] = STATE(982),
[sym_case_statement] = STATE(982),
[sym_function_definition] = STATE(982),
[sym_subshell] = STATE(982),
[sym_pipeline] = STATE(982),
[sym_list] = STATE(982),
[sym_bracket_command] = STATE(982),
[sym_command] = STATE(982),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(983),
[sym_declaration_command] = STATE(982),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[674] = {
[sym_for_statement] = STATE(984),
[sym_while_statement] = STATE(984),
[sym_if_statement] = STATE(984),
[sym_case_statement] = STATE(984),
[sym_function_definition] = STATE(984),
[sym_subshell] = STATE(984),
[sym_pipeline] = STATE(984),
[sym_list] = STATE(984),
[sym_bracket_command] = STATE(984),
[sym_command] = STATE(984),
[sym_command_name] = STATE(139),
[sym_variable_assignment] = STATE(985),
[sym_declaration_command] = STATE(984),
[sym_subscript] = STATE(141),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(136),
[sym_simple_expansion] = STATE(136),
[sym_expansion] = STATE(136),
[sym_command_substitution] = STATE(136),
[sym_process_substitution] = STATE(136),
[aux_sym_command_repeat1] = STATE(142),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(218),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(220),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(222),
[anon_sym_typeset] = ACTIONS(222),
[anon_sym_export] = ACTIONS(222),
[anon_sym_readonly] = ACTIONS(222),
[anon_sym_local] = ACTIONS(222),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(224),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(226),
[sym_comment] = ACTIONS(52),
},
[675] = {
[sym_for_statement] = STATE(986),
[sym_while_statement] = STATE(986),
[sym_if_statement] = STATE(986),
[sym_case_statement] = STATE(986),
[sym_function_definition] = STATE(986),
[sym_subshell] = STATE(986),
[sym_pipeline] = STATE(986),
[sym_list] = STATE(986),
[sym_bracket_command] = STATE(986),
[sym_command] = STATE(986),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(987),
[sym_declaration_command] = STATE(986),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[676] = {
[anon_sym_PIPE] = ACTIONS(1338),
[anon_sym_RPAREN] = ACTIONS(1338),
[anon_sym_SEMI_SEMI] = ACTIONS(1338),
[anon_sym_PIPE_AMP] = ACTIONS(1338),
[anon_sym_AMP_AMP] = ACTIONS(1338),
[anon_sym_PIPE_PIPE] = ACTIONS(1338),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1338),
[anon_sym_LF] = ACTIONS(1338),
[anon_sym_AMP] = ACTIONS(1338),
},
[677] = {
[aux_sym_concatenation_repeat1] = STATE(682),
[sym_file_descriptor] = ACTIONS(735),
[sym__concat] = ACTIONS(1336),
[anon_sym_PIPE] = ACTIONS(2037),
[anon_sym_SEMI_SEMI] = ACTIONS(2037),
[anon_sym_PIPE_AMP] = ACTIONS(2037),
[anon_sym_AMP_AMP] = ACTIONS(2037),
[anon_sym_PIPE_PIPE] = ACTIONS(2037),
[anon_sym_LT] = ACTIONS(2037),
[anon_sym_GT] = ACTIONS(2037),
[anon_sym_GT_GT] = ACTIONS(2037),
[anon_sym_AMP_GT] = ACTIONS(2037),
[anon_sym_AMP_GT_GT] = ACTIONS(2037),
[anon_sym_LT_AMP] = ACTIONS(2037),
[anon_sym_GT_AMP] = ACTIONS(2037),
[anon_sym_LT_LT] = ACTIONS(2037),
[anon_sym_LT_LT_DASH] = ACTIONS(2037),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2037),
[anon_sym_LF] = ACTIONS(2037),
[anon_sym_AMP] = ACTIONS(2037),
},
[678] = {
[sym_file_descriptor] = ACTIONS(735),
[anon_sym_PIPE] = ACTIONS(2037),
[anon_sym_RPAREN] = ACTIONS(2037),
[anon_sym_SEMI_SEMI] = ACTIONS(2037),
[anon_sym_PIPE_AMP] = ACTIONS(2037),
[anon_sym_AMP_AMP] = ACTIONS(2037),
[anon_sym_PIPE_PIPE] = ACTIONS(2037),
[anon_sym_LT] = ACTIONS(2037),
[anon_sym_GT] = ACTIONS(2037),
[anon_sym_GT_GT] = ACTIONS(2037),
[anon_sym_AMP_GT] = ACTIONS(2037),
[anon_sym_AMP_GT_GT] = ACTIONS(2037),
[anon_sym_LT_AMP] = ACTIONS(2037),
[anon_sym_GT_AMP] = ACTIONS(2037),
[anon_sym_LT_LT] = ACTIONS(2037),
[anon_sym_LT_LT_DASH] = ACTIONS(2037),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2037),
[anon_sym_LF] = ACTIONS(2037),
[anon_sym_AMP] = ACTIONS(2037),
},
[679] = {
[sym_file_descriptor] = ACTIONS(446),
[sym__concat] = ACTIONS(446),
[anon_sym_PIPE] = ACTIONS(448),
[anon_sym_RPAREN] = ACTIONS(448),
[anon_sym_SEMI_SEMI] = ACTIONS(448),
[anon_sym_PIPE_AMP] = ACTIONS(448),
[anon_sym_AMP_AMP] = ACTIONS(448),
[anon_sym_PIPE_PIPE] = ACTIONS(448),
[anon_sym_LT] = ACTIONS(448),
[anon_sym_GT] = ACTIONS(448),
[anon_sym_GT_GT] = ACTIONS(448),
[anon_sym_AMP_GT] = ACTIONS(448),
[anon_sym_AMP_GT_GT] = ACTIONS(448),
[anon_sym_LT_AMP] = ACTIONS(448),
[anon_sym_GT_AMP] = ACTIONS(448),
[anon_sym_LT_LT] = ACTIONS(448),
[anon_sym_LT_LT_DASH] = ACTIONS(448),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(448),
[anon_sym_LF] = ACTIONS(448),
[anon_sym_AMP] = ACTIONS(448),
},
[680] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(298),
[anon_sym_DQUOTE] = ACTIONS(2039),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[681] = {
[sym_string] = STATE(989),
[sym_simple_expansion] = STATE(989),
[sym_expansion] = STATE(989),
[sym_command_substitution] = STATE(989),
[sym_process_substitution] = STATE(989),
[anon_sym_DQUOTE] = ACTIONS(626),
[sym_raw_string] = ACTIONS(2041),
[anon_sym_DOLLAR] = ACTIONS(630),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(632),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(634),
[anon_sym_BQUOTE] = ACTIONS(636),
[anon_sym_LT_LPAREN] = ACTIONS(638),
[anon_sym_GT_LPAREN] = ACTIONS(638),
[sym_word] = ACTIONS(2043),
[sym_comment] = ACTIONS(52),
},
[682] = {
[aux_sym_concatenation_repeat1] = STATE(990),
[sym_file_descriptor] = ACTIONS(470),
[sym__concat] = ACTIONS(1336),
[anon_sym_PIPE] = ACTIONS(472),
[anon_sym_SEMI_SEMI] = ACTIONS(472),
[anon_sym_PIPE_AMP] = ACTIONS(472),
[anon_sym_AMP_AMP] = ACTIONS(472),
[anon_sym_PIPE_PIPE] = ACTIONS(472),
[anon_sym_LT] = ACTIONS(472),
[anon_sym_GT] = ACTIONS(472),
[anon_sym_GT_GT] = ACTIONS(472),
[anon_sym_AMP_GT] = ACTIONS(472),
[anon_sym_AMP_GT_GT] = ACTIONS(472),
[anon_sym_LT_AMP] = ACTIONS(472),
[anon_sym_GT_AMP] = ACTIONS(472),
[anon_sym_LT_LT] = ACTIONS(472),
[anon_sym_LT_LT_DASH] = ACTIONS(472),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(472),
[anon_sym_LF] = ACTIONS(472),
[anon_sym_AMP] = ACTIONS(472),
},
[683] = {
[sym_file_descriptor] = ACTIONS(474),
[sym__concat] = ACTIONS(474),
[anon_sym_PIPE] = ACTIONS(476),
[anon_sym_RPAREN] = ACTIONS(476),
[anon_sym_SEMI_SEMI] = ACTIONS(476),
[anon_sym_PIPE_AMP] = ACTIONS(476),
[anon_sym_AMP_AMP] = ACTIONS(476),
[anon_sym_PIPE_PIPE] = ACTIONS(476),
[anon_sym_LT] = ACTIONS(476),
[anon_sym_GT] = ACTIONS(476),
[anon_sym_GT_GT] = ACTIONS(476),
[anon_sym_AMP_GT] = ACTIONS(476),
[anon_sym_AMP_GT_GT] = ACTIONS(476),
[anon_sym_LT_AMP] = ACTIONS(476),
[anon_sym_GT_AMP] = ACTIONS(476),
[anon_sym_LT_LT] = ACTIONS(476),
[anon_sym_LT_LT_DASH] = ACTIONS(476),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(476),
[anon_sym_LF] = ACTIONS(476),
[anon_sym_AMP] = ACTIONS(476),
},
[684] = {
[sym_file_descriptor] = ACTIONS(478),
[sym__concat] = ACTIONS(478),
[anon_sym_PIPE] = ACTIONS(480),
[anon_sym_RPAREN] = ACTIONS(480),
[anon_sym_SEMI_SEMI] = ACTIONS(480),
[anon_sym_PIPE_AMP] = ACTIONS(480),
[anon_sym_AMP_AMP] = ACTIONS(480),
[anon_sym_PIPE_PIPE] = ACTIONS(480),
[anon_sym_LT] = ACTIONS(480),
[anon_sym_GT] = ACTIONS(480),
[anon_sym_GT_GT] = ACTIONS(480),
[anon_sym_AMP_GT] = ACTIONS(480),
[anon_sym_AMP_GT_GT] = ACTIONS(480),
[anon_sym_LT_AMP] = ACTIONS(480),
[anon_sym_GT_AMP] = ACTIONS(480),
[anon_sym_LT_LT] = ACTIONS(480),
[anon_sym_LT_LT_DASH] = ACTIONS(480),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(480),
[anon_sym_LF] = ACTIONS(480),
[anon_sym_AMP] = ACTIONS(480),
},
[685] = {
[sym_file_descriptor] = ACTIONS(482),
[sym__concat] = ACTIONS(482),
[anon_sym_PIPE] = ACTIONS(484),
[anon_sym_RPAREN] = ACTIONS(484),
[anon_sym_SEMI_SEMI] = ACTIONS(484),
[anon_sym_PIPE_AMP] = ACTIONS(484),
[anon_sym_AMP_AMP] = ACTIONS(484),
[anon_sym_PIPE_PIPE] = ACTIONS(484),
[anon_sym_LT] = ACTIONS(484),
[anon_sym_GT] = ACTIONS(484),
[anon_sym_GT_GT] = ACTIONS(484),
[anon_sym_AMP_GT] = ACTIONS(484),
[anon_sym_AMP_GT_GT] = ACTIONS(484),
[anon_sym_LT_AMP] = ACTIONS(484),
[anon_sym_GT_AMP] = ACTIONS(484),
[anon_sym_LT_LT] = ACTIONS(484),
[anon_sym_LT_LT_DASH] = ACTIONS(484),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(484),
[anon_sym_LF] = ACTIONS(484),
[anon_sym_AMP] = ACTIONS(484),
},
[686] = {
[sym_special_variable_name] = STATE(992),
[anon_sym_RBRACE] = ACTIONS(474),
[anon_sym_LBRACK] = ACTIONS(474),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_EQ] = ACTIONS(474),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(174),
[anon_sym_AT] = ACTIONS(174),
[anon_sym_COLON] = ACTIONS(486),
[anon_sym_COLON_QMARK] = ACTIONS(474),
[anon_sym_COLON_DASH] = ACTIONS(474),
[anon_sym_PERCENT] = ACTIONS(474),
[anon_sym_SLASH] = ACTIONS(474),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(2045),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[687] = {
[anon_sym_RBRACE] = ACTIONS(2047),
[anon_sym_LBRACK] = ACTIONS(2049),
[anon_sym_EQ] = ACTIONS(2051),
[anon_sym_COLON] = ACTIONS(2053),
[anon_sym_COLON_QMARK] = ACTIONS(2051),
[anon_sym_COLON_DASH] = ACTIONS(2051),
[anon_sym_PERCENT] = ACTIONS(2051),
[anon_sym_SLASH] = ACTIONS(2051),
[sym_comment] = ACTIONS(52),
},
[688] = {
[anon_sym_RBRACE] = ACTIONS(2055),
[anon_sym_LBRACK] = ACTIONS(2057),
[anon_sym_EQ] = ACTIONS(2059),
[anon_sym_COLON] = ACTIONS(2061),
[anon_sym_COLON_QMARK] = ACTIONS(2059),
[anon_sym_COLON_DASH] = ACTIONS(2059),
[anon_sym_PERCENT] = ACTIONS(2059),
[anon_sym_SLASH] = ACTIONS(2059),
[sym_comment] = ACTIONS(52),
},
[689] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2063),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[690] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2063),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[691] = {
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(588),
[anon_sym_BQUOTE] = ACTIONS(2063),
[sym_comment] = ACTIONS(52),
},
[692] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(600),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(2063),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[693] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2065),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[694] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2065),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[695] = {
[sym__heredoc_middle] = ACTIONS(2067),
[sym__heredoc_end] = ACTIONS(2067),
[anon_sym_DOLLAR] = ACTIONS(2069),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2067),
[sym_comment] = ACTIONS(52),
},
[696] = {
[sym_file_descriptor] = ACTIONS(2071),
[anon_sym_PIPE] = ACTIONS(2073),
[anon_sym_RPAREN] = ACTIONS(2073),
[anon_sym_SEMI_SEMI] = ACTIONS(2073),
[anon_sym_PIPE_AMP] = ACTIONS(2073),
[anon_sym_AMP_AMP] = ACTIONS(2073),
[anon_sym_PIPE_PIPE] = ACTIONS(2073),
[anon_sym_LT] = ACTIONS(2073),
[anon_sym_GT] = ACTIONS(2073),
[anon_sym_GT_GT] = ACTIONS(2073),
[anon_sym_AMP_GT] = ACTIONS(2073),
[anon_sym_AMP_GT_GT] = ACTIONS(2073),
[anon_sym_LT_AMP] = ACTIONS(2073),
[anon_sym_GT_AMP] = ACTIONS(2073),
[anon_sym_LT_LT] = ACTIONS(2073),
[anon_sym_LT_LT_DASH] = ACTIONS(2073),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2073),
[anon_sym_LF] = ACTIONS(2073),
[anon_sym_AMP] = ACTIONS(2073),
},
[697] = {
[sym_special_variable_name] = STATE(1003),
[anon_sym_DASH] = ACTIONS(2075),
[anon_sym_DOLLAR] = ACTIONS(2075),
[anon_sym_POUND] = ACTIONS(2075),
[anon_sym_AT] = ACTIONS(2075),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(2077),
[anon_sym_STAR] = ACTIONS(2075),
[anon_sym_QMARK] = ACTIONS(2075),
[anon_sym_BANG] = ACTIONS(2075),
[anon_sym_0] = ACTIONS(2079),
[anon_sym__] = ACTIONS(2079),
},
[698] = {
[sym_special_variable_name] = STATE(1006),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(2081),
[anon_sym_AT] = ACTIONS(174),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(2083),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[699] = {
[sym_simple_expansion] = STATE(695),
[sym_expansion] = STATE(695),
[aux_sym_heredoc_repeat1] = STATE(1008),
[sym__heredoc_middle] = ACTIONS(1354),
[sym__heredoc_end] = ACTIONS(2085),
[anon_sym_DOLLAR] = ACTIONS(1358),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1360),
[sym_comment] = ACTIONS(52),
},
[700] = {
[sym_file_descriptor] = ACTIONS(755),
[sym_variable_name] = ACTIONS(755),
[anon_sym_LT] = ACTIONS(1760),
[anon_sym_GT] = ACTIONS(1760),
[anon_sym_GT_GT] = ACTIONS(755),
[anon_sym_AMP_GT] = ACTIONS(1760),
[anon_sym_AMP_GT_GT] = ACTIONS(755),
[anon_sym_LT_AMP] = ACTIONS(755),
[anon_sym_GT_AMP] = ACTIONS(755),
[anon_sym_DQUOTE] = ACTIONS(755),
[sym_raw_string] = ACTIONS(755),
[anon_sym_DOLLAR] = ACTIONS(1760),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(755),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(755),
[anon_sym_BQUOTE] = ACTIONS(755),
[anon_sym_LT_LPAREN] = ACTIONS(755),
[anon_sym_GT_LPAREN] = ACTIONS(755),
[sym_word] = ACTIONS(1760),
[sym_comment] = ACTIONS(52),
},
[701] = {
[sym_concatenation] = STATE(430),
[sym_string] = STATE(424),
[sym_simple_expansion] = STATE(424),
[sym_expansion] = STATE(424),
[sym_command_substitution] = STATE(424),
[sym_process_substitution] = STATE(424),
[aux_sym_for_statement_repeat1] = STATE(1010),
[anon_sym_RPAREN] = ACTIONS(2087),
[anon_sym_DQUOTE] = ACTIONS(761),
[sym_raw_string] = ACTIONS(763),
[anon_sym_DOLLAR] = ACTIONS(765),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(767),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(769),
[anon_sym_BQUOTE] = ACTIONS(771),
[anon_sym_LT_LPAREN] = ACTIONS(773),
[anon_sym_GT_LPAREN] = ACTIONS(773),
[sym_word] = ACTIONS(775),
[sym_comment] = ACTIONS(52),
},
[702] = {
[aux_sym_concatenation_repeat1] = STATE(274),
[sym_file_descriptor] = ACTIONS(755),
[sym__concat] = ACTIONS(432),
[sym_variable_name] = ACTIONS(755),
[anon_sym_LT] = ACTIONS(1760),
[anon_sym_GT] = ACTIONS(1760),
[anon_sym_GT_GT] = ACTIONS(755),
[anon_sym_AMP_GT] = ACTIONS(1760),
[anon_sym_AMP_GT_GT] = ACTIONS(755),
[anon_sym_LT_AMP] = ACTIONS(755),
[anon_sym_GT_AMP] = ACTIONS(755),
[anon_sym_DQUOTE] = ACTIONS(755),
[sym_raw_string] = ACTIONS(755),
[anon_sym_DOLLAR] = ACTIONS(1760),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(755),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(755),
[anon_sym_BQUOTE] = ACTIONS(755),
[anon_sym_LT_LPAREN] = ACTIONS(755),
[anon_sym_GT_LPAREN] = ACTIONS(755),
[sym_word] = ACTIONS(1760),
[sym_comment] = ACTIONS(52),
},
[703] = {
[sym_file_redirect] = STATE(155),
[sym_heredoc_redirect] = STATE(155),
[aux_sym_command_repeat2] = STATE(401),
[sym_file_descriptor] = ACTIONS(246),
[anon_sym_PIPE] = ACTIONS(2089),
[anon_sym_SEMI_SEMI] = ACTIONS(2089),
[anon_sym_PIPE_AMP] = ACTIONS(2089),
[anon_sym_AMP_AMP] = ACTIONS(2089),
[anon_sym_PIPE_PIPE] = ACTIONS(2089),
[anon_sym_LT] = ACTIONS(250),
[anon_sym_GT] = ACTIONS(250),
[anon_sym_GT_GT] = ACTIONS(250),
[anon_sym_AMP_GT] = ACTIONS(250),
[anon_sym_AMP_GT_GT] = ACTIONS(250),
[anon_sym_LT_AMP] = ACTIONS(250),
[anon_sym_GT_AMP] = ACTIONS(250),
[anon_sym_LT_LT] = ACTIONS(252),
[anon_sym_LT_LT_DASH] = ACTIONS(252),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2089),
[anon_sym_LF] = ACTIONS(2089),
[anon_sym_AMP] = ACTIONS(2089),
},
[704] = {
[sym__concat] = ACTIONS(1088),
[anon_sym_PIPE] = ACTIONS(1088),
[anon_sym_RPAREN] = ACTIONS(1088),
[anon_sym_RBRACK] = ACTIONS(1088),
[sym_comment] = ACTIONS(52),
},
[705] = {
[sym__concat] = ACTIONS(1109),
[anon_sym_PIPE] = ACTIONS(1109),
[anon_sym_RPAREN] = ACTIONS(1109),
[anon_sym_RBRACK] = ACTIONS(1109),
[sym_comment] = ACTIONS(52),
},
[706] = {
[aux_sym_concatenation_repeat1] = STATE(706),
[sym__concat] = ACTIONS(2091),
[anon_sym_RBRACK] = ACTIONS(1109),
[sym_comment] = ACTIONS(52),
},
[707] = {
[anon_sym_RBRACE] = ACTIONS(2094),
[anon_sym_LBRACK] = ACTIONS(2096),
[sym_comment] = ACTIONS(52),
},
[708] = {
[anon_sym_RBRACE] = ACTIONS(2098),
[anon_sym_LBRACK] = ACTIONS(2100),
[sym_comment] = ACTIONS(52),
},
[709] = {
[sym__concat] = ACTIONS(1124),
[anon_sym_PIPE] = ACTIONS(1124),
[anon_sym_RPAREN] = ACTIONS(1124),
[anon_sym_RBRACK] = ACTIONS(1124),
[sym_comment] = ACTIONS(52),
},
[710] = {
[anon_sym_AT] = ACTIONS(2102),
[sym_comment] = ACTIONS(52),
},
[711] = {
[sym_concatenation] = STATE(1018),
[sym_string] = STATE(1017),
[sym_simple_expansion] = STATE(1017),
[sym_expansion] = STATE(1017),
[sym_command_substitution] = STATE(1017),
[sym_process_substitution] = STATE(1017),
[anon_sym_RBRACE] = ACTIONS(2104),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(2106),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(2108),
[sym_comment] = ACTIONS(52),
},
[712] = {
[sym__concat] = ACTIONS(1136),
[anon_sym_PIPE] = ACTIONS(1136),
[anon_sym_RPAREN] = ACTIONS(1136),
[anon_sym_RBRACK] = ACTIONS(1136),
[sym_comment] = ACTIONS(52),
},
[713] = {
[anon_sym_AT] = ACTIONS(2110),
[sym_comment] = ACTIONS(52),
},
[714] = {
[sym_concatenation] = STATE(1021),
[sym_string] = STATE(1020),
[sym_simple_expansion] = STATE(1020),
[sym_expansion] = STATE(1020),
[sym_command_substitution] = STATE(1020),
[sym_process_substitution] = STATE(1020),
[anon_sym_RBRACE] = ACTIONS(2098),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(2112),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(2114),
[sym_comment] = ACTIONS(52),
},
[715] = {
[sym__concat] = ACTIONS(1238),
[anon_sym_PIPE] = ACTIONS(1238),
[anon_sym_RPAREN] = ACTIONS(1238),
[anon_sym_RBRACK] = ACTIONS(1238),
[sym_comment] = ACTIONS(52),
},
[716] = {
[sym__concat] = ACTIONS(1296),
[anon_sym_PIPE] = ACTIONS(1296),
[anon_sym_RPAREN] = ACTIONS(1296),
[anon_sym_RBRACK] = ACTIONS(1296),
[sym_comment] = ACTIONS(52),
},
[717] = {
[sym__concat] = ACTIONS(446),
[anon_sym_RPAREN] = ACTIONS(446),
[anon_sym_DQUOTE] = ACTIONS(446),
[sym_raw_string] = ACTIONS(446),
[anon_sym_DOLLAR] = ACTIONS(883),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(446),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(446),
[anon_sym_BQUOTE] = ACTIONS(446),
[anon_sym_LT_LPAREN] = ACTIONS(446),
[anon_sym_GT_LPAREN] = ACTIONS(446),
[sym_word] = ACTIONS(883),
[sym_comment] = ACTIONS(52),
},
[718] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(298),
[anon_sym_DQUOTE] = ACTIONS(2116),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[719] = {
[sym_string] = STATE(1023),
[sym_simple_expansion] = STATE(1023),
[sym_expansion] = STATE(1023),
[sym_command_substitution] = STATE(1023),
[sym_process_substitution] = STATE(1023),
[anon_sym_DQUOTE] = ACTIONS(761),
[sym_raw_string] = ACTIONS(2118),
[anon_sym_DOLLAR] = ACTIONS(765),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(767),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(769),
[anon_sym_BQUOTE] = ACTIONS(771),
[anon_sym_LT_LPAREN] = ACTIONS(773),
[anon_sym_GT_LPAREN] = ACTIONS(773),
[sym_word] = ACTIONS(2120),
[sym_comment] = ACTIONS(52),
},
[720] = {
[aux_sym_concatenation_repeat1] = STATE(1024),
[sym__concat] = ACTIONS(1448),
[anon_sym_RPAREN] = ACTIONS(470),
[anon_sym_DQUOTE] = ACTIONS(470),
[sym_raw_string] = ACTIONS(470),
[anon_sym_DOLLAR] = ACTIONS(891),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(470),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(470),
[anon_sym_BQUOTE] = ACTIONS(470),
[anon_sym_LT_LPAREN] = ACTIONS(470),
[anon_sym_GT_LPAREN] = ACTIONS(470),
[sym_word] = ACTIONS(891),
[sym_comment] = ACTIONS(52),
},
[721] = {
[sym__concat] = ACTIONS(474),
[anon_sym_RPAREN] = ACTIONS(474),
[anon_sym_DQUOTE] = ACTIONS(474),
[sym_raw_string] = ACTIONS(474),
[anon_sym_DOLLAR] = ACTIONS(486),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(474),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(474),
[anon_sym_BQUOTE] = ACTIONS(474),
[anon_sym_LT_LPAREN] = ACTIONS(474),
[anon_sym_GT_LPAREN] = ACTIONS(474),
[sym_word] = ACTIONS(486),
[sym_comment] = ACTIONS(52),
},
[722] = {
[sym__concat] = ACTIONS(478),
[anon_sym_RPAREN] = ACTIONS(478),
[anon_sym_DQUOTE] = ACTIONS(478),
[sym_raw_string] = ACTIONS(478),
[anon_sym_DOLLAR] = ACTIONS(893),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(478),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(478),
[anon_sym_BQUOTE] = ACTIONS(478),
[anon_sym_LT_LPAREN] = ACTIONS(478),
[anon_sym_GT_LPAREN] = ACTIONS(478),
[sym_word] = ACTIONS(893),
[sym_comment] = ACTIONS(52),
},
[723] = {
[sym__concat] = ACTIONS(482),
[anon_sym_RPAREN] = ACTIONS(482),
[anon_sym_DQUOTE] = ACTIONS(482),
[sym_raw_string] = ACTIONS(482),
[anon_sym_DOLLAR] = ACTIONS(895),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(482),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(482),
[anon_sym_BQUOTE] = ACTIONS(482),
[anon_sym_LT_LPAREN] = ACTIONS(482),
[anon_sym_GT_LPAREN] = ACTIONS(482),
[sym_word] = ACTIONS(895),
[sym_comment] = ACTIONS(52),
},
[724] = {
[sym_special_variable_name] = STATE(1026),
[anon_sym_RBRACE] = ACTIONS(474),
[anon_sym_LBRACK] = ACTIONS(474),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_EQ] = ACTIONS(474),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(174),
[anon_sym_AT] = ACTIONS(174),
[anon_sym_COLON] = ACTIONS(486),
[anon_sym_COLON_QMARK] = ACTIONS(474),
[anon_sym_COLON_DASH] = ACTIONS(474),
[anon_sym_PERCENT] = ACTIONS(474),
[anon_sym_SLASH] = ACTIONS(474),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(2122),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[725] = {
[anon_sym_RBRACE] = ACTIONS(2124),
[anon_sym_LBRACK] = ACTIONS(2126),
[anon_sym_EQ] = ACTIONS(2128),
[anon_sym_COLON] = ACTIONS(2130),
[anon_sym_COLON_QMARK] = ACTIONS(2128),
[anon_sym_COLON_DASH] = ACTIONS(2128),
[anon_sym_PERCENT] = ACTIONS(2128),
[anon_sym_SLASH] = ACTIONS(2128),
[sym_comment] = ACTIONS(52),
},
[726] = {
[anon_sym_RBRACE] = ACTIONS(2132),
[anon_sym_LBRACK] = ACTIONS(2134),
[anon_sym_EQ] = ACTIONS(2136),
[anon_sym_COLON] = ACTIONS(2138),
[anon_sym_COLON_QMARK] = ACTIONS(2136),
[anon_sym_COLON_DASH] = ACTIONS(2136),
[anon_sym_PERCENT] = ACTIONS(2136),
[anon_sym_SLASH] = ACTIONS(2136),
[sym_comment] = ACTIONS(52),
},
[727] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2140),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[728] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2140),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[729] = {
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(588),
[anon_sym_BQUOTE] = ACTIONS(2140),
[sym_comment] = ACTIONS(52),
},
[730] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(600),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(2140),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[731] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2142),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[732] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2142),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[733] = {
[sym_file_descriptor] = ACTIONS(2144),
[sym_variable_name] = ACTIONS(2144),
[anon_sym_PIPE] = ACTIONS(2146),
[anon_sym_RPAREN] = ACTIONS(2146),
[anon_sym_SEMI_SEMI] = ACTIONS(2146),
[anon_sym_PIPE_AMP] = ACTIONS(2146),
[anon_sym_AMP_AMP] = ACTIONS(2146),
[anon_sym_PIPE_PIPE] = ACTIONS(2146),
[anon_sym_LT] = ACTIONS(2146),
[anon_sym_GT] = ACTIONS(2146),
[anon_sym_GT_GT] = ACTIONS(2146),
[anon_sym_AMP_GT] = ACTIONS(2146),
[anon_sym_AMP_GT_GT] = ACTIONS(2146),
[anon_sym_LT_AMP] = ACTIONS(2146),
[anon_sym_GT_AMP] = ACTIONS(2146),
[anon_sym_DQUOTE] = ACTIONS(2146),
[sym_raw_string] = ACTIONS(2146),
[anon_sym_DOLLAR] = ACTIONS(2146),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2146),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2146),
[anon_sym_BQUOTE] = ACTIONS(2146),
[anon_sym_LT_LPAREN] = ACTIONS(2146),
[anon_sym_GT_LPAREN] = ACTIONS(2146),
[sym_word] = ACTIONS(2146),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2146),
[anon_sym_LF] = ACTIONS(2146),
[anon_sym_AMP] = ACTIONS(2146),
},
[734] = {
[sym_concatenation] = STATE(430),
[sym_string] = STATE(424),
[sym_simple_expansion] = STATE(424),
[sym_expansion] = STATE(424),
[sym_command_substitution] = STATE(424),
[sym_process_substitution] = STATE(424),
[aux_sym_for_statement_repeat1] = STATE(734),
[anon_sym_RPAREN] = ACTIONS(1366),
[anon_sym_DQUOTE] = ACTIONS(2148),
[sym_raw_string] = ACTIONS(2151),
[anon_sym_DOLLAR] = ACTIONS(2154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2157),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2160),
[anon_sym_BQUOTE] = ACTIONS(2163),
[anon_sym_LT_LPAREN] = ACTIONS(2166),
[anon_sym_GT_LPAREN] = ACTIONS(2166),
[sym_word] = ACTIONS(2169),
[sym_comment] = ACTIONS(52),
},
[735] = {
[sym_file_descriptor] = ACTIONS(1088),
[sym__concat] = ACTIONS(1088),
[sym_variable_name] = ACTIONS(1088),
[anon_sym_PIPE] = ACTIONS(1090),
[anon_sym_RPAREN] = ACTIONS(1090),
[anon_sym_SEMI_SEMI] = ACTIONS(1090),
[anon_sym_PIPE_AMP] = ACTIONS(1090),
[anon_sym_AMP_AMP] = ACTIONS(1090),
[anon_sym_PIPE_PIPE] = ACTIONS(1090),
[anon_sym_LT] = ACTIONS(1090),
[anon_sym_GT] = ACTIONS(1090),
[anon_sym_GT_GT] = ACTIONS(1090),
[anon_sym_AMP_GT] = ACTIONS(1090),
[anon_sym_AMP_GT_GT] = ACTIONS(1090),
[anon_sym_LT_AMP] = ACTIONS(1090),
[anon_sym_GT_AMP] = ACTIONS(1090),
[anon_sym_DQUOTE] = ACTIONS(1090),
[sym_raw_string] = ACTIONS(1090),
[anon_sym_DOLLAR] = ACTIONS(1090),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1090),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1090),
[anon_sym_BQUOTE] = ACTIONS(1090),
[anon_sym_LT_LPAREN] = ACTIONS(1090),
[anon_sym_GT_LPAREN] = ACTIONS(1090),
[sym_word] = ACTIONS(1090),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1090),
[anon_sym_LF] = ACTIONS(1090),
[anon_sym_AMP] = ACTIONS(1090),
},
[736] = {
[sym_file_descriptor] = ACTIONS(1109),
[sym__concat] = ACTIONS(1109),
[sym_variable_name] = ACTIONS(1109),
[anon_sym_PIPE] = ACTIONS(1111),
[anon_sym_RPAREN] = ACTIONS(1111),
[anon_sym_SEMI_SEMI] = ACTIONS(1111),
[anon_sym_PIPE_AMP] = ACTIONS(1111),
[anon_sym_AMP_AMP] = ACTIONS(1111),
[anon_sym_PIPE_PIPE] = ACTIONS(1111),
[anon_sym_LT] = ACTIONS(1111),
[anon_sym_GT] = ACTIONS(1111),
[anon_sym_GT_GT] = ACTIONS(1111),
[anon_sym_AMP_GT] = ACTIONS(1111),
[anon_sym_AMP_GT_GT] = ACTIONS(1111),
[anon_sym_LT_AMP] = ACTIONS(1111),
[anon_sym_GT_AMP] = ACTIONS(1111),
[anon_sym_DQUOTE] = ACTIONS(1111),
[sym_raw_string] = ACTIONS(1111),
[anon_sym_DOLLAR] = ACTIONS(1111),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1111),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1111),
[anon_sym_BQUOTE] = ACTIONS(1111),
[anon_sym_LT_LPAREN] = ACTIONS(1111),
[anon_sym_GT_LPAREN] = ACTIONS(1111),
[sym_word] = ACTIONS(1111),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1111),
[anon_sym_LF] = ACTIONS(1111),
[anon_sym_AMP] = ACTIONS(1111),
},
[737] = {
[aux_sym_concatenation_repeat1] = STATE(737),
[sym_file_descriptor] = ACTIONS(1109),
[sym__concat] = ACTIONS(2172),
[sym_variable_name] = ACTIONS(1109),
[anon_sym_PIPE] = ACTIONS(1111),
[anon_sym_SEMI_SEMI] = ACTIONS(1111),
[anon_sym_PIPE_AMP] = ACTIONS(1111),
[anon_sym_AMP_AMP] = ACTIONS(1111),
[anon_sym_PIPE_PIPE] = ACTIONS(1111),
[anon_sym_LT] = ACTIONS(1111),
[anon_sym_GT] = ACTIONS(1111),
[anon_sym_GT_GT] = ACTIONS(1111),
[anon_sym_AMP_GT] = ACTIONS(1111),
[anon_sym_AMP_GT_GT] = ACTIONS(1111),
[anon_sym_LT_AMP] = ACTIONS(1111),
[anon_sym_GT_AMP] = ACTIONS(1111),
[anon_sym_DQUOTE] = ACTIONS(1111),
[sym_raw_string] = ACTIONS(1111),
[anon_sym_DOLLAR] = ACTIONS(1111),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1111),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1111),
[anon_sym_BQUOTE] = ACTIONS(1111),
[anon_sym_LT_LPAREN] = ACTIONS(1111),
[anon_sym_GT_LPAREN] = ACTIONS(1111),
[sym_word] = ACTIONS(1111),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1111),
[anon_sym_LF] = ACTIONS(1111),
[anon_sym_AMP] = ACTIONS(1111),
},
[738] = {
[anon_sym_RBRACE] = ACTIONS(2175),
[anon_sym_LBRACK] = ACTIONS(2177),
[sym_comment] = ACTIONS(52),
},
[739] = {
[anon_sym_RBRACE] = ACTIONS(2179),
[anon_sym_LBRACK] = ACTIONS(2181),
[sym_comment] = ACTIONS(52),
},
[740] = {
[sym_file_descriptor] = ACTIONS(1124),
[sym__concat] = ACTIONS(1124),
[sym_variable_name] = ACTIONS(1124),
[anon_sym_PIPE] = ACTIONS(1126),
[anon_sym_RPAREN] = ACTIONS(1126),
[anon_sym_SEMI_SEMI] = ACTIONS(1126),
[anon_sym_PIPE_AMP] = ACTIONS(1126),
[anon_sym_AMP_AMP] = ACTIONS(1126),
[anon_sym_PIPE_PIPE] = ACTIONS(1126),
[anon_sym_LT] = ACTIONS(1126),
[anon_sym_GT] = ACTIONS(1126),
[anon_sym_GT_GT] = ACTIONS(1126),
[anon_sym_AMP_GT] = ACTIONS(1126),
[anon_sym_AMP_GT_GT] = ACTIONS(1126),
[anon_sym_LT_AMP] = ACTIONS(1126),
[anon_sym_GT_AMP] = ACTIONS(1126),
[anon_sym_DQUOTE] = ACTIONS(1126),
[sym_raw_string] = ACTIONS(1126),
[anon_sym_DOLLAR] = ACTIONS(1126),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1126),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1126),
[anon_sym_BQUOTE] = ACTIONS(1126),
[anon_sym_LT_LPAREN] = ACTIONS(1126),
[anon_sym_GT_LPAREN] = ACTIONS(1126),
[sym_word] = ACTIONS(1126),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1126),
[anon_sym_LF] = ACTIONS(1126),
[anon_sym_AMP] = ACTIONS(1126),
},
[741] = {
[anon_sym_AT] = ACTIONS(2183),
[sym_comment] = ACTIONS(52),
},
[742] = {
[sym_concatenation] = STATE(1042),
[sym_string] = STATE(1041),
[sym_simple_expansion] = STATE(1041),
[sym_expansion] = STATE(1041),
[sym_command_substitution] = STATE(1041),
[sym_process_substitution] = STATE(1041),
[anon_sym_RBRACE] = ACTIONS(2185),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(2187),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(2189),
[sym_comment] = ACTIONS(52),
},
[743] = {
[sym_file_descriptor] = ACTIONS(1136),
[sym__concat] = ACTIONS(1136),
[sym_variable_name] = ACTIONS(1136),
[anon_sym_PIPE] = ACTIONS(1138),
[anon_sym_RPAREN] = ACTIONS(1138),
[anon_sym_SEMI_SEMI] = ACTIONS(1138),
[anon_sym_PIPE_AMP] = ACTIONS(1138),
[anon_sym_AMP_AMP] = ACTIONS(1138),
[anon_sym_PIPE_PIPE] = ACTIONS(1138),
[anon_sym_LT] = ACTIONS(1138),
[anon_sym_GT] = ACTIONS(1138),
[anon_sym_GT_GT] = ACTIONS(1138),
[anon_sym_AMP_GT] = ACTIONS(1138),
[anon_sym_AMP_GT_GT] = ACTIONS(1138),
[anon_sym_LT_AMP] = ACTIONS(1138),
[anon_sym_GT_AMP] = ACTIONS(1138),
[anon_sym_DQUOTE] = ACTIONS(1138),
[sym_raw_string] = ACTIONS(1138),
[anon_sym_DOLLAR] = ACTIONS(1138),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1138),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1138),
[anon_sym_BQUOTE] = ACTIONS(1138),
[anon_sym_LT_LPAREN] = ACTIONS(1138),
[anon_sym_GT_LPAREN] = ACTIONS(1138),
[sym_word] = ACTIONS(1138),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1138),
[anon_sym_LF] = ACTIONS(1138),
[anon_sym_AMP] = ACTIONS(1138),
},
[744] = {
[anon_sym_AT] = ACTIONS(2191),
[sym_comment] = ACTIONS(52),
},
[745] = {
[sym_concatenation] = STATE(1045),
[sym_string] = STATE(1044),
[sym_simple_expansion] = STATE(1044),
[sym_expansion] = STATE(1044),
[sym_command_substitution] = STATE(1044),
[sym_process_substitution] = STATE(1044),
[anon_sym_RBRACE] = ACTIONS(2179),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(2193),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(2195),
[sym_comment] = ACTIONS(52),
},
[746] = {
[sym_file_descriptor] = ACTIONS(1238),
[sym__concat] = ACTIONS(1238),
[sym_variable_name] = ACTIONS(1238),
[anon_sym_PIPE] = ACTIONS(1240),
[anon_sym_RPAREN] = ACTIONS(1240),
[anon_sym_SEMI_SEMI] = ACTIONS(1240),
[anon_sym_PIPE_AMP] = ACTIONS(1240),
[anon_sym_AMP_AMP] = ACTIONS(1240),
[anon_sym_PIPE_PIPE] = ACTIONS(1240),
[anon_sym_LT] = ACTIONS(1240),
[anon_sym_GT] = ACTIONS(1240),
[anon_sym_GT_GT] = ACTIONS(1240),
[anon_sym_AMP_GT] = ACTIONS(1240),
[anon_sym_AMP_GT_GT] = ACTIONS(1240),
[anon_sym_LT_AMP] = ACTIONS(1240),
[anon_sym_GT_AMP] = ACTIONS(1240),
[anon_sym_DQUOTE] = ACTIONS(1240),
[sym_raw_string] = ACTIONS(1240),
[anon_sym_DOLLAR] = ACTIONS(1240),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1240),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1240),
[anon_sym_BQUOTE] = ACTIONS(1240),
[anon_sym_LT_LPAREN] = ACTIONS(1240),
[anon_sym_GT_LPAREN] = ACTIONS(1240),
[sym_word] = ACTIONS(1240),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1240),
[anon_sym_LF] = ACTIONS(1240),
[anon_sym_AMP] = ACTIONS(1240),
},
[747] = {
[sym_file_descriptor] = ACTIONS(1296),
[sym__concat] = ACTIONS(1296),
[sym_variable_name] = ACTIONS(1296),
[anon_sym_PIPE] = ACTIONS(1298),
[anon_sym_RPAREN] = ACTIONS(1298),
[anon_sym_SEMI_SEMI] = ACTIONS(1298),
[anon_sym_PIPE_AMP] = ACTIONS(1298),
[anon_sym_AMP_AMP] = ACTIONS(1298),
[anon_sym_PIPE_PIPE] = ACTIONS(1298),
[anon_sym_LT] = ACTIONS(1298),
[anon_sym_GT] = ACTIONS(1298),
[anon_sym_GT_GT] = ACTIONS(1298),
[anon_sym_AMP_GT] = ACTIONS(1298),
[anon_sym_AMP_GT_GT] = ACTIONS(1298),
[anon_sym_LT_AMP] = ACTIONS(1298),
[anon_sym_GT_AMP] = ACTIONS(1298),
[anon_sym_DQUOTE] = ACTIONS(1298),
[sym_raw_string] = ACTIONS(1298),
[anon_sym_DOLLAR] = ACTIONS(1298),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1298),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1298),
[anon_sym_BQUOTE] = ACTIONS(1298),
[anon_sym_LT_LPAREN] = ACTIONS(1298),
[anon_sym_GT_LPAREN] = ACTIONS(1298),
[sym_word] = ACTIONS(1298),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1298),
[anon_sym_LF] = ACTIONS(1298),
[anon_sym_AMP] = ACTIONS(1298),
},
[748] = {
[sym__concat] = ACTIONS(446),
[anon_sym_SEMI_SEMI] = ACTIONS(448),
[anon_sym_DQUOTE] = ACTIONS(448),
[sym_raw_string] = ACTIONS(448),
[anon_sym_DOLLAR] = ACTIONS(448),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(448),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(448),
[anon_sym_BQUOTE] = ACTIONS(448),
[anon_sym_LT_LPAREN] = ACTIONS(448),
[anon_sym_GT_LPAREN] = ACTIONS(448),
[sym_word] = ACTIONS(448),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(448),
[anon_sym_LF] = ACTIONS(448),
[anon_sym_AMP] = ACTIONS(448),
},
[749] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(298),
[anon_sym_DQUOTE] = ACTIONS(2197),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[750] = {
[sym_string] = STATE(1047),
[sym_simple_expansion] = STATE(1047),
[sym_expansion] = STATE(1047),
[sym_command_substitution] = STATE(1047),
[sym_process_substitution] = STATE(1047),
[anon_sym_DQUOTE] = ACTIONS(791),
[sym_raw_string] = ACTIONS(2199),
[anon_sym_DOLLAR] = ACTIONS(795),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(797),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(799),
[anon_sym_BQUOTE] = ACTIONS(801),
[anon_sym_LT_LPAREN] = ACTIONS(803),
[anon_sym_GT_LPAREN] = ACTIONS(803),
[sym_word] = ACTIONS(2201),
[sym_comment] = ACTIONS(52),
},
[751] = {
[aux_sym_concatenation_repeat1] = STATE(1048),
[sym__concat] = ACTIONS(1492),
[anon_sym_SEMI_SEMI] = ACTIONS(472),
[anon_sym_DQUOTE] = ACTIONS(472),
[sym_raw_string] = ACTIONS(472),
[anon_sym_DOLLAR] = ACTIONS(472),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(472),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(472),
[anon_sym_BQUOTE] = ACTIONS(472),
[anon_sym_LT_LPAREN] = ACTIONS(472),
[anon_sym_GT_LPAREN] = ACTIONS(472),
[sym_word] = ACTIONS(472),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(472),
[anon_sym_LF] = ACTIONS(472),
[anon_sym_AMP] = ACTIONS(472),
},
[752] = {
[sym__concat] = ACTIONS(474),
[anon_sym_SEMI_SEMI] = ACTIONS(476),
[anon_sym_DQUOTE] = ACTIONS(476),
[sym_raw_string] = ACTIONS(476),
[anon_sym_DOLLAR] = ACTIONS(476),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(476),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(476),
[anon_sym_BQUOTE] = ACTIONS(476),
[anon_sym_LT_LPAREN] = ACTIONS(476),
[anon_sym_GT_LPAREN] = ACTIONS(476),
[sym_word] = ACTIONS(476),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(476),
[anon_sym_LF] = ACTIONS(476),
[anon_sym_AMP] = ACTIONS(476),
},
[753] = {
[sym__concat] = ACTIONS(478),
[anon_sym_SEMI_SEMI] = ACTIONS(480),
[anon_sym_DQUOTE] = ACTIONS(480),
[sym_raw_string] = ACTIONS(480),
[anon_sym_DOLLAR] = ACTIONS(480),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(480),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(480),
[anon_sym_BQUOTE] = ACTIONS(480),
[anon_sym_LT_LPAREN] = ACTIONS(480),
[anon_sym_GT_LPAREN] = ACTIONS(480),
[sym_word] = ACTIONS(480),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(480),
[anon_sym_LF] = ACTIONS(480),
[anon_sym_AMP] = ACTIONS(480),
},
[754] = {
[sym__concat] = ACTIONS(482),
[anon_sym_SEMI_SEMI] = ACTIONS(484),
[anon_sym_DQUOTE] = ACTIONS(484),
[sym_raw_string] = ACTIONS(484),
[anon_sym_DOLLAR] = ACTIONS(484),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(484),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(484),
[anon_sym_BQUOTE] = ACTIONS(484),
[anon_sym_LT_LPAREN] = ACTIONS(484),
[anon_sym_GT_LPAREN] = ACTIONS(484),
[sym_word] = ACTIONS(484),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(484),
[anon_sym_LF] = ACTIONS(484),
[anon_sym_AMP] = ACTIONS(484),
},
[755] = {
[sym_special_variable_name] = STATE(1050),
[anon_sym_RBRACE] = ACTIONS(474),
[anon_sym_LBRACK] = ACTIONS(474),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_EQ] = ACTIONS(474),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(174),
[anon_sym_AT] = ACTIONS(174),
[anon_sym_COLON] = ACTIONS(486),
[anon_sym_COLON_QMARK] = ACTIONS(474),
[anon_sym_COLON_DASH] = ACTIONS(474),
[anon_sym_PERCENT] = ACTIONS(474),
[anon_sym_SLASH] = ACTIONS(474),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(2203),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[756] = {
[anon_sym_RBRACE] = ACTIONS(2205),
[anon_sym_LBRACK] = ACTIONS(2207),
[anon_sym_EQ] = ACTIONS(2209),
[anon_sym_COLON] = ACTIONS(2211),
[anon_sym_COLON_QMARK] = ACTIONS(2209),
[anon_sym_COLON_DASH] = ACTIONS(2209),
[anon_sym_PERCENT] = ACTIONS(2209),
[anon_sym_SLASH] = ACTIONS(2209),
[sym_comment] = ACTIONS(52),
},
[757] = {
[anon_sym_RBRACE] = ACTIONS(2213),
[anon_sym_LBRACK] = ACTIONS(2215),
[anon_sym_EQ] = ACTIONS(2217),
[anon_sym_COLON] = ACTIONS(2219),
[anon_sym_COLON_QMARK] = ACTIONS(2217),
[anon_sym_COLON_DASH] = ACTIONS(2217),
[anon_sym_PERCENT] = ACTIONS(2217),
[anon_sym_SLASH] = ACTIONS(2217),
[sym_comment] = ACTIONS(52),
},
[758] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2221),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[759] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2221),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[760] = {
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(588),
[anon_sym_BQUOTE] = ACTIONS(2221),
[sym_comment] = ACTIONS(52),
},
[761] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(600),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(2221),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[762] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2223),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[763] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2223),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[764] = {
[sym_do_group] = STATE(1059),
[anon_sym_do] = ACTIONS(326),
[sym_comment] = ACTIONS(52),
},
[765] = {
[sym_concatenation] = STATE(455),
[sym_string] = STATE(449),
[sym_simple_expansion] = STATE(449),
[sym_expansion] = STATE(449),
[sym_command_substitution] = STATE(449),
[sym_process_substitution] = STATE(449),
[aux_sym_for_statement_repeat1] = STATE(765),
[anon_sym_SEMI_SEMI] = ACTIONS(1368),
[anon_sym_DQUOTE] = ACTIONS(2225),
[sym_raw_string] = ACTIONS(2228),
[anon_sym_DOLLAR] = ACTIONS(2231),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2234),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2237),
[anon_sym_BQUOTE] = ACTIONS(2240),
[anon_sym_LT_LPAREN] = ACTIONS(2243),
[anon_sym_GT_LPAREN] = ACTIONS(2243),
[sym_word] = ACTIONS(2228),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1368),
[anon_sym_LF] = ACTIONS(1368),
[anon_sym_AMP] = ACTIONS(1368),
},
[766] = {
[sym_file_descriptor] = ACTIONS(616),
[sym_variable_name] = ACTIONS(616),
[anon_sym_for] = ACTIONS(618),
[anon_sym_while] = ACTIONS(618),
[anon_sym_done] = ACTIONS(618),
[anon_sym_if] = ACTIONS(618),
[anon_sym_case] = ACTIONS(618),
[anon_sym_function] = ACTIONS(618),
[anon_sym_LPAREN] = ACTIONS(616),
[anon_sym_LBRACK] = ACTIONS(618),
[anon_sym_LBRACK_LBRACK] = ACTIONS(618),
[anon_sym_declare] = ACTIONS(618),
[anon_sym_typeset] = ACTIONS(618),
[anon_sym_export] = ACTIONS(618),
[anon_sym_readonly] = ACTIONS(618),
[anon_sym_local] = ACTIONS(618),
[anon_sym_LT] = ACTIONS(618),
[anon_sym_GT] = ACTIONS(618),
[anon_sym_GT_GT] = ACTIONS(616),
[anon_sym_AMP_GT] = ACTIONS(618),
[anon_sym_AMP_GT_GT] = ACTIONS(616),
[anon_sym_LT_AMP] = ACTIONS(616),
[anon_sym_GT_AMP] = ACTIONS(616),
[anon_sym_DQUOTE] = ACTIONS(616),
[sym_raw_string] = ACTIONS(616),
[anon_sym_DOLLAR] = ACTIONS(618),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(616),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(616),
[anon_sym_BQUOTE] = ACTIONS(616),
[anon_sym_LT_LPAREN] = ACTIONS(616),
[anon_sym_GT_LPAREN] = ACTIONS(616),
[sym_word] = ACTIONS(620),
[sym_comment] = ACTIONS(52),
},
[767] = {
[anon_sym_PIPE] = ACTIONS(2246),
[anon_sym_RPAREN] = ACTIONS(2246),
[anon_sym_SEMI_SEMI] = ACTIONS(2246),
[anon_sym_PIPE_AMP] = ACTIONS(2246),
[anon_sym_AMP_AMP] = ACTIONS(2246),
[anon_sym_PIPE_PIPE] = ACTIONS(2246),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2246),
[anon_sym_LF] = ACTIONS(2246),
[anon_sym_AMP] = ACTIONS(2246),
},
[768] = {
[sym__terminated_statement] = STATE(458),
[sym_for_statement] = STATE(459),
[sym_while_statement] = STATE(459),
[sym_if_statement] = STATE(459),
[sym_case_statement] = STATE(459),
[sym_function_definition] = STATE(459),
[sym_subshell] = STATE(459),
[sym_pipeline] = STATE(459),
[sym_list] = STATE(459),
[sym_bracket_command] = STATE(459),
[sym_command] = STATE(459),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(460),
[sym_declaration_command] = STATE(459),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(768),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(652),
[sym_variable_name] = ACTIONS(655),
[anon_sym_for] = ACTIONS(660),
[anon_sym_while] = ACTIONS(663),
[anon_sym_done] = ACTIONS(2248),
[anon_sym_if] = ACTIONS(666),
[anon_sym_case] = ACTIONS(669),
[anon_sym_function] = ACTIONS(672),
[anon_sym_LPAREN] = ACTIONS(675),
[anon_sym_LBRACK] = ACTIONS(678),
[anon_sym_LBRACK_LBRACK] = ACTIONS(681),
[anon_sym_declare] = ACTIONS(684),
[anon_sym_typeset] = ACTIONS(684),
[anon_sym_export] = ACTIONS(684),
[anon_sym_readonly] = ACTIONS(684),
[anon_sym_local] = ACTIONS(684),
[anon_sym_LT] = ACTIONS(687),
[anon_sym_GT] = ACTIONS(687),
[anon_sym_GT_GT] = ACTIONS(690),
[anon_sym_AMP_GT] = ACTIONS(687),
[anon_sym_AMP_GT_GT] = ACTIONS(690),
[anon_sym_LT_AMP] = ACTIONS(690),
[anon_sym_GT_AMP] = ACTIONS(690),
[anon_sym_DQUOTE] = ACTIONS(693),
[sym_raw_string] = ACTIONS(696),
[anon_sym_DOLLAR] = ACTIONS(699),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(702),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(705),
[anon_sym_BQUOTE] = ACTIONS(708),
[anon_sym_LT_LPAREN] = ACTIONS(711),
[anon_sym_GT_LPAREN] = ACTIONS(711),
[sym_word] = ACTIONS(714),
[sym_comment] = ACTIONS(52),
},
[769] = {
[anon_sym_then] = ACTIONS(2250),
[sym_comment] = ACTIONS(52),
},
[770] = {
[sym_file_descriptor] = ACTIONS(234),
[sym_variable_name] = ACTIONS(234),
[anon_sym_for] = ACTIONS(236),
[anon_sym_while] = ACTIONS(236),
[anon_sym_if] = ACTIONS(236),
[anon_sym_fi] = ACTIONS(236),
[anon_sym_case] = ACTIONS(236),
[anon_sym_function] = ACTIONS(236),
[anon_sym_LPAREN] = ACTIONS(234),
[anon_sym_LBRACK] = ACTIONS(236),
[anon_sym_LBRACK_LBRACK] = ACTIONS(236),
[anon_sym_declare] = ACTIONS(236),
[anon_sym_typeset] = ACTIONS(236),
[anon_sym_export] = ACTIONS(236),
[anon_sym_readonly] = ACTIONS(236),
[anon_sym_local] = ACTIONS(236),
[anon_sym_LT] = ACTIONS(236),
[anon_sym_GT] = ACTIONS(236),
[anon_sym_GT_GT] = ACTIONS(234),
[anon_sym_AMP_GT] = ACTIONS(236),
[anon_sym_AMP_GT_GT] = ACTIONS(234),
[anon_sym_LT_AMP] = ACTIONS(234),
[anon_sym_GT_AMP] = ACTIONS(234),
[anon_sym_DQUOTE] = ACTIONS(234),
[sym_raw_string] = ACTIONS(234),
[anon_sym_DOLLAR] = ACTIONS(236),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(234),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(234),
[anon_sym_BQUOTE] = ACTIONS(234),
[anon_sym_LT_LPAREN] = ACTIONS(234),
[anon_sym_GT_LPAREN] = ACTIONS(234),
[sym_word] = ACTIONS(238),
[sym_comment] = ACTIONS(52),
},
[771] = {
[anon_sym_PIPE] = ACTIONS(240),
[anon_sym_SEMI_SEMI] = ACTIONS(2252),
[anon_sym_PIPE_AMP] = ACTIONS(240),
[anon_sym_AMP_AMP] = ACTIONS(244),
[anon_sym_PIPE_PIPE] = ACTIONS(244),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2252),
[anon_sym_LF] = ACTIONS(2252),
[anon_sym_AMP] = ACTIONS(2252),
},
[772] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(240),
[anon_sym_SEMI_SEMI] = ACTIONS(2252),
[anon_sym_PIPE_AMP] = ACTIONS(240),
[anon_sym_AMP_AMP] = ACTIONS(244),
[anon_sym_PIPE_PIPE] = ACTIONS(244),
[anon_sym_LT] = ACTIONS(270),
[anon_sym_GT] = ACTIONS(270),
[anon_sym_GT_GT] = ACTIONS(270),
[anon_sym_AMP_GT] = ACTIONS(270),
[anon_sym_AMP_GT_GT] = ACTIONS(270),
[anon_sym_LT_AMP] = ACTIONS(270),
[anon_sym_GT_AMP] = ACTIONS(270),
[anon_sym_DQUOTE] = ACTIONS(270),
[sym_raw_string] = ACTIONS(270),
[anon_sym_DOLLAR] = ACTIONS(270),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(270),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(270),
[anon_sym_BQUOTE] = ACTIONS(270),
[anon_sym_LT_LPAREN] = ACTIONS(270),
[anon_sym_GT_LPAREN] = ACTIONS(270),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2252),
[anon_sym_LF] = ACTIONS(2252),
[anon_sym_AMP] = ACTIONS(2252),
},
[773] = {
[sym__terminated_statement] = STATE(770),
[sym_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_bracket_command] = STATE(771),
[sym_command] = STATE(771),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(772),
[sym_declaration_command] = STATE(771),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(1062),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_fi] = ACTIONS(2254),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[774] = {
[sym_file_descriptor] = ACTIONS(616),
[sym_variable_name] = ACTIONS(616),
[anon_sym_for] = ACTIONS(618),
[anon_sym_while] = ACTIONS(618),
[anon_sym_if] = ACTIONS(618),
[anon_sym_fi] = ACTIONS(618),
[anon_sym_elif] = ACTIONS(618),
[anon_sym_else] = ACTIONS(618),
[anon_sym_case] = ACTIONS(618),
[anon_sym_function] = ACTIONS(618),
[anon_sym_LPAREN] = ACTIONS(616),
[anon_sym_LBRACK] = ACTIONS(618),
[anon_sym_LBRACK_LBRACK] = ACTIONS(618),
[anon_sym_declare] = ACTIONS(618),
[anon_sym_typeset] = ACTIONS(618),
[anon_sym_export] = ACTIONS(618),
[anon_sym_readonly] = ACTIONS(618),
[anon_sym_local] = ACTIONS(618),
[anon_sym_LT] = ACTIONS(618),
[anon_sym_GT] = ACTIONS(618),
[anon_sym_GT_GT] = ACTIONS(616),
[anon_sym_AMP_GT] = ACTIONS(618),
[anon_sym_AMP_GT_GT] = ACTIONS(616),
[anon_sym_LT_AMP] = ACTIONS(616),
[anon_sym_GT_AMP] = ACTIONS(616),
[anon_sym_DQUOTE] = ACTIONS(616),
[sym_raw_string] = ACTIONS(616),
[anon_sym_DOLLAR] = ACTIONS(618),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(616),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(616),
[anon_sym_BQUOTE] = ACTIONS(616),
[anon_sym_LT_LPAREN] = ACTIONS(616),
[anon_sym_GT_LPAREN] = ACTIONS(616),
[sym_word] = ACTIONS(620),
[sym_comment] = ACTIONS(52),
},
[775] = {
[anon_sym_PIPE] = ACTIONS(2256),
[anon_sym_RPAREN] = ACTIONS(2256),
[anon_sym_SEMI_SEMI] = ACTIONS(2256),
[anon_sym_PIPE_AMP] = ACTIONS(2256),
[anon_sym_AMP_AMP] = ACTIONS(2256),
[anon_sym_PIPE_PIPE] = ACTIONS(2256),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2256),
[anon_sym_LF] = ACTIONS(2256),
[anon_sym_AMP] = ACTIONS(2256),
},
[776] = {
[anon_sym_fi] = ACTIONS(2258),
[sym_comment] = ACTIONS(52),
},
[777] = {
[sym__terminated_statement] = STATE(465),
[sym_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_bracket_command] = STATE(466),
[sym_command] = STATE(466),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(469),
[sym_declaration_command] = STATE(466),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(777),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(652),
[sym_variable_name] = ACTIONS(655),
[anon_sym_for] = ACTIONS(660),
[anon_sym_while] = ACTIONS(663),
[anon_sym_if] = ACTIONS(666),
[anon_sym_fi] = ACTIONS(2248),
[anon_sym_elif] = ACTIONS(2248),
[anon_sym_else] = ACTIONS(2248),
[anon_sym_case] = ACTIONS(669),
[anon_sym_function] = ACTIONS(672),
[anon_sym_LPAREN] = ACTIONS(675),
[anon_sym_LBRACK] = ACTIONS(678),
[anon_sym_LBRACK_LBRACK] = ACTIONS(681),
[anon_sym_declare] = ACTIONS(684),
[anon_sym_typeset] = ACTIONS(684),
[anon_sym_export] = ACTIONS(684),
[anon_sym_readonly] = ACTIONS(684),
[anon_sym_local] = ACTIONS(684),
[anon_sym_LT] = ACTIONS(687),
[anon_sym_GT] = ACTIONS(687),
[anon_sym_GT_GT] = ACTIONS(690),
[anon_sym_AMP_GT] = ACTIONS(687),
[anon_sym_AMP_GT_GT] = ACTIONS(690),
[anon_sym_LT_AMP] = ACTIONS(690),
[anon_sym_GT_AMP] = ACTIONS(690),
[anon_sym_DQUOTE] = ACTIONS(693),
[sym_raw_string] = ACTIONS(696),
[anon_sym_DOLLAR] = ACTIONS(699),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(702),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(705),
[anon_sym_BQUOTE] = ACTIONS(708),
[anon_sym_LT_LPAREN] = ACTIONS(711),
[anon_sym_GT_LPAREN] = ACTIONS(711),
[sym_word] = ACTIONS(714),
[sym_comment] = ACTIONS(52),
},
[778] = {
[sym_elif_clause] = STATE(467),
[sym_else_clause] = STATE(1064),
[aux_sym_if_statement_repeat1] = STATE(779),
[anon_sym_fi] = ACTIONS(2258),
[anon_sym_elif] = ACTIONS(1538),
[anon_sym_else] = ACTIONS(1540),
[sym_comment] = ACTIONS(52),
},
[779] = {
[sym_elif_clause] = STATE(467),
[aux_sym_if_statement_repeat1] = STATE(779),
[anon_sym_fi] = ACTIONS(2260),
[anon_sym_elif] = ACTIONS(2262),
[anon_sym_else] = ACTIONS(2260),
[sym_comment] = ACTIONS(52),
},
[780] = {
[anon_sym_PIPE] = ACTIONS(2265),
[anon_sym_RPAREN] = ACTIONS(2265),
[anon_sym_SEMI_SEMI] = ACTIONS(2265),
[anon_sym_PIPE_AMP] = ACTIONS(2265),
[anon_sym_AMP_AMP] = ACTIONS(2265),
[anon_sym_PIPE_PIPE] = ACTIONS(2265),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2265),
[anon_sym_LF] = ACTIONS(2265),
[anon_sym_AMP] = ACTIONS(2265),
},
[781] = {
[aux_sym_case_item_repeat1] = STATE(1067),
[aux_sym_concatenation_repeat1] = STATE(1068),
[sym__concat] = ACTIONS(741),
[anon_sym_PIPE] = ACTIONS(2267),
[anon_sym_RPAREN] = ACTIONS(2269),
[sym_comment] = ACTIONS(52),
},
[782] = {
[anon_sym_esac] = ACTIONS(2271),
[anon_sym_DQUOTE] = ACTIONS(2273),
[sym_raw_string] = ACTIONS(2273),
[anon_sym_DOLLAR] = ACTIONS(2271),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2273),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2273),
[anon_sym_BQUOTE] = ACTIONS(2273),
[anon_sym_LT_LPAREN] = ACTIONS(2273),
[anon_sym_GT_LPAREN] = ACTIONS(2273),
[sym_word] = ACTIONS(2275),
[sym_comment] = ACTIONS(52),
},
[783] = {
[aux_sym_case_item_repeat1] = STATE(1067),
[anon_sym_PIPE] = ACTIONS(2267),
[anon_sym_RPAREN] = ACTIONS(2269),
[sym_comment] = ACTIONS(52),
},
[784] = {
[sym_case_item] = STATE(782),
[sym_concatenation] = STATE(783),
[sym_string] = STATE(781),
[sym_simple_expansion] = STATE(781),
[sym_expansion] = STATE(781),
[sym_command_substitution] = STATE(781),
[sym_process_substitution] = STATE(781),
[aux_sym_case_statement_repeat1] = STATE(1070),
[anon_sym_esac] = ACTIONS(2277),
[anon_sym_DQUOTE] = ACTIONS(284),
[sym_raw_string] = ACTIONS(1544),
[anon_sym_DOLLAR] = ACTIONS(288),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(290),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(292),
[anon_sym_BQUOTE] = ACTIONS(294),
[anon_sym_LT_LPAREN] = ACTIONS(296),
[anon_sym_GT_LPAREN] = ACTIONS(296),
[sym_word] = ACTIONS(1546),
[sym_comment] = ACTIONS(52),
},
[785] = {
[sym_case_item] = STATE(782),
[sym_concatenation] = STATE(783),
[sym_string] = STATE(781),
[sym_simple_expansion] = STATE(781),
[sym_expansion] = STATE(781),
[sym_command_substitution] = STATE(781),
[sym_process_substitution] = STATE(781),
[aux_sym_case_statement_repeat1] = STATE(1071),
[anon_sym_esac] = ACTIONS(2277),
[anon_sym_DQUOTE] = ACTIONS(284),
[sym_raw_string] = ACTIONS(1544),
[anon_sym_DOLLAR] = ACTIONS(288),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(290),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(292),
[anon_sym_BQUOTE] = ACTIONS(294),
[anon_sym_LT_LPAREN] = ACTIONS(296),
[anon_sym_GT_LPAREN] = ACTIONS(296),
[sym_word] = ACTIONS(1546),
[sym_comment] = ACTIONS(52),
},
[786] = {
[sym__concat] = ACTIONS(1736),
[anon_sym_in] = ACTIONS(1738),
[anon_sym_SEMI_SEMI] = ACTIONS(1738),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1738),
[anon_sym_LF] = ACTIONS(1738),
[anon_sym_AMP] = ACTIONS(1738),
},
[787] = {
[anon_sym_AT] = ACTIONS(2279),
[sym_comment] = ACTIONS(52),
},
[788] = {
[sym__concat] = ACTIONS(1742),
[anon_sym_in] = ACTIONS(1744),
[anon_sym_SEMI_SEMI] = ACTIONS(1744),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1744),
[anon_sym_LF] = ACTIONS(1744),
[anon_sym_AMP] = ACTIONS(1744),
},
[789] = {
[anon_sym_AT] = ACTIONS(2281),
[sym_comment] = ACTIONS(52),
},
[790] = {
[anon_sym_RBRACK] = ACTIONS(2283),
[sym_comment] = ACTIONS(52),
},
[791] = {
[sym__concat] = ACTIONS(1750),
[anon_sym_in] = ACTIONS(1752),
[anon_sym_SEMI_SEMI] = ACTIONS(1752),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1752),
[anon_sym_LF] = ACTIONS(1752),
[anon_sym_AMP] = ACTIONS(1752),
},
[792] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(2285),
[sym_comment] = ACTIONS(52),
},
[793] = {
[anon_sym_RBRACE] = ACTIONS(2285),
[sym_comment] = ACTIONS(52),
},
[794] = {
[anon_sym_RBRACK] = ACTIONS(2287),
[sym_comment] = ACTIONS(52),
},
[795] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(2289),
[sym_comment] = ACTIONS(52),
},
[796] = {
[anon_sym_RBRACE] = ACTIONS(2289),
[sym_comment] = ACTIONS(52),
},
[797] = {
[sym_file_redirect] = STATE(1078),
[sym_file_descriptor] = ACTIONS(610),
[anon_sym_PIPE] = ACTIONS(2291),
[anon_sym_SEMI_SEMI] = ACTIONS(2291),
[anon_sym_PIPE_AMP] = ACTIONS(2291),
[anon_sym_AMP_AMP] = ACTIONS(2291),
[anon_sym_PIPE_PIPE] = ACTIONS(2291),
[anon_sym_LT] = ACTIONS(614),
[anon_sym_GT] = ACTIONS(614),
[anon_sym_GT_GT] = ACTIONS(614),
[anon_sym_AMP_GT] = ACTIONS(614),
[anon_sym_AMP_GT_GT] = ACTIONS(614),
[anon_sym_LT_AMP] = ACTIONS(614),
[anon_sym_GT_AMP] = ACTIONS(614),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2291),
[anon_sym_LF] = ACTIONS(2291),
[anon_sym_AMP] = ACTIONS(2291),
},
[798] = {
[aux_sym_concatenation_repeat1] = STATE(1079),
[sym_file_descriptor] = ACTIONS(470),
[sym__concat] = ACTIONS(779),
[sym_variable_name] = ACTIONS(470),
[anon_sym_PIPE] = ACTIONS(472),
[anon_sym_RPAREN] = ACTIONS(472),
[anon_sym_SEMI_SEMI] = ACTIONS(472),
[anon_sym_PIPE_AMP] = ACTIONS(472),
[anon_sym_AMP_AMP] = ACTIONS(472),
[anon_sym_PIPE_PIPE] = ACTIONS(472),
[anon_sym_LT] = ACTIONS(472),
[anon_sym_GT] = ACTIONS(472),
[anon_sym_GT_GT] = ACTIONS(472),
[anon_sym_AMP_GT] = ACTIONS(472),
[anon_sym_AMP_GT_GT] = ACTIONS(472),
[anon_sym_LT_AMP] = ACTIONS(472),
[anon_sym_GT_AMP] = ACTIONS(472),
[anon_sym_DQUOTE] = ACTIONS(472),
[sym_raw_string] = ACTIONS(472),
[anon_sym_DOLLAR] = ACTIONS(472),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(472),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(472),
[anon_sym_BQUOTE] = ACTIONS(472),
[anon_sym_LT_LPAREN] = ACTIONS(472),
[anon_sym_GT_LPAREN] = ACTIONS(472),
[sym_word] = ACTIONS(472),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(472),
[anon_sym_LF] = ACTIONS(472),
[anon_sym_AMP] = ACTIONS(472),
},
[799] = {
[sym_compound_statement] = STATE(1080),
[anon_sym_LBRACE] = ACTIONS(352),
[sym_comment] = ACTIONS(52),
},
[800] = {
[aux_sym_concatenation_repeat1] = STATE(1081),
[sym__concat] = ACTIONS(1677),
[sym_variable_name] = ACTIONS(755),
[anon_sym_PIPE] = ACTIONS(757),
[anon_sym_RPAREN] = ACTIONS(757),
[anon_sym_SEMI_SEMI] = ACTIONS(757),
[anon_sym_PIPE_AMP] = ACTIONS(757),
[anon_sym_AMP_AMP] = ACTIONS(757),
[anon_sym_PIPE_PIPE] = ACTIONS(757),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(757),
[anon_sym_SEMI] = ACTIONS(757),
[anon_sym_LF] = ACTIONS(757),
[anon_sym_AMP] = ACTIONS(757),
},
[801] = {
[sym_file_redirect] = STATE(969),
[sym_file_descriptor] = ACTIONS(863),
[anon_sym_PIPE] = ACTIONS(1575),
[anon_sym_RPAREN] = ACTIONS(1575),
[anon_sym_SEMI_SEMI] = ACTIONS(1575),
[anon_sym_PIPE_AMP] = ACTIONS(1575),
[anon_sym_AMP_AMP] = ACTIONS(1575),
[anon_sym_PIPE_PIPE] = ACTIONS(1575),
[anon_sym_LT] = ACTIONS(865),
[anon_sym_GT] = ACTIONS(865),
[anon_sym_GT_GT] = ACTIONS(865),
[anon_sym_AMP_GT] = ACTIONS(865),
[anon_sym_AMP_GT_GT] = ACTIONS(865),
[anon_sym_LT_AMP] = ACTIONS(865),
[anon_sym_GT_AMP] = ACTIONS(865),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1575),
[anon_sym_LF] = ACTIONS(1575),
[anon_sym_AMP] = ACTIONS(1575),
},
[802] = {
[sym_concatenation] = STATE(971),
[sym_string] = STATE(1082),
[sym_simple_expansion] = STATE(1082),
[sym_expansion] = STATE(1082),
[sym_command_substitution] = STATE(1082),
[sym_process_substitution] = STATE(1082),
[anon_sym_DQUOTE] = ACTIONS(1310),
[sym_raw_string] = ACTIONS(2293),
[anon_sym_DOLLAR] = ACTIONS(1314),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1316),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1318),
[anon_sym_BQUOTE] = ACTIONS(1320),
[anon_sym_LT_LPAREN] = ACTIONS(1322),
[anon_sym_GT_LPAREN] = ACTIONS(1322),
[sym_word] = ACTIONS(2295),
[sym_comment] = ACTIONS(52),
},
[803] = {
[aux_sym_concatenation_repeat1] = STATE(1083),
[sym__concat] = ACTIONS(2025),
[anon_sym_PIPE] = ACTIONS(1338),
[anon_sym_RPAREN] = ACTIONS(1338),
[anon_sym_SEMI_SEMI] = ACTIONS(1338),
[anon_sym_PIPE_AMP] = ACTIONS(1338),
[anon_sym_AMP_AMP] = ACTIONS(1338),
[anon_sym_PIPE_PIPE] = ACTIONS(1338),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1338),
[anon_sym_LF] = ACTIONS(1338),
[anon_sym_AMP] = ACTIONS(1338),
},
[804] = {
[aux_sym_concatenation_repeat1] = STATE(805),
[sym_file_descriptor] = ACTIONS(735),
[sym__concat] = ACTIONS(1336),
[anon_sym_PIPE] = ACTIONS(2037),
[anon_sym_RPAREN] = ACTIONS(2037),
[anon_sym_SEMI_SEMI] = ACTIONS(2037),
[anon_sym_PIPE_AMP] = ACTIONS(2037),
[anon_sym_AMP_AMP] = ACTIONS(2037),
[anon_sym_PIPE_PIPE] = ACTIONS(2037),
[anon_sym_LT] = ACTIONS(2037),
[anon_sym_GT] = ACTIONS(2037),
[anon_sym_GT_GT] = ACTIONS(2037),
[anon_sym_AMP_GT] = ACTIONS(2037),
[anon_sym_AMP_GT_GT] = ACTIONS(2037),
[anon_sym_LT_AMP] = ACTIONS(2037),
[anon_sym_GT_AMP] = ACTIONS(2037),
[anon_sym_LT_LT] = ACTIONS(2037),
[anon_sym_LT_LT_DASH] = ACTIONS(2037),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2037),
[anon_sym_LF] = ACTIONS(2037),
[anon_sym_AMP] = ACTIONS(2037),
},
[805] = {
[aux_sym_concatenation_repeat1] = STATE(1084),
[sym_file_descriptor] = ACTIONS(470),
[sym__concat] = ACTIONS(1336),
[anon_sym_PIPE] = ACTIONS(472),
[anon_sym_RPAREN] = ACTIONS(472),
[anon_sym_SEMI_SEMI] = ACTIONS(472),
[anon_sym_PIPE_AMP] = ACTIONS(472),
[anon_sym_AMP_AMP] = ACTIONS(472),
[anon_sym_PIPE_PIPE] = ACTIONS(472),
[anon_sym_LT] = ACTIONS(472),
[anon_sym_GT] = ACTIONS(472),
[anon_sym_GT_GT] = ACTIONS(472),
[anon_sym_AMP_GT] = ACTIONS(472),
[anon_sym_AMP_GT_GT] = ACTIONS(472),
[anon_sym_LT_AMP] = ACTIONS(472),
[anon_sym_GT_AMP] = ACTIONS(472),
[anon_sym_LT_LT] = ACTIONS(472),
[anon_sym_LT_LT_DASH] = ACTIONS(472),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(472),
[anon_sym_LF] = ACTIONS(472),
[anon_sym_AMP] = ACTIONS(472),
},
[806] = {
[anon_sym_PIPE] = ACTIONS(2297),
[anon_sym_RPAREN] = ACTIONS(2297),
[anon_sym_SEMI_SEMI] = ACTIONS(2297),
[anon_sym_PIPE_AMP] = ACTIONS(2297),
[anon_sym_AMP_AMP] = ACTIONS(2297),
[anon_sym_PIPE_PIPE] = ACTIONS(2297),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2297),
[anon_sym_LF] = ACTIONS(2297),
[anon_sym_AMP] = ACTIONS(2297),
},
[807] = {
[sym_file_redirect] = STATE(155),
[sym_heredoc_redirect] = STATE(155),
[aux_sym_command_repeat2] = STATE(507),
[sym_file_descriptor] = ACTIONS(370),
[anon_sym_PIPE] = ACTIONS(2089),
[anon_sym_RPAREN] = ACTIONS(2089),
[anon_sym_SEMI_SEMI] = ACTIONS(2089),
[anon_sym_PIPE_AMP] = ACTIONS(2089),
[anon_sym_AMP_AMP] = ACTIONS(2089),
[anon_sym_PIPE_PIPE] = ACTIONS(2089),
[anon_sym_LT] = ACTIONS(372),
[anon_sym_GT] = ACTIONS(372),
[anon_sym_GT_GT] = ACTIONS(372),
[anon_sym_AMP_GT] = ACTIONS(372),
[anon_sym_AMP_GT_GT] = ACTIONS(372),
[anon_sym_LT_AMP] = ACTIONS(372),
[anon_sym_GT_AMP] = ACTIONS(372),
[anon_sym_LT_LT] = ACTIONS(252),
[anon_sym_LT_LT_DASH] = ACTIONS(252),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2089),
[anon_sym_LF] = ACTIONS(2089),
[anon_sym_AMP] = ACTIONS(2089),
},
[808] = {
[sym__concat] = ACTIONS(1736),
[anon_sym_RBRACE] = ACTIONS(1736),
[anon_sym_RBRACK] = ACTIONS(2299),
[anon_sym_DQUOTE] = ACTIONS(1736),
[sym_raw_string] = ACTIONS(1736),
[anon_sym_DOLLAR] = ACTIONS(2299),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1736),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1736),
[anon_sym_BQUOTE] = ACTIONS(1736),
[anon_sym_LT_LPAREN] = ACTIONS(1736),
[anon_sym_GT_LPAREN] = ACTIONS(1736),
[sym_word] = ACTIONS(1738),
[sym_comment] = ACTIONS(52),
},
[809] = {
[anon_sym_AT] = ACTIONS(2301),
[sym_comment] = ACTIONS(52),
},
[810] = {
[sym__concat] = ACTIONS(1742),
[anon_sym_RBRACE] = ACTIONS(1742),
[anon_sym_RBRACK] = ACTIONS(2303),
[anon_sym_DQUOTE] = ACTIONS(1742),
[sym_raw_string] = ACTIONS(1742),
[anon_sym_DOLLAR] = ACTIONS(2303),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1742),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1742),
[anon_sym_BQUOTE] = ACTIONS(1742),
[anon_sym_LT_LPAREN] = ACTIONS(1742),
[anon_sym_GT_LPAREN] = ACTIONS(1742),
[sym_word] = ACTIONS(1744),
[sym_comment] = ACTIONS(52),
},
[811] = {
[anon_sym_AT] = ACTIONS(2305),
[sym_comment] = ACTIONS(52),
},
[812] = {
[anon_sym_RBRACK] = ACTIONS(2307),
[sym_comment] = ACTIONS(52),
},
[813] = {
[sym__concat] = ACTIONS(1750),
[anon_sym_RBRACE] = ACTIONS(1750),
[anon_sym_RBRACK] = ACTIONS(2309),
[anon_sym_DQUOTE] = ACTIONS(1750),
[sym_raw_string] = ACTIONS(1750),
[anon_sym_DOLLAR] = ACTIONS(2309),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1750),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1750),
[anon_sym_BQUOTE] = ACTIONS(1750),
[anon_sym_LT_LPAREN] = ACTIONS(1750),
[anon_sym_GT_LPAREN] = ACTIONS(1750),
[sym_word] = ACTIONS(1752),
[sym_comment] = ACTIONS(52),
},
[814] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(2311),
[sym_comment] = ACTIONS(52),
},
[815] = {
[anon_sym_RBRACE] = ACTIONS(2311),
[sym_comment] = ACTIONS(52),
},
[816] = {
[anon_sym_RBRACK] = ACTIONS(2313),
[sym_comment] = ACTIONS(52),
},
[817] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(2315),
[sym_comment] = ACTIONS(52),
},
[818] = {
[anon_sym_RBRACE] = ACTIONS(2315),
[sym_comment] = ACTIONS(52),
},
[819] = {
[sym__concat] = ACTIONS(1736),
[anon_sym_RBRACK_RBRACK] = ACTIONS(2299),
[anon_sym_DQUOTE] = ACTIONS(1736),
[sym_raw_string] = ACTIONS(1736),
[anon_sym_DOLLAR] = ACTIONS(2299),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1736),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1736),
[anon_sym_BQUOTE] = ACTIONS(1736),
[anon_sym_LT_LPAREN] = ACTIONS(1736),
[anon_sym_GT_LPAREN] = ACTIONS(1736),
[sym_word] = ACTIONS(1738),
[sym_comment] = ACTIONS(52),
},
[820] = {
[anon_sym_AT] = ACTIONS(2317),
[sym_comment] = ACTIONS(52),
},
[821] = {
[sym__concat] = ACTIONS(1742),
[anon_sym_RBRACK_RBRACK] = ACTIONS(2303),
[anon_sym_DQUOTE] = ACTIONS(1742),
[sym_raw_string] = ACTIONS(1742),
[anon_sym_DOLLAR] = ACTIONS(2303),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1742),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1742),
[anon_sym_BQUOTE] = ACTIONS(1742),
[anon_sym_LT_LPAREN] = ACTIONS(1742),
[anon_sym_GT_LPAREN] = ACTIONS(1742),
[sym_word] = ACTIONS(1744),
[sym_comment] = ACTIONS(52),
},
[822] = {
[anon_sym_AT] = ACTIONS(2319),
[sym_comment] = ACTIONS(52),
},
[823] = {
[anon_sym_RBRACK] = ACTIONS(2321),
[sym_comment] = ACTIONS(52),
},
[824] = {
[sym__concat] = ACTIONS(1750),
[anon_sym_RBRACK_RBRACK] = ACTIONS(2309),
[anon_sym_DQUOTE] = ACTIONS(1750),
[sym_raw_string] = ACTIONS(1750),
[anon_sym_DOLLAR] = ACTIONS(2309),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1750),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1750),
[anon_sym_BQUOTE] = ACTIONS(1750),
[anon_sym_LT_LPAREN] = ACTIONS(1750),
[anon_sym_GT_LPAREN] = ACTIONS(1750),
[sym_word] = ACTIONS(1752),
[sym_comment] = ACTIONS(52),
},
[825] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(2323),
[sym_comment] = ACTIONS(52),
},
[826] = {
[anon_sym_RBRACE] = ACTIONS(2323),
[sym_comment] = ACTIONS(52),
},
[827] = {
[anon_sym_RBRACK] = ACTIONS(2325),
[sym_comment] = ACTIONS(52),
},
[828] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(2327),
[sym_comment] = ACTIONS(52),
},
[829] = {
[anon_sym_RBRACE] = ACTIONS(2327),
[sym_comment] = ACTIONS(52),
},
[830] = {
[sym_variable_name] = ACTIONS(1442),
[anon_sym_PIPE] = ACTIONS(1444),
[anon_sym_RPAREN] = ACTIONS(1444),
[anon_sym_SEMI_SEMI] = ACTIONS(1444),
[anon_sym_PIPE_AMP] = ACTIONS(1444),
[anon_sym_AMP_AMP] = ACTIONS(1444),
[anon_sym_PIPE_PIPE] = ACTIONS(1444),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1444),
[anon_sym_SEMI] = ACTIONS(1444),
[anon_sym_LF] = ACTIONS(1444),
[anon_sym_AMP] = ACTIONS(1444),
},
[831] = {
[sym_concatenation] = STATE(430),
[sym_string] = STATE(424),
[sym_simple_expansion] = STATE(424),
[sym_expansion] = STATE(424),
[sym_command_substitution] = STATE(424),
[sym_process_substitution] = STATE(424),
[aux_sym_for_statement_repeat1] = STATE(734),
[anon_sym_RPAREN] = ACTIONS(2329),
[anon_sym_DQUOTE] = ACTIONS(761),
[sym_raw_string] = ACTIONS(763),
[anon_sym_DOLLAR] = ACTIONS(765),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(767),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(769),
[anon_sym_BQUOTE] = ACTIONS(771),
[anon_sym_LT_LPAREN] = ACTIONS(773),
[anon_sym_GT_LPAREN] = ACTIONS(773),
[sym_word] = ACTIONS(775),
[sym_comment] = ACTIONS(52),
},
[832] = {
[sym__concat] = ACTIONS(446),
[sym_variable_name] = ACTIONS(446),
[anon_sym_PIPE] = ACTIONS(448),
[anon_sym_RPAREN] = ACTIONS(448),
[anon_sym_SEMI_SEMI] = ACTIONS(448),
[anon_sym_PIPE_AMP] = ACTIONS(448),
[anon_sym_AMP_AMP] = ACTIONS(448),
[anon_sym_PIPE_PIPE] = ACTIONS(448),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(448),
[anon_sym_SEMI] = ACTIONS(448),
[anon_sym_LF] = ACTIONS(448),
[anon_sym_AMP] = ACTIONS(448),
},
[833] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(298),
[anon_sym_DQUOTE] = ACTIONS(2331),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[834] = {
[sym_string] = STATE(1099),
[sym_simple_expansion] = STATE(1099),
[sym_expansion] = STATE(1099),
[sym_command_substitution] = STATE(1099),
[sym_process_substitution] = STATE(1099),
[anon_sym_DQUOTE] = ACTIONS(1003),
[sym_raw_string] = ACTIONS(2333),
[anon_sym_DOLLAR] = ACTIONS(1007),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1009),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1011),
[anon_sym_BQUOTE] = ACTIONS(1013),
[anon_sym_LT_LPAREN] = ACTIONS(1015),
[anon_sym_GT_LPAREN] = ACTIONS(1015),
[sym_word] = ACTIONS(2335),
[sym_comment] = ACTIONS(52),
},
[835] = {
[aux_sym_concatenation_repeat1] = STATE(1100),
[sym__concat] = ACTIONS(1677),
[sym_variable_name] = ACTIONS(470),
[anon_sym_PIPE] = ACTIONS(472),
[anon_sym_SEMI_SEMI] = ACTIONS(472),
[anon_sym_PIPE_AMP] = ACTIONS(472),
[anon_sym_AMP_AMP] = ACTIONS(472),
[anon_sym_PIPE_PIPE] = ACTIONS(472),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(472),
[anon_sym_SEMI] = ACTIONS(472),
[anon_sym_LF] = ACTIONS(472),
[anon_sym_AMP] = ACTIONS(472),
},
[836] = {
[sym__concat] = ACTIONS(474),
[sym_variable_name] = ACTIONS(474),
[anon_sym_PIPE] = ACTIONS(476),
[anon_sym_RPAREN] = ACTIONS(476),
[anon_sym_SEMI_SEMI] = ACTIONS(476),
[anon_sym_PIPE_AMP] = ACTIONS(476),
[anon_sym_AMP_AMP] = ACTIONS(476),
[anon_sym_PIPE_PIPE] = ACTIONS(476),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(476),
[anon_sym_SEMI] = ACTIONS(476),
[anon_sym_LF] = ACTIONS(476),
[anon_sym_AMP] = ACTIONS(476),
},
[837] = {
[sym__concat] = ACTIONS(478),
[sym_variable_name] = ACTIONS(478),
[anon_sym_PIPE] = ACTIONS(480),
[anon_sym_RPAREN] = ACTIONS(480),
[anon_sym_SEMI_SEMI] = ACTIONS(480),
[anon_sym_PIPE_AMP] = ACTIONS(480),
[anon_sym_AMP_AMP] = ACTIONS(480),
[anon_sym_PIPE_PIPE] = ACTIONS(480),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(480),
[anon_sym_SEMI] = ACTIONS(480),
[anon_sym_LF] = ACTIONS(480),
[anon_sym_AMP] = ACTIONS(480),
},
[838] = {
[sym__concat] = ACTIONS(482),
[sym_variable_name] = ACTIONS(482),
[anon_sym_PIPE] = ACTIONS(484),
[anon_sym_RPAREN] = ACTIONS(484),
[anon_sym_SEMI_SEMI] = ACTIONS(484),
[anon_sym_PIPE_AMP] = ACTIONS(484),
[anon_sym_AMP_AMP] = ACTIONS(484),
[anon_sym_PIPE_PIPE] = ACTIONS(484),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(484),
[anon_sym_SEMI] = ACTIONS(484),
[anon_sym_LF] = ACTIONS(484),
[anon_sym_AMP] = ACTIONS(484),
},
[839] = {
[sym_special_variable_name] = STATE(1102),
[anon_sym_RBRACE] = ACTIONS(474),
[anon_sym_LBRACK] = ACTIONS(474),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_EQ] = ACTIONS(474),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(174),
[anon_sym_AT] = ACTIONS(174),
[anon_sym_COLON] = ACTIONS(486),
[anon_sym_COLON_QMARK] = ACTIONS(474),
[anon_sym_COLON_DASH] = ACTIONS(474),
[anon_sym_PERCENT] = ACTIONS(474),
[anon_sym_SLASH] = ACTIONS(474),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(2337),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[840] = {
[anon_sym_RBRACE] = ACTIONS(2339),
[anon_sym_LBRACK] = ACTIONS(2341),
[anon_sym_EQ] = ACTIONS(2343),
[anon_sym_COLON] = ACTIONS(2345),
[anon_sym_COLON_QMARK] = ACTIONS(2343),
[anon_sym_COLON_DASH] = ACTIONS(2343),
[anon_sym_PERCENT] = ACTIONS(2343),
[anon_sym_SLASH] = ACTIONS(2343),
[sym_comment] = ACTIONS(52),
},
[841] = {
[anon_sym_RBRACE] = ACTIONS(2347),
[anon_sym_LBRACK] = ACTIONS(2349),
[anon_sym_EQ] = ACTIONS(2351),
[anon_sym_COLON] = ACTIONS(2353),
[anon_sym_COLON_QMARK] = ACTIONS(2351),
[anon_sym_COLON_DASH] = ACTIONS(2351),
[anon_sym_PERCENT] = ACTIONS(2351),
[anon_sym_SLASH] = ACTIONS(2351),
[sym_comment] = ACTIONS(52),
},
[842] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2355),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[843] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2355),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[844] = {
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(588),
[anon_sym_BQUOTE] = ACTIONS(2355),
[sym_comment] = ACTIONS(52),
},
[845] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(600),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(2355),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[846] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2357),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[847] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2357),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[848] = {
[sym_file_descriptor] = ACTIONS(1736),
[sym__concat] = ACTIONS(1736),
[sym_variable_name] = ACTIONS(1736),
[anon_sym_LT] = ACTIONS(2299),
[anon_sym_GT] = ACTIONS(2299),
[anon_sym_GT_GT] = ACTIONS(1736),
[anon_sym_AMP_GT] = ACTIONS(2299),
[anon_sym_AMP_GT_GT] = ACTIONS(1736),
[anon_sym_LT_AMP] = ACTIONS(1736),
[anon_sym_GT_AMP] = ACTIONS(1736),
[anon_sym_DQUOTE] = ACTIONS(1736),
[sym_raw_string] = ACTIONS(1736),
[anon_sym_DOLLAR] = ACTIONS(2299),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1736),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1736),
[anon_sym_BQUOTE] = ACTIONS(1736),
[anon_sym_LT_LPAREN] = ACTIONS(1736),
[anon_sym_GT_LPAREN] = ACTIONS(1736),
[sym_word] = ACTIONS(2299),
[sym_comment] = ACTIONS(52),
},
[849] = {
[anon_sym_AT] = ACTIONS(2359),
[sym_comment] = ACTIONS(52),
},
[850] = {
[sym_file_descriptor] = ACTIONS(1742),
[sym__concat] = ACTIONS(1742),
[sym_variable_name] = ACTIONS(1742),
[anon_sym_LT] = ACTIONS(2303),
[anon_sym_GT] = ACTIONS(2303),
[anon_sym_GT_GT] = ACTIONS(1742),
[anon_sym_AMP_GT] = ACTIONS(2303),
[anon_sym_AMP_GT_GT] = ACTIONS(1742),
[anon_sym_LT_AMP] = ACTIONS(1742),
[anon_sym_GT_AMP] = ACTIONS(1742),
[anon_sym_DQUOTE] = ACTIONS(1742),
[sym_raw_string] = ACTIONS(1742),
[anon_sym_DOLLAR] = ACTIONS(2303),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1742),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1742),
[anon_sym_BQUOTE] = ACTIONS(1742),
[anon_sym_LT_LPAREN] = ACTIONS(1742),
[anon_sym_GT_LPAREN] = ACTIONS(1742),
[sym_word] = ACTIONS(2303),
[sym_comment] = ACTIONS(52),
},
[851] = {
[anon_sym_AT] = ACTIONS(2361),
[sym_comment] = ACTIONS(52),
},
[852] = {
[anon_sym_RBRACK] = ACTIONS(2363),
[sym_comment] = ACTIONS(52),
},
[853] = {
[sym_file_descriptor] = ACTIONS(1750),
[sym__concat] = ACTIONS(1750),
[sym_variable_name] = ACTIONS(1750),
[anon_sym_LT] = ACTIONS(2309),
[anon_sym_GT] = ACTIONS(2309),
[anon_sym_GT_GT] = ACTIONS(1750),
[anon_sym_AMP_GT] = ACTIONS(2309),
[anon_sym_AMP_GT_GT] = ACTIONS(1750),
[anon_sym_LT_AMP] = ACTIONS(1750),
[anon_sym_GT_AMP] = ACTIONS(1750),
[anon_sym_DQUOTE] = ACTIONS(1750),
[sym_raw_string] = ACTIONS(1750),
[anon_sym_DOLLAR] = ACTIONS(2309),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1750),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1750),
[anon_sym_BQUOTE] = ACTIONS(1750),
[anon_sym_LT_LPAREN] = ACTIONS(1750),
[anon_sym_GT_LPAREN] = ACTIONS(1750),
[sym_word] = ACTIONS(2309),
[sym_comment] = ACTIONS(52),
},
[854] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(2365),
[sym_comment] = ACTIONS(52),
},
[855] = {
[anon_sym_RBRACE] = ACTIONS(2365),
[sym_comment] = ACTIONS(52),
},
[856] = {
[anon_sym_RBRACK] = ACTIONS(2367),
[sym_comment] = ACTIONS(52),
},
[857] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(2369),
[sym_comment] = ACTIONS(52),
},
[858] = {
[anon_sym_RBRACE] = ACTIONS(2369),
[sym_comment] = ACTIONS(52),
},
[859] = {
[anon_sym_DQUOTE] = ACTIONS(1738),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2299),
[anon_sym_DOLLAR] = ACTIONS(1738),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1738),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1738),
[anon_sym_BQUOTE] = ACTIONS(1738),
[sym_comment] = ACTIONS(130),
},
[860] = {
[anon_sym_AT] = ACTIONS(2371),
[sym_comment] = ACTIONS(52),
},
[861] = {
[anon_sym_DQUOTE] = ACTIONS(1744),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2303),
[anon_sym_DOLLAR] = ACTIONS(1744),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1744),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1744),
[anon_sym_BQUOTE] = ACTIONS(1744),
[sym_comment] = ACTIONS(130),
},
[862] = {
[anon_sym_AT] = ACTIONS(2373),
[sym_comment] = ACTIONS(52),
},
[863] = {
[anon_sym_RBRACK] = ACTIONS(2375),
[sym_comment] = ACTIONS(52),
},
[864] = {
[anon_sym_DQUOTE] = ACTIONS(1752),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2309),
[anon_sym_DOLLAR] = ACTIONS(1752),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1752),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1752),
[anon_sym_BQUOTE] = ACTIONS(1752),
[sym_comment] = ACTIONS(130),
},
[865] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(2377),
[sym_comment] = ACTIONS(52),
},
[866] = {
[anon_sym_RBRACE] = ACTIONS(2377),
[sym_comment] = ACTIONS(52),
},
[867] = {
[anon_sym_RBRACK] = ACTIONS(2379),
[sym_comment] = ACTIONS(52),
},
[868] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(2381),
[sym_comment] = ACTIONS(52),
},
[869] = {
[anon_sym_RBRACE] = ACTIONS(2381),
[sym_comment] = ACTIONS(52),
},
[870] = {
[anon_sym_RBRACK] = ACTIONS(2383),
[sym_comment] = ACTIONS(52),
},
[871] = {
[anon_sym_RBRACK] = ACTIONS(2385),
[sym_comment] = ACTIONS(52),
},
[872] = {
[anon_sym_RBRACE] = ACTIONS(2387),
[sym_comment] = ACTIONS(52),
},
[873] = {
[sym_file_descriptor] = ACTIONS(2389),
[sym__concat] = ACTIONS(2389),
[anon_sym_PIPE] = ACTIONS(2391),
[anon_sym_RPAREN] = ACTIONS(2391),
[anon_sym_SEMI_SEMI] = ACTIONS(2391),
[anon_sym_PIPE_AMP] = ACTIONS(2391),
[anon_sym_AMP_AMP] = ACTIONS(2391),
[anon_sym_PIPE_PIPE] = ACTIONS(2391),
[anon_sym_LT] = ACTIONS(2391),
[anon_sym_GT] = ACTIONS(2391),
[anon_sym_GT_GT] = ACTIONS(2391),
[anon_sym_AMP_GT] = ACTIONS(2391),
[anon_sym_AMP_GT_GT] = ACTIONS(2391),
[anon_sym_LT_AMP] = ACTIONS(2391),
[anon_sym_GT_AMP] = ACTIONS(2391),
[anon_sym_LT_LT] = ACTIONS(2391),
[anon_sym_LT_LT_DASH] = ACTIONS(2391),
[anon_sym_DQUOTE] = ACTIONS(2391),
[sym_raw_string] = ACTIONS(2391),
[anon_sym_DOLLAR] = ACTIONS(2391),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2391),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2391),
[anon_sym_BQUOTE] = ACTIONS(2391),
[anon_sym_LT_LPAREN] = ACTIONS(2391),
[anon_sym_GT_LPAREN] = ACTIONS(2391),
[sym_word] = ACTIONS(2391),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2391),
[anon_sym_LF] = ACTIONS(2391),
[anon_sym_AMP] = ACTIONS(2391),
},
[874] = {
[aux_sym_concatenation_repeat1] = STATE(1126),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(470),
[sym_comment] = ACTIONS(52),
},
[875] = {
[anon_sym_RBRACE] = ACTIONS(2393),
[sym_comment] = ACTIONS(52),
},
[876] = {
[sym_file_descriptor] = ACTIONS(2395),
[sym__concat] = ACTIONS(2395),
[anon_sym_PIPE] = ACTIONS(2397),
[anon_sym_RPAREN] = ACTIONS(2397),
[anon_sym_SEMI_SEMI] = ACTIONS(2397),
[anon_sym_PIPE_AMP] = ACTIONS(2397),
[anon_sym_AMP_AMP] = ACTIONS(2397),
[anon_sym_PIPE_PIPE] = ACTIONS(2397),
[anon_sym_LT] = ACTIONS(2397),
[anon_sym_GT] = ACTIONS(2397),
[anon_sym_GT_GT] = ACTIONS(2397),
[anon_sym_AMP_GT] = ACTIONS(2397),
[anon_sym_AMP_GT_GT] = ACTIONS(2397),
[anon_sym_LT_AMP] = ACTIONS(2397),
[anon_sym_GT_AMP] = ACTIONS(2397),
[anon_sym_LT_LT] = ACTIONS(2397),
[anon_sym_LT_LT_DASH] = ACTIONS(2397),
[anon_sym_DQUOTE] = ACTIONS(2397),
[sym_raw_string] = ACTIONS(2397),
[anon_sym_DOLLAR] = ACTIONS(2397),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2397),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2397),
[anon_sym_BQUOTE] = ACTIONS(2397),
[anon_sym_LT_LPAREN] = ACTIONS(2397),
[anon_sym_GT_LPAREN] = ACTIONS(2397),
[sym_word] = ACTIONS(2397),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2397),
[anon_sym_LF] = ACTIONS(2397),
[anon_sym_AMP] = ACTIONS(2397),
},
[877] = {
[sym_file_descriptor] = ACTIONS(1442),
[sym_variable_name] = ACTIONS(1442),
[anon_sym_PIPE] = ACTIONS(2399),
[anon_sym_RPAREN] = ACTIONS(1442),
[anon_sym_PIPE_AMP] = ACTIONS(1442),
[anon_sym_AMP_AMP] = ACTIONS(1442),
[anon_sym_PIPE_PIPE] = ACTIONS(2399),
[anon_sym_LT] = ACTIONS(2399),
[anon_sym_GT] = ACTIONS(2399),
[anon_sym_GT_GT] = ACTIONS(1442),
[anon_sym_AMP_GT] = ACTIONS(2399),
[anon_sym_AMP_GT_GT] = ACTIONS(1442),
[anon_sym_LT_AMP] = ACTIONS(1442),
[anon_sym_GT_AMP] = ACTIONS(1442),
[anon_sym_DQUOTE] = ACTIONS(1442),
[sym_raw_string] = ACTIONS(1442),
[anon_sym_DOLLAR] = ACTIONS(2399),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1442),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1442),
[anon_sym_BQUOTE] = ACTIONS(1442),
[anon_sym_LT_LPAREN] = ACTIONS(1442),
[anon_sym_GT_LPAREN] = ACTIONS(1442),
[sym_word] = ACTIONS(1444),
[sym_comment] = ACTIONS(52),
},
[878] = {
[sym_concatenation] = STATE(430),
[sym_string] = STATE(424),
[sym_simple_expansion] = STATE(424),
[sym_expansion] = STATE(424),
[sym_command_substitution] = STATE(424),
[sym_process_substitution] = STATE(424),
[aux_sym_for_statement_repeat1] = STATE(734),
[anon_sym_RPAREN] = ACTIONS(2401),
[anon_sym_DQUOTE] = ACTIONS(761),
[sym_raw_string] = ACTIONS(763),
[anon_sym_DOLLAR] = ACTIONS(765),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(767),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(769),
[anon_sym_BQUOTE] = ACTIONS(771),
[anon_sym_LT_LPAREN] = ACTIONS(773),
[anon_sym_GT_LPAREN] = ACTIONS(773),
[sym_word] = ACTIONS(775),
[sym_comment] = ACTIONS(52),
},
[879] = {
[sym_file_descriptor] = ACTIONS(446),
[sym__concat] = ACTIONS(446),
[sym_variable_name] = ACTIONS(446),
[anon_sym_PIPE] = ACTIONS(883),
[anon_sym_RPAREN] = ACTIONS(446),
[anon_sym_PIPE_AMP] = ACTIONS(446),
[anon_sym_AMP_AMP] = ACTIONS(446),
[anon_sym_PIPE_PIPE] = ACTIONS(883),
[anon_sym_LT] = ACTIONS(883),
[anon_sym_GT] = ACTIONS(883),
[anon_sym_GT_GT] = ACTIONS(446),
[anon_sym_AMP_GT] = ACTIONS(883),
[anon_sym_AMP_GT_GT] = ACTIONS(446),
[anon_sym_LT_AMP] = ACTIONS(446),
[anon_sym_GT_AMP] = ACTIONS(446),
[anon_sym_DQUOTE] = ACTIONS(446),
[sym_raw_string] = ACTIONS(446),
[anon_sym_DOLLAR] = ACTIONS(883),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(446),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(446),
[anon_sym_BQUOTE] = ACTIONS(446),
[anon_sym_LT_LPAREN] = ACTIONS(446),
[anon_sym_GT_LPAREN] = ACTIONS(446),
[sym_word] = ACTIONS(448),
[sym_comment] = ACTIONS(52),
},
[880] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(298),
[anon_sym_DQUOTE] = ACTIONS(2403),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[881] = {
[sym_string] = STATE(1130),
[sym_simple_expansion] = STATE(1130),
[sym_expansion] = STATE(1130),
[sym_command_substitution] = STATE(1130),
[sym_process_substitution] = STATE(1130),
[anon_sym_DQUOTE] = ACTIONS(1150),
[sym_raw_string] = ACTIONS(2405),
[anon_sym_DOLLAR] = ACTIONS(1154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1158),
[anon_sym_BQUOTE] = ACTIONS(1160),
[anon_sym_LT_LPAREN] = ACTIONS(1162),
[anon_sym_GT_LPAREN] = ACTIONS(1162),
[sym_word] = ACTIONS(2407),
[sym_comment] = ACTIONS(52),
},
[882] = {
[aux_sym_concatenation_repeat1] = STATE(1131),
[sym_file_descriptor] = ACTIONS(470),
[sym__concat] = ACTIONS(1766),
[sym_variable_name] = ACTIONS(470),
[anon_sym_PIPE] = ACTIONS(891),
[anon_sym_RPAREN] = ACTIONS(470),
[anon_sym_PIPE_AMP] = ACTIONS(470),
[anon_sym_AMP_AMP] = ACTIONS(470),
[anon_sym_PIPE_PIPE] = ACTIONS(891),
[anon_sym_LT] = ACTIONS(891),
[anon_sym_GT] = ACTIONS(891),
[anon_sym_GT_GT] = ACTIONS(470),
[anon_sym_AMP_GT] = ACTIONS(891),
[anon_sym_AMP_GT_GT] = ACTIONS(470),
[anon_sym_LT_AMP] = ACTIONS(470),
[anon_sym_GT_AMP] = ACTIONS(470),
[anon_sym_DQUOTE] = ACTIONS(470),
[sym_raw_string] = ACTIONS(470),
[anon_sym_DOLLAR] = ACTIONS(891),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(470),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(470),
[anon_sym_BQUOTE] = ACTIONS(470),
[anon_sym_LT_LPAREN] = ACTIONS(470),
[anon_sym_GT_LPAREN] = ACTIONS(470),
[sym_word] = ACTIONS(472),
[sym_comment] = ACTIONS(52),
},
[883] = {
[sym_file_descriptor] = ACTIONS(474),
[sym__concat] = ACTIONS(474),
[sym_variable_name] = ACTIONS(474),
[anon_sym_PIPE] = ACTIONS(486),
[anon_sym_RPAREN] = ACTIONS(474),
[anon_sym_PIPE_AMP] = ACTIONS(474),
[anon_sym_AMP_AMP] = ACTIONS(474),
[anon_sym_PIPE_PIPE] = ACTIONS(486),
[anon_sym_LT] = ACTIONS(486),
[anon_sym_GT] = ACTIONS(486),
[anon_sym_GT_GT] = ACTIONS(474),
[anon_sym_AMP_GT] = ACTIONS(486),
[anon_sym_AMP_GT_GT] = ACTIONS(474),
[anon_sym_LT_AMP] = ACTIONS(474),
[anon_sym_GT_AMP] = ACTIONS(474),
[anon_sym_DQUOTE] = ACTIONS(474),
[sym_raw_string] = ACTIONS(474),
[anon_sym_DOLLAR] = ACTIONS(486),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(474),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(474),
[anon_sym_BQUOTE] = ACTIONS(474),
[anon_sym_LT_LPAREN] = ACTIONS(474),
[anon_sym_GT_LPAREN] = ACTIONS(474),
[sym_word] = ACTIONS(476),
[sym_comment] = ACTIONS(52),
},
[884] = {
[sym_file_descriptor] = ACTIONS(478),
[sym__concat] = ACTIONS(478),
[sym_variable_name] = ACTIONS(478),
[anon_sym_PIPE] = ACTIONS(893),
[anon_sym_RPAREN] = ACTIONS(478),
[anon_sym_PIPE_AMP] = ACTIONS(478),
[anon_sym_AMP_AMP] = ACTIONS(478),
[anon_sym_PIPE_PIPE] = ACTIONS(893),
[anon_sym_LT] = ACTIONS(893),
[anon_sym_GT] = ACTIONS(893),
[anon_sym_GT_GT] = ACTIONS(478),
[anon_sym_AMP_GT] = ACTIONS(893),
[anon_sym_AMP_GT_GT] = ACTIONS(478),
[anon_sym_LT_AMP] = ACTIONS(478),
[anon_sym_GT_AMP] = ACTIONS(478),
[anon_sym_DQUOTE] = ACTIONS(478),
[sym_raw_string] = ACTIONS(478),
[anon_sym_DOLLAR] = ACTIONS(893),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(478),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(478),
[anon_sym_BQUOTE] = ACTIONS(478),
[anon_sym_LT_LPAREN] = ACTIONS(478),
[anon_sym_GT_LPAREN] = ACTIONS(478),
[sym_word] = ACTIONS(480),
[sym_comment] = ACTIONS(52),
},
[885] = {
[sym_file_descriptor] = ACTIONS(482),
[sym__concat] = ACTIONS(482),
[sym_variable_name] = ACTIONS(482),
[anon_sym_PIPE] = ACTIONS(895),
[anon_sym_RPAREN] = ACTIONS(482),
[anon_sym_PIPE_AMP] = ACTIONS(482),
[anon_sym_AMP_AMP] = ACTIONS(482),
[anon_sym_PIPE_PIPE] = ACTIONS(895),
[anon_sym_LT] = ACTIONS(895),
[anon_sym_GT] = ACTIONS(895),
[anon_sym_GT_GT] = ACTIONS(482),
[anon_sym_AMP_GT] = ACTIONS(895),
[anon_sym_AMP_GT_GT] = ACTIONS(482),
[anon_sym_LT_AMP] = ACTIONS(482),
[anon_sym_GT_AMP] = ACTIONS(482),
[anon_sym_DQUOTE] = ACTIONS(482),
[sym_raw_string] = ACTIONS(482),
[anon_sym_DOLLAR] = ACTIONS(895),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(482),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(482),
[anon_sym_BQUOTE] = ACTIONS(482),
[anon_sym_LT_LPAREN] = ACTIONS(482),
[anon_sym_GT_LPAREN] = ACTIONS(482),
[sym_word] = ACTIONS(484),
[sym_comment] = ACTIONS(52),
},
[886] = {
[sym_special_variable_name] = STATE(1133),
[anon_sym_RBRACE] = ACTIONS(474),
[anon_sym_LBRACK] = ACTIONS(474),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_EQ] = ACTIONS(474),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(174),
[anon_sym_AT] = ACTIONS(174),
[anon_sym_COLON] = ACTIONS(486),
[anon_sym_COLON_QMARK] = ACTIONS(474),
[anon_sym_COLON_DASH] = ACTIONS(474),
[anon_sym_PERCENT] = ACTIONS(474),
[anon_sym_SLASH] = ACTIONS(474),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(2409),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[887] = {
[anon_sym_RBRACE] = ACTIONS(2411),
[anon_sym_LBRACK] = ACTIONS(2413),
[anon_sym_EQ] = ACTIONS(2415),
[anon_sym_COLON] = ACTIONS(2417),
[anon_sym_COLON_QMARK] = ACTIONS(2415),
[anon_sym_COLON_DASH] = ACTIONS(2415),
[anon_sym_PERCENT] = ACTIONS(2415),
[anon_sym_SLASH] = ACTIONS(2415),
[sym_comment] = ACTIONS(52),
},
[888] = {
[anon_sym_RBRACE] = ACTIONS(2419),
[anon_sym_LBRACK] = ACTIONS(2421),
[anon_sym_EQ] = ACTIONS(2423),
[anon_sym_COLON] = ACTIONS(2425),
[anon_sym_COLON_QMARK] = ACTIONS(2423),
[anon_sym_COLON_DASH] = ACTIONS(2423),
[anon_sym_PERCENT] = ACTIONS(2423),
[anon_sym_SLASH] = ACTIONS(2423),
[sym_comment] = ACTIONS(52),
},
[889] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2427),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[890] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2427),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[891] = {
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(588),
[anon_sym_BQUOTE] = ACTIONS(2427),
[sym_comment] = ACTIONS(52),
},
[892] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(600),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(2427),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[893] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2429),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[894] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2429),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[895] = {
[sym_concatenation] = STATE(455),
[sym_string] = STATE(449),
[sym_simple_expansion] = STATE(449),
[sym_expansion] = STATE(449),
[sym_command_substitution] = STATE(449),
[sym_process_substitution] = STATE(449),
[aux_sym_for_statement_repeat1] = STATE(765),
[anon_sym_SEMI_SEMI] = ACTIONS(2431),
[anon_sym_DQUOTE] = ACTIONS(1506),
[sym_raw_string] = ACTIONS(1508),
[anon_sym_DOLLAR] = ACTIONS(1510),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1512),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1514),
[anon_sym_BQUOTE] = ACTIONS(1516),
[anon_sym_LT_LPAREN] = ACTIONS(1518),
[anon_sym_GT_LPAREN] = ACTIONS(1518),
[sym_word] = ACTIONS(1508),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2431),
[anon_sym_LF] = ACTIONS(2431),
[anon_sym_AMP] = ACTIONS(2431),
},
[896] = {
[anon_sym_PIPE] = ACTIONS(2433),
[anon_sym_RPAREN] = ACTIONS(2435),
[anon_sym_PIPE_AMP] = ACTIONS(2435),
[anon_sym_AMP_AMP] = ACTIONS(2435),
[anon_sym_PIPE_PIPE] = ACTIONS(2435),
[anon_sym_BQUOTE] = ACTIONS(2435),
[sym_comment] = ACTIONS(52),
},
[897] = {
[sym__terminated_statement] = STATE(458),
[sym_for_statement] = STATE(459),
[sym_while_statement] = STATE(459),
[sym_if_statement] = STATE(459),
[sym_case_statement] = STATE(459),
[sym_function_definition] = STATE(459),
[sym_subshell] = STATE(459),
[sym_pipeline] = STATE(459),
[sym_list] = STATE(459),
[sym_bracket_command] = STATE(459),
[sym_command] = STATE(459),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(460),
[sym_declaration_command] = STATE(459),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(768),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_done] = ACTIONS(2437),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[898] = {
[anon_sym_PIPE] = ACTIONS(2439),
[anon_sym_RPAREN] = ACTIONS(2441),
[anon_sym_PIPE_AMP] = ACTIONS(2441),
[anon_sym_AMP_AMP] = ACTIONS(2441),
[anon_sym_PIPE_PIPE] = ACTIONS(2441),
[anon_sym_BQUOTE] = ACTIONS(2441),
[sym_comment] = ACTIONS(52),
},
[899] = {
[anon_sym_fi] = ACTIONS(2443),
[sym_comment] = ACTIONS(52),
},
[900] = {
[sym__terminated_statement] = STATE(465),
[sym_for_statement] = STATE(466),
[sym_while_statement] = STATE(466),
[sym_if_statement] = STATE(466),
[sym_elif_clause] = STATE(467),
[sym_else_clause] = STATE(1145),
[sym_case_statement] = STATE(466),
[sym_function_definition] = STATE(466),
[sym_subshell] = STATE(466),
[sym_pipeline] = STATE(466),
[sym_list] = STATE(466),
[sym_bracket_command] = STATE(466),
[sym_command] = STATE(466),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(469),
[sym_declaration_command] = STATE(466),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(777),
[aux_sym_if_statement_repeat1] = STATE(1146),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_fi] = ACTIONS(2445),
[anon_sym_elif] = ACTIONS(813),
[anon_sym_else] = ACTIONS(815),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[901] = {
[sym_elif_clause] = STATE(467),
[sym_else_clause] = STATE(1145),
[aux_sym_if_statement_repeat1] = STATE(779),
[anon_sym_fi] = ACTIONS(2443),
[anon_sym_elif] = ACTIONS(1538),
[anon_sym_else] = ACTIONS(1540),
[sym_comment] = ACTIONS(52),
},
[902] = {
[sym_case_item] = STATE(782),
[sym_concatenation] = STATE(783),
[sym_string] = STATE(781),
[sym_simple_expansion] = STATE(781),
[sym_expansion] = STATE(781),
[sym_command_substitution] = STATE(781),
[sym_process_substitution] = STATE(781),
[aux_sym_case_statement_repeat1] = STATE(1148),
[anon_sym_esac] = ACTIONS(2447),
[anon_sym_DQUOTE] = ACTIONS(284),
[sym_raw_string] = ACTIONS(1544),
[anon_sym_DOLLAR] = ACTIONS(288),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(290),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(292),
[anon_sym_BQUOTE] = ACTIONS(294),
[anon_sym_LT_LPAREN] = ACTIONS(296),
[anon_sym_GT_LPAREN] = ACTIONS(296),
[sym_word] = ACTIONS(1546),
[sym_comment] = ACTIONS(52),
},
[903] = {
[anon_sym_SEMI_SEMI] = ACTIONS(2449),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2449),
[anon_sym_LF] = ACTIONS(2449),
[anon_sym_AMP] = ACTIONS(2449),
},
[904] = {
[sym_compound_statement] = STATE(1150),
[anon_sym_LBRACE] = ACTIONS(544),
[sym_comment] = ACTIONS(52),
},
[905] = {
[anon_sym_PIPE] = ACTIONS(2451),
[anon_sym_RPAREN] = ACTIONS(2453),
[anon_sym_PIPE_AMP] = ACTIONS(2453),
[anon_sym_AMP_AMP] = ACTIONS(2453),
[anon_sym_PIPE_PIPE] = ACTIONS(2453),
[anon_sym_BQUOTE] = ACTIONS(2453),
[sym_comment] = ACTIONS(52),
},
[906] = {
[anon_sym_PIPE] = ACTIONS(2455),
[anon_sym_RPAREN] = ACTIONS(2457),
[anon_sym_PIPE_AMP] = ACTIONS(2457),
[anon_sym_AMP_AMP] = ACTIONS(2457),
[anon_sym_PIPE_PIPE] = ACTIONS(2457),
[anon_sym_BQUOTE] = ACTIONS(2457),
[sym_comment] = ACTIONS(52),
},
[907] = {
[sym_file_descriptor] = ACTIONS(616),
[sym_variable_name] = ACTIONS(616),
[anon_sym_for] = ACTIONS(618),
[anon_sym_while] = ACTIONS(618),
[anon_sym_if] = ACTIONS(618),
[anon_sym_case] = ACTIONS(618),
[anon_sym_RPAREN] = ACTIONS(2459),
[anon_sym_function] = ACTIONS(618),
[anon_sym_LPAREN] = ACTIONS(616),
[anon_sym_LBRACK] = ACTIONS(618),
[anon_sym_LBRACK_LBRACK] = ACTIONS(618),
[anon_sym_declare] = ACTIONS(618),
[anon_sym_typeset] = ACTIONS(618),
[anon_sym_export] = ACTIONS(618),
[anon_sym_readonly] = ACTIONS(618),
[anon_sym_local] = ACTIONS(618),
[anon_sym_LT] = ACTIONS(618),
[anon_sym_GT] = ACTIONS(618),
[anon_sym_GT_GT] = ACTIONS(616),
[anon_sym_AMP_GT] = ACTIONS(618),
[anon_sym_AMP_GT_GT] = ACTIONS(616),
[anon_sym_LT_AMP] = ACTIONS(616),
[anon_sym_GT_AMP] = ACTIONS(616),
[anon_sym_DQUOTE] = ACTIONS(616),
[sym_raw_string] = ACTIONS(616),
[anon_sym_DOLLAR] = ACTIONS(618),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(616),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(616),
[anon_sym_BQUOTE] = ACTIONS(616),
[anon_sym_LT_LPAREN] = ACTIONS(616),
[anon_sym_GT_LPAREN] = ACTIONS(616),
[sym_word] = ACTIONS(620),
[sym_comment] = ACTIONS(52),
},
[908] = {
[sym_variable_name] = ACTIONS(755),
[anon_sym_PIPE] = ACTIONS(1760),
[anon_sym_RPAREN] = ACTIONS(755),
[anon_sym_PIPE_AMP] = ACTIONS(755),
[anon_sym_AMP_AMP] = ACTIONS(755),
[anon_sym_PIPE_PIPE] = ACTIONS(755),
[anon_sym_BQUOTE] = ACTIONS(755),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(1760),
},
[909] = {
[sym_concatenation] = STATE(430),
[sym_string] = STATE(424),
[sym_simple_expansion] = STATE(424),
[sym_expansion] = STATE(424),
[sym_command_substitution] = STATE(424),
[sym_process_substitution] = STATE(424),
[aux_sym_for_statement_repeat1] = STATE(1153),
[anon_sym_RPAREN] = ACTIONS(2461),
[anon_sym_DQUOTE] = ACTIONS(761),
[sym_raw_string] = ACTIONS(763),
[anon_sym_DOLLAR] = ACTIONS(765),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(767),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(769),
[anon_sym_BQUOTE] = ACTIONS(771),
[anon_sym_LT_LPAREN] = ACTIONS(773),
[anon_sym_GT_LPAREN] = ACTIONS(773),
[sym_word] = ACTIONS(775),
[sym_comment] = ACTIONS(52),
},
[910] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(1155),
[anon_sym_DQUOTE] = ACTIONS(2463),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[911] = {
[aux_sym_concatenation_repeat1] = STATE(1157),
[sym__concat] = ACTIONS(2465),
[sym_variable_name] = ACTIONS(755),
[anon_sym_PIPE] = ACTIONS(1760),
[anon_sym_RPAREN] = ACTIONS(755),
[anon_sym_PIPE_AMP] = ACTIONS(755),
[anon_sym_AMP_AMP] = ACTIONS(755),
[anon_sym_PIPE_PIPE] = ACTIONS(755),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(1760),
},
[912] = {
[sym_special_variable_name] = STATE(1160),
[anon_sym_DASH] = ACTIONS(2467),
[anon_sym_DOLLAR] = ACTIONS(2467),
[anon_sym_POUND] = ACTIONS(2467),
[anon_sym_AT] = ACTIONS(2467),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(2469),
[anon_sym_STAR] = ACTIONS(2467),
[anon_sym_QMARK] = ACTIONS(2467),
[anon_sym_BANG] = ACTIONS(2467),
[anon_sym_0] = ACTIONS(2471),
[anon_sym__] = ACTIONS(2471),
},
[913] = {
[sym_special_variable_name] = STATE(1163),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(2473),
[anon_sym_AT] = ACTIONS(174),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(2475),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[914] = {
[sym_for_statement] = STATE(1164),
[sym_while_statement] = STATE(1164),
[sym_if_statement] = STATE(1164),
[sym_case_statement] = STATE(1164),
[sym_function_definition] = STATE(1164),
[sym_subshell] = STATE(1164),
[sym_pipeline] = STATE(1164),
[sym_list] = STATE(1164),
[sym_bracket_command] = STATE(1164),
[sym_command] = STATE(1164),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(1165),
[sym_declaration_command] = STATE(1164),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[915] = {
[sym_for_statement] = STATE(1166),
[sym_while_statement] = STATE(1166),
[sym_if_statement] = STATE(1166),
[sym_case_statement] = STATE(1166),
[sym_function_definition] = STATE(1166),
[sym_subshell] = STATE(1166),
[sym_pipeline] = STATE(1166),
[sym_list] = STATE(1166),
[sym_bracket_command] = STATE(1166),
[sym_command] = STATE(1166),
[sym_command_name] = STATE(139),
[sym_variable_assignment] = STATE(1167),
[sym_declaration_command] = STATE(1166),
[sym_subscript] = STATE(141),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(136),
[sym_simple_expansion] = STATE(136),
[sym_expansion] = STATE(136),
[sym_command_substitution] = STATE(136),
[sym_process_substitution] = STATE(136),
[aux_sym_command_repeat1] = STATE(142),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(218),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(220),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(222),
[anon_sym_typeset] = ACTIONS(222),
[anon_sym_export] = ACTIONS(222),
[anon_sym_readonly] = ACTIONS(222),
[anon_sym_local] = ACTIONS(222),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(224),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(226),
[sym_comment] = ACTIONS(52),
},
[916] = {
[sym_for_statement] = STATE(1168),
[sym_while_statement] = STATE(1168),
[sym_if_statement] = STATE(1168),
[sym_case_statement] = STATE(1168),
[sym_function_definition] = STATE(1168),
[sym_subshell] = STATE(1168),
[sym_pipeline] = STATE(1168),
[sym_list] = STATE(1168),
[sym_bracket_command] = STATE(1168),
[sym_command] = STATE(1168),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(1169),
[sym_declaration_command] = STATE(1168),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[917] = {
[sym_file_descriptor] = ACTIONS(1736),
[sym__concat] = ACTIONS(1736),
[anon_sym_PIPE] = ACTIONS(2299),
[anon_sym_RPAREN] = ACTIONS(1736),
[anon_sym_PIPE_AMP] = ACTIONS(1736),
[anon_sym_AMP_AMP] = ACTIONS(1736),
[anon_sym_PIPE_PIPE] = ACTIONS(2299),
[anon_sym_LT] = ACTIONS(2299),
[anon_sym_GT] = ACTIONS(2299),
[anon_sym_GT_GT] = ACTIONS(1736),
[anon_sym_AMP_GT] = ACTIONS(2299),
[anon_sym_AMP_GT_GT] = ACTIONS(1736),
[anon_sym_LT_AMP] = ACTIONS(1736),
[anon_sym_GT_AMP] = ACTIONS(1736),
[anon_sym_LT_LT] = ACTIONS(2299),
[anon_sym_LT_LT_DASH] = ACTIONS(1736),
[anon_sym_DQUOTE] = ACTIONS(1736),
[sym_raw_string] = ACTIONS(1736),
[anon_sym_DOLLAR] = ACTIONS(2299),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1736),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1736),
[anon_sym_BQUOTE] = ACTIONS(1736),
[anon_sym_LT_LPAREN] = ACTIONS(1736),
[anon_sym_GT_LPAREN] = ACTIONS(1736),
[sym_word] = ACTIONS(1738),
[sym_comment] = ACTIONS(52),
},
[918] = {
[anon_sym_AT] = ACTIONS(2477),
[sym_comment] = ACTIONS(52),
},
[919] = {
[sym_file_descriptor] = ACTIONS(1742),
[sym__concat] = ACTIONS(1742),
[anon_sym_PIPE] = ACTIONS(2303),
[anon_sym_RPAREN] = ACTIONS(1742),
[anon_sym_PIPE_AMP] = ACTIONS(1742),
[anon_sym_AMP_AMP] = ACTIONS(1742),
[anon_sym_PIPE_PIPE] = ACTIONS(2303),
[anon_sym_LT] = ACTIONS(2303),
[anon_sym_GT] = ACTIONS(2303),
[anon_sym_GT_GT] = ACTIONS(1742),
[anon_sym_AMP_GT] = ACTIONS(2303),
[anon_sym_AMP_GT_GT] = ACTIONS(1742),
[anon_sym_LT_AMP] = ACTIONS(1742),
[anon_sym_GT_AMP] = ACTIONS(1742),
[anon_sym_LT_LT] = ACTIONS(2303),
[anon_sym_LT_LT_DASH] = ACTIONS(1742),
[anon_sym_DQUOTE] = ACTIONS(1742),
[sym_raw_string] = ACTIONS(1742),
[anon_sym_DOLLAR] = ACTIONS(2303),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1742),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1742),
[anon_sym_BQUOTE] = ACTIONS(1742),
[anon_sym_LT_LPAREN] = ACTIONS(1742),
[anon_sym_GT_LPAREN] = ACTIONS(1742),
[sym_word] = ACTIONS(1744),
[sym_comment] = ACTIONS(52),
},
[920] = {
[anon_sym_AT] = ACTIONS(2479),
[sym_comment] = ACTIONS(52),
},
[921] = {
[anon_sym_RBRACK] = ACTIONS(2481),
[sym_comment] = ACTIONS(52),
},
[922] = {
[sym_file_descriptor] = ACTIONS(1750),
[sym__concat] = ACTIONS(1750),
[anon_sym_PIPE] = ACTIONS(2309),
[anon_sym_RPAREN] = ACTIONS(1750),
[anon_sym_PIPE_AMP] = ACTIONS(1750),
[anon_sym_AMP_AMP] = ACTIONS(1750),
[anon_sym_PIPE_PIPE] = ACTIONS(2309),
[anon_sym_LT] = ACTIONS(2309),
[anon_sym_GT] = ACTIONS(2309),
[anon_sym_GT_GT] = ACTIONS(1750),
[anon_sym_AMP_GT] = ACTIONS(2309),
[anon_sym_AMP_GT_GT] = ACTIONS(1750),
[anon_sym_LT_AMP] = ACTIONS(1750),
[anon_sym_GT_AMP] = ACTIONS(1750),
[anon_sym_LT_LT] = ACTIONS(2309),
[anon_sym_LT_LT_DASH] = ACTIONS(1750),
[anon_sym_DQUOTE] = ACTIONS(1750),
[sym_raw_string] = ACTIONS(1750),
[anon_sym_DOLLAR] = ACTIONS(2309),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1750),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1750),
[anon_sym_BQUOTE] = ACTIONS(1750),
[anon_sym_LT_LPAREN] = ACTIONS(1750),
[anon_sym_GT_LPAREN] = ACTIONS(1750),
[sym_word] = ACTIONS(1752),
[sym_comment] = ACTIONS(52),
},
[923] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(2483),
[sym_comment] = ACTIONS(52),
},
[924] = {
[anon_sym_RBRACE] = ACTIONS(2483),
[sym_comment] = ACTIONS(52),
},
[925] = {
[anon_sym_RBRACK] = ACTIONS(2485),
[sym_comment] = ACTIONS(52),
},
[926] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(2487),
[sym_comment] = ACTIONS(52),
},
[927] = {
[anon_sym_RBRACE] = ACTIONS(2487),
[sym_comment] = ACTIONS(52),
},
[928] = {
[sym_file_redirect] = STATE(1176),
[sym_file_descriptor] = ACTIONS(1228),
[anon_sym_PIPE] = ACTIONS(2451),
[anon_sym_RPAREN] = ACTIONS(2453),
[anon_sym_PIPE_AMP] = ACTIONS(2453),
[anon_sym_AMP_AMP] = ACTIONS(2453),
[anon_sym_PIPE_PIPE] = ACTIONS(2453),
[anon_sym_LT] = ACTIONS(1234),
[anon_sym_GT] = ACTIONS(1234),
[anon_sym_GT_GT] = ACTIONS(1236),
[anon_sym_AMP_GT] = ACTIONS(1234),
[anon_sym_AMP_GT_GT] = ACTIONS(1236),
[anon_sym_LT_AMP] = ACTIONS(1236),
[anon_sym_GT_AMP] = ACTIONS(1236),
[sym_comment] = ACTIONS(52),
},
[929] = {
[sym_file_descriptor] = ACTIONS(2015),
[anon_sym_PIPE] = ACTIONS(2489),
[anon_sym_RPAREN] = ACTIONS(2015),
[anon_sym_PIPE_AMP] = ACTIONS(2015),
[anon_sym_AMP_AMP] = ACTIONS(2015),
[anon_sym_PIPE_PIPE] = ACTIONS(2015),
[anon_sym_LT] = ACTIONS(2489),
[anon_sym_GT] = ACTIONS(2489),
[anon_sym_GT_GT] = ACTIONS(2015),
[anon_sym_AMP_GT] = ACTIONS(2489),
[anon_sym_AMP_GT_GT] = ACTIONS(2015),
[anon_sym_LT_AMP] = ACTIONS(2015),
[anon_sym_GT_AMP] = ACTIONS(2015),
[anon_sym_BQUOTE] = ACTIONS(2015),
[sym_comment] = ACTIONS(52),
},
[930] = {
[sym_concatenation] = STATE(1178),
[sym_string] = STATE(1177),
[sym_simple_expansion] = STATE(1177),
[sym_expansion] = STATE(1177),
[sym_command_substitution] = STATE(1177),
[sym_process_substitution] = STATE(1177),
[anon_sym_DQUOTE] = ACTIONS(1884),
[sym_raw_string] = ACTIONS(2491),
[anon_sym_DOLLAR] = ACTIONS(1888),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1890),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1892),
[anon_sym_BQUOTE] = ACTIONS(1894),
[anon_sym_LT_LPAREN] = ACTIONS(1896),
[anon_sym_GT_LPAREN] = ACTIONS(1896),
[sym_word] = ACTIONS(2493),
[sym_comment] = ACTIONS(52),
},
[931] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(1180),
[anon_sym_DQUOTE] = ACTIONS(2495),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[932] = {
[aux_sym_concatenation_repeat1] = STATE(1182),
[sym__concat] = ACTIONS(2497),
[anon_sym_PIPE] = ACTIONS(434),
[anon_sym_RPAREN] = ACTIONS(430),
[anon_sym_PIPE_AMP] = ACTIONS(430),
[anon_sym_AMP_AMP] = ACTIONS(430),
[anon_sym_PIPE_PIPE] = ACTIONS(430),
[sym_comment] = ACTIONS(52),
},
[933] = {
[sym_special_variable_name] = STATE(1185),
[anon_sym_DASH] = ACTIONS(2499),
[anon_sym_DOLLAR] = ACTIONS(2499),
[anon_sym_POUND] = ACTIONS(2499),
[anon_sym_AT] = ACTIONS(2499),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(2501),
[anon_sym_STAR] = ACTIONS(2499),
[anon_sym_QMARK] = ACTIONS(2499),
[anon_sym_BANG] = ACTIONS(2499),
[anon_sym_0] = ACTIONS(2503),
[anon_sym__] = ACTIONS(2503),
},
[934] = {
[sym_special_variable_name] = STATE(1188),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(2505),
[anon_sym_AT] = ACTIONS(174),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(2507),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[935] = {
[sym_for_statement] = STATE(1189),
[sym_while_statement] = STATE(1189),
[sym_if_statement] = STATE(1189),
[sym_case_statement] = STATE(1189),
[sym_function_definition] = STATE(1189),
[sym_subshell] = STATE(1189),
[sym_pipeline] = STATE(1189),
[sym_list] = STATE(1189),
[sym_bracket_command] = STATE(1189),
[sym_command] = STATE(1189),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(1190),
[sym_declaration_command] = STATE(1189),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[936] = {
[sym_for_statement] = STATE(1191),
[sym_while_statement] = STATE(1191),
[sym_if_statement] = STATE(1191),
[sym_case_statement] = STATE(1191),
[sym_function_definition] = STATE(1191),
[sym_subshell] = STATE(1191),
[sym_pipeline] = STATE(1191),
[sym_list] = STATE(1191),
[sym_bracket_command] = STATE(1191),
[sym_command] = STATE(1191),
[sym_command_name] = STATE(139),
[sym_variable_assignment] = STATE(1192),
[sym_declaration_command] = STATE(1191),
[sym_subscript] = STATE(141),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(136),
[sym_simple_expansion] = STATE(136),
[sym_expansion] = STATE(136),
[sym_command_substitution] = STATE(136),
[sym_process_substitution] = STATE(136),
[aux_sym_command_repeat1] = STATE(142),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(218),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(220),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(222),
[anon_sym_typeset] = ACTIONS(222),
[anon_sym_export] = ACTIONS(222),
[anon_sym_readonly] = ACTIONS(222),
[anon_sym_local] = ACTIONS(222),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(224),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(226),
[sym_comment] = ACTIONS(52),
},
[937] = {
[sym_for_statement] = STATE(1193),
[sym_while_statement] = STATE(1193),
[sym_if_statement] = STATE(1193),
[sym_case_statement] = STATE(1193),
[sym_function_definition] = STATE(1193),
[sym_subshell] = STATE(1193),
[sym_pipeline] = STATE(1193),
[sym_list] = STATE(1193),
[sym_bracket_command] = STATE(1193),
[sym_command] = STATE(1193),
[sym_command_name] = STATE(128),
[sym_variable_assignment] = STATE(1194),
[sym_declaration_command] = STATE(1193),
[sym_subscript] = STATE(130),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(131),
[sym_string] = STATE(120),
[sym_simple_expansion] = STATE(120),
[sym_expansion] = STATE(120),
[sym_command_substitution] = STATE(120),
[sym_process_substitution] = STATE(120),
[aux_sym_command_repeat1] = STATE(132),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(182),
[anon_sym_for] = ACTIONS(184),
[anon_sym_while] = ACTIONS(186),
[anon_sym_if] = ACTIONS(188),
[anon_sym_case] = ACTIONS(190),
[anon_sym_function] = ACTIONS(192),
[anon_sym_LPAREN] = ACTIONS(194),
[anon_sym_LBRACK] = ACTIONS(196),
[anon_sym_LBRACK_LBRACK] = ACTIONS(198),
[anon_sym_declare] = ACTIONS(200),
[anon_sym_typeset] = ACTIONS(200),
[anon_sym_export] = ACTIONS(200),
[anon_sym_readonly] = ACTIONS(200),
[anon_sym_local] = ACTIONS(200),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(202),
[sym_raw_string] = ACTIONS(204),
[anon_sym_DOLLAR] = ACTIONS(206),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(208),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(210),
[anon_sym_BQUOTE] = ACTIONS(212),
[anon_sym_LT_LPAREN] = ACTIONS(214),
[anon_sym_GT_LPAREN] = ACTIONS(214),
[sym_word] = ACTIONS(216),
[sym_comment] = ACTIONS(52),
},
[938] = {
[anon_sym_PIPE] = ACTIONS(434),
[anon_sym_RPAREN] = ACTIONS(430),
[anon_sym_PIPE_AMP] = ACTIONS(430),
[anon_sym_AMP_AMP] = ACTIONS(430),
[anon_sym_PIPE_PIPE] = ACTIONS(430),
[anon_sym_BQUOTE] = ACTIONS(430),
[sym_comment] = ACTIONS(52),
},
[939] = {
[aux_sym_concatenation_repeat1] = STATE(944),
[sym_file_descriptor] = ACTIONS(735),
[sym__concat] = ACTIONS(1914),
[anon_sym_PIPE] = ACTIONS(737),
[anon_sym_RPAREN] = ACTIONS(735),
[anon_sym_PIPE_AMP] = ACTIONS(735),
[anon_sym_AMP_AMP] = ACTIONS(735),
[anon_sym_PIPE_PIPE] = ACTIONS(735),
[anon_sym_LT] = ACTIONS(737),
[anon_sym_GT] = ACTIONS(737),
[anon_sym_GT_GT] = ACTIONS(735),
[anon_sym_AMP_GT] = ACTIONS(737),
[anon_sym_AMP_GT_GT] = ACTIONS(735),
[anon_sym_LT_AMP] = ACTIONS(735),
[anon_sym_GT_AMP] = ACTIONS(735),
[anon_sym_LT_LT] = ACTIONS(737),
[anon_sym_LT_LT_DASH] = ACTIONS(735),
[sym_comment] = ACTIONS(52),
},
[940] = {
[sym_file_descriptor] = ACTIONS(735),
[anon_sym_PIPE] = ACTIONS(737),
[anon_sym_RPAREN] = ACTIONS(735),
[anon_sym_PIPE_AMP] = ACTIONS(735),
[anon_sym_AMP_AMP] = ACTIONS(735),
[anon_sym_PIPE_PIPE] = ACTIONS(735),
[anon_sym_LT] = ACTIONS(737),
[anon_sym_GT] = ACTIONS(737),
[anon_sym_GT_GT] = ACTIONS(735),
[anon_sym_AMP_GT] = ACTIONS(737),
[anon_sym_AMP_GT_GT] = ACTIONS(735),
[anon_sym_LT_AMP] = ACTIONS(735),
[anon_sym_GT_AMP] = ACTIONS(735),
[anon_sym_LT_LT] = ACTIONS(737),
[anon_sym_LT_LT_DASH] = ACTIONS(735),
[anon_sym_BQUOTE] = ACTIONS(735),
[sym_comment] = ACTIONS(52),
},
[941] = {
[sym_file_descriptor] = ACTIONS(446),
[sym__concat] = ACTIONS(446),
[anon_sym_PIPE] = ACTIONS(883),
[anon_sym_RPAREN] = ACTIONS(446),
[anon_sym_PIPE_AMP] = ACTIONS(446),
[anon_sym_AMP_AMP] = ACTIONS(446),
[anon_sym_PIPE_PIPE] = ACTIONS(446),
[anon_sym_LT] = ACTIONS(883),
[anon_sym_GT] = ACTIONS(883),
[anon_sym_GT_GT] = ACTIONS(446),
[anon_sym_AMP_GT] = ACTIONS(883),
[anon_sym_AMP_GT_GT] = ACTIONS(446),
[anon_sym_LT_AMP] = ACTIONS(446),
[anon_sym_GT_AMP] = ACTIONS(446),
[anon_sym_LT_LT] = ACTIONS(883),
[anon_sym_LT_LT_DASH] = ACTIONS(446),
[anon_sym_BQUOTE] = ACTIONS(446),
[sym_comment] = ACTIONS(52),
},
[942] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(298),
[anon_sym_DQUOTE] = ACTIONS(2509),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[943] = {
[sym_string] = STATE(1196),
[sym_simple_expansion] = STATE(1196),
[sym_expansion] = STATE(1196),
[sym_command_substitution] = STATE(1196),
[sym_process_substitution] = STATE(1196),
[anon_sym_DQUOTE] = ACTIONS(1246),
[sym_raw_string] = ACTIONS(2511),
[anon_sym_DOLLAR] = ACTIONS(1250),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1252),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1254),
[anon_sym_BQUOTE] = ACTIONS(1256),
[anon_sym_LT_LPAREN] = ACTIONS(1258),
[anon_sym_GT_LPAREN] = ACTIONS(1258),
[sym_word] = ACTIONS(2513),
[sym_comment] = ACTIONS(52),
},
[944] = {
[aux_sym_concatenation_repeat1] = STATE(1197),
[sym_file_descriptor] = ACTIONS(470),
[sym__concat] = ACTIONS(1914),
[anon_sym_PIPE] = ACTIONS(891),
[anon_sym_RPAREN] = ACTIONS(470),
[anon_sym_PIPE_AMP] = ACTIONS(470),
[anon_sym_AMP_AMP] = ACTIONS(470),
[anon_sym_PIPE_PIPE] = ACTIONS(470),
[anon_sym_LT] = ACTIONS(891),
[anon_sym_GT] = ACTIONS(891),
[anon_sym_GT_GT] = ACTIONS(470),
[anon_sym_AMP_GT] = ACTIONS(891),
[anon_sym_AMP_GT_GT] = ACTIONS(470),
[anon_sym_LT_AMP] = ACTIONS(470),
[anon_sym_GT_AMP] = ACTIONS(470),
[anon_sym_LT_LT] = ACTIONS(891),
[anon_sym_LT_LT_DASH] = ACTIONS(470),
[sym_comment] = ACTIONS(52),
},
[945] = {
[sym_file_descriptor] = ACTIONS(474),
[sym__concat] = ACTIONS(474),
[anon_sym_PIPE] = ACTIONS(486),
[anon_sym_RPAREN] = ACTIONS(474),
[anon_sym_PIPE_AMP] = ACTIONS(474),
[anon_sym_AMP_AMP] = ACTIONS(474),
[anon_sym_PIPE_PIPE] = ACTIONS(474),
[anon_sym_LT] = ACTIONS(486),
[anon_sym_GT] = ACTIONS(486),
[anon_sym_GT_GT] = ACTIONS(474),
[anon_sym_AMP_GT] = ACTIONS(486),
[anon_sym_AMP_GT_GT] = ACTIONS(474),
[anon_sym_LT_AMP] = ACTIONS(474),
[anon_sym_GT_AMP] = ACTIONS(474),
[anon_sym_LT_LT] = ACTIONS(486),
[anon_sym_LT_LT_DASH] = ACTIONS(474),
[anon_sym_BQUOTE] = ACTIONS(474),
[sym_comment] = ACTIONS(52),
},
[946] = {
[sym_file_descriptor] = ACTIONS(478),
[sym__concat] = ACTIONS(478),
[anon_sym_PIPE] = ACTIONS(893),
[anon_sym_RPAREN] = ACTIONS(478),
[anon_sym_PIPE_AMP] = ACTIONS(478),
[anon_sym_AMP_AMP] = ACTIONS(478),
[anon_sym_PIPE_PIPE] = ACTIONS(478),
[anon_sym_LT] = ACTIONS(893),
[anon_sym_GT] = ACTIONS(893),
[anon_sym_GT_GT] = ACTIONS(478),
[anon_sym_AMP_GT] = ACTIONS(893),
[anon_sym_AMP_GT_GT] = ACTIONS(478),
[anon_sym_LT_AMP] = ACTIONS(478),
[anon_sym_GT_AMP] = ACTIONS(478),
[anon_sym_LT_LT] = ACTIONS(893),
[anon_sym_LT_LT_DASH] = ACTIONS(478),
[anon_sym_BQUOTE] = ACTIONS(478),
[sym_comment] = ACTIONS(52),
},
[947] = {
[sym_file_descriptor] = ACTIONS(482),
[sym__concat] = ACTIONS(482),
[anon_sym_PIPE] = ACTIONS(895),
[anon_sym_RPAREN] = ACTIONS(482),
[anon_sym_PIPE_AMP] = ACTIONS(482),
[anon_sym_AMP_AMP] = ACTIONS(482),
[anon_sym_PIPE_PIPE] = ACTIONS(482),
[anon_sym_LT] = ACTIONS(895),
[anon_sym_GT] = ACTIONS(895),
[anon_sym_GT_GT] = ACTIONS(482),
[anon_sym_AMP_GT] = ACTIONS(895),
[anon_sym_AMP_GT_GT] = ACTIONS(482),
[anon_sym_LT_AMP] = ACTIONS(482),
[anon_sym_GT_AMP] = ACTIONS(482),
[anon_sym_LT_LT] = ACTIONS(895),
[anon_sym_LT_LT_DASH] = ACTIONS(482),
[anon_sym_BQUOTE] = ACTIONS(482),
[sym_comment] = ACTIONS(52),
},
[948] = {
[sym_special_variable_name] = STATE(1199),
[anon_sym_RBRACE] = ACTIONS(474),
[anon_sym_LBRACK] = ACTIONS(474),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_EQ] = ACTIONS(474),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(174),
[anon_sym_AT] = ACTIONS(174),
[anon_sym_COLON] = ACTIONS(486),
[anon_sym_COLON_QMARK] = ACTIONS(474),
[anon_sym_COLON_DASH] = ACTIONS(474),
[anon_sym_PERCENT] = ACTIONS(474),
[anon_sym_SLASH] = ACTIONS(474),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(2515),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[949] = {
[anon_sym_RBRACE] = ACTIONS(2517),
[anon_sym_LBRACK] = ACTIONS(2519),
[anon_sym_EQ] = ACTIONS(2521),
[anon_sym_COLON] = ACTIONS(2523),
[anon_sym_COLON_QMARK] = ACTIONS(2521),
[anon_sym_COLON_DASH] = ACTIONS(2521),
[anon_sym_PERCENT] = ACTIONS(2521),
[anon_sym_SLASH] = ACTIONS(2521),
[sym_comment] = ACTIONS(52),
},
[950] = {
[anon_sym_RBRACE] = ACTIONS(2525),
[anon_sym_LBRACK] = ACTIONS(2527),
[anon_sym_EQ] = ACTIONS(2529),
[anon_sym_COLON] = ACTIONS(2531),
[anon_sym_COLON_QMARK] = ACTIONS(2529),
[anon_sym_COLON_DASH] = ACTIONS(2529),
[anon_sym_PERCENT] = ACTIONS(2529),
[anon_sym_SLASH] = ACTIONS(2529),
[sym_comment] = ACTIONS(52),
},
[951] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2533),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[952] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2533),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[953] = {
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(588),
[anon_sym_BQUOTE] = ACTIONS(2533),
[sym_comment] = ACTIONS(52),
},
[954] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(600),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(2533),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[955] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2535),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[956] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2535),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[957] = {
[sym_file_descriptor] = ACTIONS(2071),
[anon_sym_PIPE] = ACTIONS(2537),
[anon_sym_RPAREN] = ACTIONS(2071),
[anon_sym_PIPE_AMP] = ACTIONS(2071),
[anon_sym_AMP_AMP] = ACTIONS(2071),
[anon_sym_PIPE_PIPE] = ACTIONS(2071),
[anon_sym_LT] = ACTIONS(2537),
[anon_sym_GT] = ACTIONS(2537),
[anon_sym_GT_GT] = ACTIONS(2071),
[anon_sym_AMP_GT] = ACTIONS(2537),
[anon_sym_AMP_GT_GT] = ACTIONS(2071),
[anon_sym_LT_AMP] = ACTIONS(2071),
[anon_sym_GT_AMP] = ACTIONS(2071),
[anon_sym_LT_LT] = ACTIONS(2537),
[anon_sym_LT_LT_DASH] = ACTIONS(2071),
[anon_sym_BQUOTE] = ACTIONS(2071),
[sym_comment] = ACTIONS(52),
},
[958] = {
[sym_simple_expansion] = STATE(695),
[sym_expansion] = STATE(695),
[aux_sym_heredoc_repeat1] = STATE(1008),
[sym__heredoc_middle] = ACTIONS(1354),
[sym__heredoc_end] = ACTIONS(2539),
[anon_sym_DOLLAR] = ACTIONS(1358),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1360),
[sym_comment] = ACTIONS(52),
},
[959] = {
[sym_file_redirect] = STATE(354),
[sym_heredoc_redirect] = STATE(354),
[aux_sym_command_repeat2] = STATE(643),
[sym_file_descriptor] = ACTIONS(554),
[anon_sym_PIPE] = ACTIONS(2541),
[anon_sym_RPAREN] = ACTIONS(2543),
[anon_sym_PIPE_AMP] = ACTIONS(2543),
[anon_sym_AMP_AMP] = ACTIONS(2543),
[anon_sym_PIPE_PIPE] = ACTIONS(2543),
[anon_sym_LT] = ACTIONS(560),
[anon_sym_GT] = ACTIONS(560),
[anon_sym_GT_GT] = ACTIONS(562),
[anon_sym_AMP_GT] = ACTIONS(560),
[anon_sym_AMP_GT_GT] = ACTIONS(562),
[anon_sym_LT_AMP] = ACTIONS(562),
[anon_sym_GT_AMP] = ACTIONS(562),
[anon_sym_LT_LT] = ACTIONS(564),
[anon_sym_LT_LT_DASH] = ACTIONS(566),
[sym_comment] = ACTIONS(52),
},
[960] = {
[aux_sym_concatenation_repeat1] = STATE(1209),
[sym_file_descriptor] = ACTIONS(470),
[sym__concat] = ACTIONS(1766),
[sym_variable_name] = ACTIONS(470),
[anon_sym_PIPE] = ACTIONS(891),
[anon_sym_PIPE_AMP] = ACTIONS(470),
[anon_sym_AMP_AMP] = ACTIONS(470),
[anon_sym_PIPE_PIPE] = ACTIONS(891),
[anon_sym_LT] = ACTIONS(891),
[anon_sym_GT] = ACTIONS(891),
[anon_sym_GT_GT] = ACTIONS(470),
[anon_sym_AMP_GT] = ACTIONS(891),
[anon_sym_AMP_GT_GT] = ACTIONS(470),
[anon_sym_LT_AMP] = ACTIONS(470),
[anon_sym_GT_AMP] = ACTIONS(470),
[anon_sym_DQUOTE] = ACTIONS(470),
[sym_raw_string] = ACTIONS(470),
[anon_sym_DOLLAR] = ACTIONS(891),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(470),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(470),
[anon_sym_BQUOTE] = ACTIONS(470),
[anon_sym_LT_LPAREN] = ACTIONS(470),
[anon_sym_GT_LPAREN] = ACTIONS(470),
[sym_word] = ACTIONS(472),
[sym_comment] = ACTIONS(52),
},
[961] = {
[sym_compound_statement] = STATE(1210),
[anon_sym_LBRACE] = ACTIONS(544),
[sym_comment] = ACTIONS(52),
},
[962] = {
[aux_sym_concatenation_repeat1] = STATE(1211),
[sym__concat] = ACTIONS(2465),
[sym_variable_name] = ACTIONS(755),
[anon_sym_PIPE] = ACTIONS(1760),
[anon_sym_PIPE_AMP] = ACTIONS(755),
[anon_sym_AMP_AMP] = ACTIONS(755),
[anon_sym_PIPE_PIPE] = ACTIONS(755),
[anon_sym_BQUOTE] = ACTIONS(755),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(1760),
},
[963] = {
[sym_file_redirect] = STATE(1176),
[sym_file_descriptor] = ACTIONS(1282),
[anon_sym_PIPE] = ACTIONS(2451),
[anon_sym_PIPE_AMP] = ACTIONS(2453),
[anon_sym_AMP_AMP] = ACTIONS(2453),
[anon_sym_PIPE_PIPE] = ACTIONS(2453),
[anon_sym_LT] = ACTIONS(1284),
[anon_sym_GT] = ACTIONS(1284),
[anon_sym_GT_GT] = ACTIONS(1286),
[anon_sym_AMP_GT] = ACTIONS(1284),
[anon_sym_AMP_GT_GT] = ACTIONS(1286),
[anon_sym_LT_AMP] = ACTIONS(1286),
[anon_sym_GT_AMP] = ACTIONS(1286),
[anon_sym_BQUOTE] = ACTIONS(2453),
[sym_comment] = ACTIONS(52),
},
[964] = {
[sym_concatenation] = STATE(1178),
[sym_string] = STATE(1212),
[sym_simple_expansion] = STATE(1212),
[sym_expansion] = STATE(1212),
[sym_command_substitution] = STATE(1212),
[sym_process_substitution] = STATE(1212),
[anon_sym_DQUOTE] = ACTIONS(1884),
[sym_raw_string] = ACTIONS(2545),
[anon_sym_DOLLAR] = ACTIONS(1888),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1890),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1892),
[anon_sym_BQUOTE] = ACTIONS(1894),
[anon_sym_LT_LPAREN] = ACTIONS(1896),
[anon_sym_GT_LPAREN] = ACTIONS(1896),
[sym_word] = ACTIONS(2547),
[sym_comment] = ACTIONS(52),
},
[965] = {
[aux_sym_concatenation_repeat1] = STATE(1213),
[sym__concat] = ACTIONS(2497),
[anon_sym_PIPE] = ACTIONS(434),
[anon_sym_PIPE_AMP] = ACTIONS(430),
[anon_sym_AMP_AMP] = ACTIONS(430),
[anon_sym_PIPE_PIPE] = ACTIONS(430),
[anon_sym_BQUOTE] = ACTIONS(430),
[sym_comment] = ACTIONS(52),
},
[966] = {
[aux_sym_concatenation_repeat1] = STATE(967),
[sym_file_descriptor] = ACTIONS(735),
[sym__concat] = ACTIONS(1914),
[anon_sym_PIPE] = ACTIONS(737),
[anon_sym_PIPE_AMP] = ACTIONS(735),
[anon_sym_AMP_AMP] = ACTIONS(735),
[anon_sym_PIPE_PIPE] = ACTIONS(735),
[anon_sym_LT] = ACTIONS(737),
[anon_sym_GT] = ACTIONS(737),
[anon_sym_GT_GT] = ACTIONS(735),
[anon_sym_AMP_GT] = ACTIONS(737),
[anon_sym_AMP_GT_GT] = ACTIONS(735),
[anon_sym_LT_AMP] = ACTIONS(735),
[anon_sym_GT_AMP] = ACTIONS(735),
[anon_sym_LT_LT] = ACTIONS(737),
[anon_sym_LT_LT_DASH] = ACTIONS(735),
[anon_sym_BQUOTE] = ACTIONS(735),
[sym_comment] = ACTIONS(52),
},
[967] = {
[aux_sym_concatenation_repeat1] = STATE(1214),
[sym_file_descriptor] = ACTIONS(470),
[sym__concat] = ACTIONS(1914),
[anon_sym_PIPE] = ACTIONS(891),
[anon_sym_PIPE_AMP] = ACTIONS(470),
[anon_sym_AMP_AMP] = ACTIONS(470),
[anon_sym_PIPE_PIPE] = ACTIONS(470),
[anon_sym_LT] = ACTIONS(891),
[anon_sym_GT] = ACTIONS(891),
[anon_sym_GT_GT] = ACTIONS(470),
[anon_sym_AMP_GT] = ACTIONS(891),
[anon_sym_AMP_GT_GT] = ACTIONS(470),
[anon_sym_LT_AMP] = ACTIONS(470),
[anon_sym_GT_AMP] = ACTIONS(470),
[anon_sym_LT_LT] = ACTIONS(891),
[anon_sym_LT_LT_DASH] = ACTIONS(470),
[anon_sym_BQUOTE] = ACTIONS(470),
[sym_comment] = ACTIONS(52),
},
[968] = {
[sym_file_redirect] = STATE(354),
[sym_heredoc_redirect] = STATE(354),
[aux_sym_command_repeat2] = STATE(663),
[sym_file_descriptor] = ACTIONS(590),
[anon_sym_PIPE] = ACTIONS(2541),
[anon_sym_PIPE_AMP] = ACTIONS(2543),
[anon_sym_AMP_AMP] = ACTIONS(2543),
[anon_sym_PIPE_PIPE] = ACTIONS(2543),
[anon_sym_LT] = ACTIONS(592),
[anon_sym_GT] = ACTIONS(592),
[anon_sym_GT_GT] = ACTIONS(594),
[anon_sym_AMP_GT] = ACTIONS(592),
[anon_sym_AMP_GT_GT] = ACTIONS(594),
[anon_sym_LT_AMP] = ACTIONS(594),
[anon_sym_GT_AMP] = ACTIONS(594),
[anon_sym_LT_LT] = ACTIONS(564),
[anon_sym_LT_LT_DASH] = ACTIONS(566),
[anon_sym_BQUOTE] = ACTIONS(2543),
[sym_comment] = ACTIONS(52),
},
[969] = {
[anon_sym_PIPE] = ACTIONS(2291),
[anon_sym_RPAREN] = ACTIONS(2291),
[anon_sym_SEMI_SEMI] = ACTIONS(2291),
[anon_sym_PIPE_AMP] = ACTIONS(2291),
[anon_sym_AMP_AMP] = ACTIONS(2291),
[anon_sym_PIPE_PIPE] = ACTIONS(2291),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2291),
[anon_sym_LF] = ACTIONS(2291),
[anon_sym_AMP] = ACTIONS(2291),
},
[970] = {
[aux_sym_concatenation_repeat1] = STATE(975),
[sym__concat] = ACTIONS(2025),
[anon_sym_PIPE] = ACTIONS(2037),
[anon_sym_SEMI_SEMI] = ACTIONS(2037),
[anon_sym_PIPE_AMP] = ACTIONS(2037),
[anon_sym_AMP_AMP] = ACTIONS(2037),
[anon_sym_PIPE_PIPE] = ACTIONS(2037),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2037),
[anon_sym_LF] = ACTIONS(2037),
[anon_sym_AMP] = ACTIONS(2037),
},
[971] = {
[anon_sym_PIPE] = ACTIONS(2037),
[anon_sym_RPAREN] = ACTIONS(2037),
[anon_sym_SEMI_SEMI] = ACTIONS(2037),
[anon_sym_PIPE_AMP] = ACTIONS(2037),
[anon_sym_AMP_AMP] = ACTIONS(2037),
[anon_sym_PIPE_PIPE] = ACTIONS(2037),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2037),
[anon_sym_LF] = ACTIONS(2037),
[anon_sym_AMP] = ACTIONS(2037),
},
[972] = {
[sym__concat] = ACTIONS(446),
[anon_sym_PIPE] = ACTIONS(448),
[anon_sym_RPAREN] = ACTIONS(448),
[anon_sym_SEMI_SEMI] = ACTIONS(448),
[anon_sym_PIPE_AMP] = ACTIONS(448),
[anon_sym_AMP_AMP] = ACTIONS(448),
[anon_sym_PIPE_PIPE] = ACTIONS(448),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(448),
[anon_sym_LF] = ACTIONS(448),
[anon_sym_AMP] = ACTIONS(448),
},
[973] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(298),
[anon_sym_DQUOTE] = ACTIONS(2549),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[974] = {
[sym_string] = STATE(1216),
[sym_simple_expansion] = STATE(1216),
[sym_expansion] = STATE(1216),
[sym_command_substitution] = STATE(1216),
[sym_process_substitution] = STATE(1216),
[anon_sym_DQUOTE] = ACTIONS(1310),
[sym_raw_string] = ACTIONS(2551),
[anon_sym_DOLLAR] = ACTIONS(1314),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1316),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1318),
[anon_sym_BQUOTE] = ACTIONS(1320),
[anon_sym_LT_LPAREN] = ACTIONS(1322),
[anon_sym_GT_LPAREN] = ACTIONS(1322),
[sym_word] = ACTIONS(2553),
[sym_comment] = ACTIONS(52),
},
[975] = {
[aux_sym_concatenation_repeat1] = STATE(1217),
[sym__concat] = ACTIONS(2025),
[anon_sym_PIPE] = ACTIONS(472),
[anon_sym_SEMI_SEMI] = ACTIONS(472),
[anon_sym_PIPE_AMP] = ACTIONS(472),
[anon_sym_AMP_AMP] = ACTIONS(472),
[anon_sym_PIPE_PIPE] = ACTIONS(472),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(472),
[anon_sym_LF] = ACTIONS(472),
[anon_sym_AMP] = ACTIONS(472),
},
[976] = {
[sym__concat] = ACTIONS(474),
[anon_sym_PIPE] = ACTIONS(476),
[anon_sym_RPAREN] = ACTIONS(476),
[anon_sym_SEMI_SEMI] = ACTIONS(476),
[anon_sym_PIPE_AMP] = ACTIONS(476),
[anon_sym_AMP_AMP] = ACTIONS(476),
[anon_sym_PIPE_PIPE] = ACTIONS(476),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(476),
[anon_sym_LF] = ACTIONS(476),
[anon_sym_AMP] = ACTIONS(476),
},
[977] = {
[sym__concat] = ACTIONS(478),
[anon_sym_PIPE] = ACTIONS(480),
[anon_sym_RPAREN] = ACTIONS(480),
[anon_sym_SEMI_SEMI] = ACTIONS(480),
[anon_sym_PIPE_AMP] = ACTIONS(480),
[anon_sym_AMP_AMP] = ACTIONS(480),
[anon_sym_PIPE_PIPE] = ACTIONS(480),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(480),
[anon_sym_LF] = ACTIONS(480),
[anon_sym_AMP] = ACTIONS(480),
},
[978] = {
[sym__concat] = ACTIONS(482),
[anon_sym_PIPE] = ACTIONS(484),
[anon_sym_RPAREN] = ACTIONS(484),
[anon_sym_SEMI_SEMI] = ACTIONS(484),
[anon_sym_PIPE_AMP] = ACTIONS(484),
[anon_sym_AMP_AMP] = ACTIONS(484),
[anon_sym_PIPE_PIPE] = ACTIONS(484),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(484),
[anon_sym_LF] = ACTIONS(484),
[anon_sym_AMP] = ACTIONS(484),
},
[979] = {
[sym_special_variable_name] = STATE(1219),
[anon_sym_RBRACE] = ACTIONS(474),
[anon_sym_LBRACK] = ACTIONS(474),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_EQ] = ACTIONS(474),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(174),
[anon_sym_AT] = ACTIONS(174),
[anon_sym_COLON] = ACTIONS(486),
[anon_sym_COLON_QMARK] = ACTIONS(474),
[anon_sym_COLON_DASH] = ACTIONS(474),
[anon_sym_PERCENT] = ACTIONS(474),
[anon_sym_SLASH] = ACTIONS(474),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(2555),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[980] = {
[anon_sym_RBRACE] = ACTIONS(2557),
[anon_sym_LBRACK] = ACTIONS(2559),
[anon_sym_EQ] = ACTIONS(2561),
[anon_sym_COLON] = ACTIONS(2563),
[anon_sym_COLON_QMARK] = ACTIONS(2561),
[anon_sym_COLON_DASH] = ACTIONS(2561),
[anon_sym_PERCENT] = ACTIONS(2561),
[anon_sym_SLASH] = ACTIONS(2561),
[sym_comment] = ACTIONS(52),
},
[981] = {
[anon_sym_RBRACE] = ACTIONS(2565),
[anon_sym_LBRACK] = ACTIONS(2567),
[anon_sym_EQ] = ACTIONS(2569),
[anon_sym_COLON] = ACTIONS(2571),
[anon_sym_COLON_QMARK] = ACTIONS(2569),
[anon_sym_COLON_DASH] = ACTIONS(2569),
[anon_sym_PERCENT] = ACTIONS(2569),
[anon_sym_SLASH] = ACTIONS(2569),
[sym_comment] = ACTIONS(52),
},
[982] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2573),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[983] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2573),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[984] = {
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(588),
[anon_sym_BQUOTE] = ACTIONS(2573),
[sym_comment] = ACTIONS(52),
},
[985] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(600),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(2573),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[986] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2575),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[987] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2575),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[988] = {
[sym_file_descriptor] = ACTIONS(1088),
[sym__concat] = ACTIONS(1088),
[anon_sym_PIPE] = ACTIONS(1090),
[anon_sym_RPAREN] = ACTIONS(1090),
[anon_sym_SEMI_SEMI] = ACTIONS(1090),
[anon_sym_PIPE_AMP] = ACTIONS(1090),
[anon_sym_AMP_AMP] = ACTIONS(1090),
[anon_sym_PIPE_PIPE] = ACTIONS(1090),
[anon_sym_LT] = ACTIONS(1090),
[anon_sym_GT] = ACTIONS(1090),
[anon_sym_GT_GT] = ACTIONS(1090),
[anon_sym_AMP_GT] = ACTIONS(1090),
[anon_sym_AMP_GT_GT] = ACTIONS(1090),
[anon_sym_LT_AMP] = ACTIONS(1090),
[anon_sym_GT_AMP] = ACTIONS(1090),
[anon_sym_LT_LT] = ACTIONS(1090),
[anon_sym_LT_LT_DASH] = ACTIONS(1090),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1090),
[anon_sym_LF] = ACTIONS(1090),
[anon_sym_AMP] = ACTIONS(1090),
},
[989] = {
[sym_file_descriptor] = ACTIONS(1109),
[sym__concat] = ACTIONS(1109),
[anon_sym_PIPE] = ACTIONS(1111),
[anon_sym_RPAREN] = ACTIONS(1111),
[anon_sym_SEMI_SEMI] = ACTIONS(1111),
[anon_sym_PIPE_AMP] = ACTIONS(1111),
[anon_sym_AMP_AMP] = ACTIONS(1111),
[anon_sym_PIPE_PIPE] = ACTIONS(1111),
[anon_sym_LT] = ACTIONS(1111),
[anon_sym_GT] = ACTIONS(1111),
[anon_sym_GT_GT] = ACTIONS(1111),
[anon_sym_AMP_GT] = ACTIONS(1111),
[anon_sym_AMP_GT_GT] = ACTIONS(1111),
[anon_sym_LT_AMP] = ACTIONS(1111),
[anon_sym_GT_AMP] = ACTIONS(1111),
[anon_sym_LT_LT] = ACTIONS(1111),
[anon_sym_LT_LT_DASH] = ACTIONS(1111),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1111),
[anon_sym_LF] = ACTIONS(1111),
[anon_sym_AMP] = ACTIONS(1111),
},
[990] = {
[aux_sym_concatenation_repeat1] = STATE(990),
[sym_file_descriptor] = ACTIONS(1109),
[sym__concat] = ACTIONS(2577),
[anon_sym_PIPE] = ACTIONS(1111),
[anon_sym_SEMI_SEMI] = ACTIONS(1111),
[anon_sym_PIPE_AMP] = ACTIONS(1111),
[anon_sym_AMP_AMP] = ACTIONS(1111),
[anon_sym_PIPE_PIPE] = ACTIONS(1111),
[anon_sym_LT] = ACTIONS(1111),
[anon_sym_GT] = ACTIONS(1111),
[anon_sym_GT_GT] = ACTIONS(1111),
[anon_sym_AMP_GT] = ACTIONS(1111),
[anon_sym_AMP_GT_GT] = ACTIONS(1111),
[anon_sym_LT_AMP] = ACTIONS(1111),
[anon_sym_GT_AMP] = ACTIONS(1111),
[anon_sym_LT_LT] = ACTIONS(1111),
[anon_sym_LT_LT_DASH] = ACTIONS(1111),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1111),
[anon_sym_LF] = ACTIONS(1111),
[anon_sym_AMP] = ACTIONS(1111),
},
[991] = {
[anon_sym_RBRACE] = ACTIONS(2580),
[anon_sym_LBRACK] = ACTIONS(2582),
[sym_comment] = ACTIONS(52),
},
[992] = {
[anon_sym_RBRACE] = ACTIONS(2584),
[anon_sym_LBRACK] = ACTIONS(2586),
[sym_comment] = ACTIONS(52),
},
[993] = {
[sym_file_descriptor] = ACTIONS(1124),
[sym__concat] = ACTIONS(1124),
[anon_sym_PIPE] = ACTIONS(1126),
[anon_sym_RPAREN] = ACTIONS(1126),
[anon_sym_SEMI_SEMI] = ACTIONS(1126),
[anon_sym_PIPE_AMP] = ACTIONS(1126),
[anon_sym_AMP_AMP] = ACTIONS(1126),
[anon_sym_PIPE_PIPE] = ACTIONS(1126),
[anon_sym_LT] = ACTIONS(1126),
[anon_sym_GT] = ACTIONS(1126),
[anon_sym_GT_GT] = ACTIONS(1126),
[anon_sym_AMP_GT] = ACTIONS(1126),
[anon_sym_AMP_GT_GT] = ACTIONS(1126),
[anon_sym_LT_AMP] = ACTIONS(1126),
[anon_sym_GT_AMP] = ACTIONS(1126),
[anon_sym_LT_LT] = ACTIONS(1126),
[anon_sym_LT_LT_DASH] = ACTIONS(1126),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1126),
[anon_sym_LF] = ACTIONS(1126),
[anon_sym_AMP] = ACTIONS(1126),
},
[994] = {
[anon_sym_AT] = ACTIONS(2588),
[sym_comment] = ACTIONS(52),
},
[995] = {
[sym_concatenation] = STATE(1235),
[sym_string] = STATE(1234),
[sym_simple_expansion] = STATE(1234),
[sym_expansion] = STATE(1234),
[sym_command_substitution] = STATE(1234),
[sym_process_substitution] = STATE(1234),
[anon_sym_RBRACE] = ACTIONS(2590),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(2592),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(2594),
[sym_comment] = ACTIONS(52),
},
[996] = {
[sym_file_descriptor] = ACTIONS(1136),
[sym__concat] = ACTIONS(1136),
[anon_sym_PIPE] = ACTIONS(1138),
[anon_sym_RPAREN] = ACTIONS(1138),
[anon_sym_SEMI_SEMI] = ACTIONS(1138),
[anon_sym_PIPE_AMP] = ACTIONS(1138),
[anon_sym_AMP_AMP] = ACTIONS(1138),
[anon_sym_PIPE_PIPE] = ACTIONS(1138),
[anon_sym_LT] = ACTIONS(1138),
[anon_sym_GT] = ACTIONS(1138),
[anon_sym_GT_GT] = ACTIONS(1138),
[anon_sym_AMP_GT] = ACTIONS(1138),
[anon_sym_AMP_GT_GT] = ACTIONS(1138),
[anon_sym_LT_AMP] = ACTIONS(1138),
[anon_sym_GT_AMP] = ACTIONS(1138),
[anon_sym_LT_LT] = ACTIONS(1138),
[anon_sym_LT_LT_DASH] = ACTIONS(1138),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1138),
[anon_sym_LF] = ACTIONS(1138),
[anon_sym_AMP] = ACTIONS(1138),
},
[997] = {
[anon_sym_AT] = ACTIONS(2596),
[sym_comment] = ACTIONS(52),
},
[998] = {
[sym_concatenation] = STATE(1238),
[sym_string] = STATE(1237),
[sym_simple_expansion] = STATE(1237),
[sym_expansion] = STATE(1237),
[sym_command_substitution] = STATE(1237),
[sym_process_substitution] = STATE(1237),
[anon_sym_RBRACE] = ACTIONS(2584),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(2598),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(2600),
[sym_comment] = ACTIONS(52),
},
[999] = {
[sym_file_descriptor] = ACTIONS(1238),
[sym__concat] = ACTIONS(1238),
[anon_sym_PIPE] = ACTIONS(1240),
[anon_sym_RPAREN] = ACTIONS(1240),
[anon_sym_SEMI_SEMI] = ACTIONS(1240),
[anon_sym_PIPE_AMP] = ACTIONS(1240),
[anon_sym_AMP_AMP] = ACTIONS(1240),
[anon_sym_PIPE_PIPE] = ACTIONS(1240),
[anon_sym_LT] = ACTIONS(1240),
[anon_sym_GT] = ACTIONS(1240),
[anon_sym_GT_GT] = ACTIONS(1240),
[anon_sym_AMP_GT] = ACTIONS(1240),
[anon_sym_AMP_GT_GT] = ACTIONS(1240),
[anon_sym_LT_AMP] = ACTIONS(1240),
[anon_sym_GT_AMP] = ACTIONS(1240),
[anon_sym_LT_LT] = ACTIONS(1240),
[anon_sym_LT_LT_DASH] = ACTIONS(1240),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1240),
[anon_sym_LF] = ACTIONS(1240),
[anon_sym_AMP] = ACTIONS(1240),
},
[1000] = {
[sym_file_descriptor] = ACTIONS(1296),
[sym__concat] = ACTIONS(1296),
[anon_sym_PIPE] = ACTIONS(1298),
[anon_sym_RPAREN] = ACTIONS(1298),
[anon_sym_SEMI_SEMI] = ACTIONS(1298),
[anon_sym_PIPE_AMP] = ACTIONS(1298),
[anon_sym_AMP_AMP] = ACTIONS(1298),
[anon_sym_PIPE_PIPE] = ACTIONS(1298),
[anon_sym_LT] = ACTIONS(1298),
[anon_sym_GT] = ACTIONS(1298),
[anon_sym_GT_GT] = ACTIONS(1298),
[anon_sym_AMP_GT] = ACTIONS(1298),
[anon_sym_AMP_GT_GT] = ACTIONS(1298),
[anon_sym_LT_AMP] = ACTIONS(1298),
[anon_sym_GT_AMP] = ACTIONS(1298),
[anon_sym_LT_LT] = ACTIONS(1298),
[anon_sym_LT_LT_DASH] = ACTIONS(1298),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1298),
[anon_sym_LF] = ACTIONS(1298),
[anon_sym_AMP] = ACTIONS(1298),
},
[1001] = {
[sym__heredoc_middle] = ACTIONS(474),
[sym__heredoc_end] = ACTIONS(474),
[anon_sym_DOLLAR] = ACTIONS(486),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(474),
[sym_comment] = ACTIONS(52),
},
[1002] = {
[sym__heredoc_middle] = ACTIONS(478),
[sym__heredoc_end] = ACTIONS(478),
[anon_sym_DOLLAR] = ACTIONS(893),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(478),
[sym_comment] = ACTIONS(52),
},
[1003] = {
[sym__heredoc_middle] = ACTIONS(482),
[sym__heredoc_end] = ACTIONS(482),
[anon_sym_DOLLAR] = ACTIONS(895),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(482),
[sym_comment] = ACTIONS(52),
},
[1004] = {
[sym_special_variable_name] = STATE(1240),
[anon_sym_RBRACE] = ACTIONS(474),
[anon_sym_LBRACK] = ACTIONS(474),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_EQ] = ACTIONS(474),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(174),
[anon_sym_AT] = ACTIONS(174),
[anon_sym_COLON] = ACTIONS(486),
[anon_sym_COLON_QMARK] = ACTIONS(474),
[anon_sym_COLON_DASH] = ACTIONS(474),
[anon_sym_PERCENT] = ACTIONS(474),
[anon_sym_SLASH] = ACTIONS(474),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(2602),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[1005] = {
[anon_sym_RBRACE] = ACTIONS(2604),
[anon_sym_LBRACK] = ACTIONS(2606),
[anon_sym_EQ] = ACTIONS(2608),
[anon_sym_COLON] = ACTIONS(2610),
[anon_sym_COLON_QMARK] = ACTIONS(2608),
[anon_sym_COLON_DASH] = ACTIONS(2608),
[anon_sym_PERCENT] = ACTIONS(2608),
[anon_sym_SLASH] = ACTIONS(2608),
[sym_comment] = ACTIONS(52),
},
[1006] = {
[anon_sym_RBRACE] = ACTIONS(2612),
[anon_sym_LBRACK] = ACTIONS(2614),
[anon_sym_EQ] = ACTIONS(2616),
[anon_sym_COLON] = ACTIONS(2618),
[anon_sym_COLON_QMARK] = ACTIONS(2616),
[anon_sym_COLON_DASH] = ACTIONS(2616),
[anon_sym_PERCENT] = ACTIONS(2616),
[anon_sym_SLASH] = ACTIONS(2616),
[sym_comment] = ACTIONS(52),
},
[1007] = {
[sym_file_descriptor] = ACTIONS(2620),
[anon_sym_PIPE] = ACTIONS(2622),
[anon_sym_RPAREN] = ACTIONS(2622),
[anon_sym_SEMI_SEMI] = ACTIONS(2622),
[anon_sym_PIPE_AMP] = ACTIONS(2622),
[anon_sym_AMP_AMP] = ACTIONS(2622),
[anon_sym_PIPE_PIPE] = ACTIONS(2622),
[anon_sym_LT] = ACTIONS(2622),
[anon_sym_GT] = ACTIONS(2622),
[anon_sym_GT_GT] = ACTIONS(2622),
[anon_sym_AMP_GT] = ACTIONS(2622),
[anon_sym_AMP_GT_GT] = ACTIONS(2622),
[anon_sym_LT_AMP] = ACTIONS(2622),
[anon_sym_GT_AMP] = ACTIONS(2622),
[anon_sym_LT_LT] = ACTIONS(2622),
[anon_sym_LT_LT_DASH] = ACTIONS(2622),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2622),
[anon_sym_LF] = ACTIONS(2622),
[anon_sym_AMP] = ACTIONS(2622),
},
[1008] = {
[sym_simple_expansion] = STATE(695),
[sym_expansion] = STATE(695),
[aux_sym_heredoc_repeat1] = STATE(1008),
[sym__heredoc_middle] = ACTIONS(2624),
[sym__heredoc_end] = ACTIONS(2627),
[anon_sym_DOLLAR] = ACTIONS(2629),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2632),
[sym_comment] = ACTIONS(52),
},
[1009] = {
[sym_file_descriptor] = ACTIONS(1442),
[sym_variable_name] = ACTIONS(1442),
[anon_sym_LT] = ACTIONS(2399),
[anon_sym_GT] = ACTIONS(2399),
[anon_sym_GT_GT] = ACTIONS(1442),
[anon_sym_AMP_GT] = ACTIONS(2399),
[anon_sym_AMP_GT_GT] = ACTIONS(1442),
[anon_sym_LT_AMP] = ACTIONS(1442),
[anon_sym_GT_AMP] = ACTIONS(1442),
[anon_sym_DQUOTE] = ACTIONS(1442),
[sym_raw_string] = ACTIONS(1442),
[anon_sym_DOLLAR] = ACTIONS(2399),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1442),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1442),
[anon_sym_BQUOTE] = ACTIONS(1442),
[anon_sym_LT_LPAREN] = ACTIONS(1442),
[anon_sym_GT_LPAREN] = ACTIONS(1442),
[sym_word] = ACTIONS(2399),
[sym_comment] = ACTIONS(52),
},
[1010] = {
[sym_concatenation] = STATE(430),
[sym_string] = STATE(424),
[sym_simple_expansion] = STATE(424),
[sym_expansion] = STATE(424),
[sym_command_substitution] = STATE(424),
[sym_process_substitution] = STATE(424),
[aux_sym_for_statement_repeat1] = STATE(734),
[anon_sym_RPAREN] = ACTIONS(2635),
[anon_sym_DQUOTE] = ACTIONS(761),
[sym_raw_string] = ACTIONS(763),
[anon_sym_DOLLAR] = ACTIONS(765),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(767),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(769),
[anon_sym_BQUOTE] = ACTIONS(771),
[anon_sym_LT_LPAREN] = ACTIONS(773),
[anon_sym_GT_LPAREN] = ACTIONS(773),
[sym_word] = ACTIONS(775),
[sym_comment] = ACTIONS(52),
},
[1011] = {
[sym__concat] = ACTIONS(1736),
[anon_sym_PIPE] = ACTIONS(1736),
[anon_sym_RPAREN] = ACTIONS(1736),
[anon_sym_RBRACK] = ACTIONS(1736),
[sym_comment] = ACTIONS(52),
},
[1012] = {
[anon_sym_AT] = ACTIONS(2637),
[sym_comment] = ACTIONS(52),
},
[1013] = {
[sym__concat] = ACTIONS(1742),
[anon_sym_PIPE] = ACTIONS(1742),
[anon_sym_RPAREN] = ACTIONS(1742),
[anon_sym_RBRACK] = ACTIONS(1742),
[sym_comment] = ACTIONS(52),
},
[1014] = {
[anon_sym_AT] = ACTIONS(2639),
[sym_comment] = ACTIONS(52),
},
[1015] = {
[anon_sym_RBRACK] = ACTIONS(2641),
[sym_comment] = ACTIONS(52),
},
[1016] = {
[sym__concat] = ACTIONS(1750),
[anon_sym_PIPE] = ACTIONS(1750),
[anon_sym_RPAREN] = ACTIONS(1750),
[anon_sym_RBRACK] = ACTIONS(1750),
[sym_comment] = ACTIONS(52),
},
[1017] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(2643),
[sym_comment] = ACTIONS(52),
},
[1018] = {
[anon_sym_RBRACE] = ACTIONS(2643),
[sym_comment] = ACTIONS(52),
},
[1019] = {
[anon_sym_RBRACK] = ACTIONS(2645),
[sym_comment] = ACTIONS(52),
},
[1020] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(2647),
[sym_comment] = ACTIONS(52),
},
[1021] = {
[anon_sym_RBRACE] = ACTIONS(2647),
[sym_comment] = ACTIONS(52),
},
[1022] = {
[sym__concat] = ACTIONS(1088),
[anon_sym_RPAREN] = ACTIONS(1088),
[anon_sym_DQUOTE] = ACTIONS(1088),
[sym_raw_string] = ACTIONS(1088),
[anon_sym_DOLLAR] = ACTIONS(1611),
[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_word] = ACTIONS(1611),
[sym_comment] = ACTIONS(52),
},
[1023] = {
[sym__concat] = ACTIONS(1109),
[anon_sym_RPAREN] = ACTIONS(1109),
[anon_sym_DQUOTE] = ACTIONS(1109),
[sym_raw_string] = ACTIONS(1109),
[anon_sym_DOLLAR] = ACTIONS(1613),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1109),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1109),
[anon_sym_BQUOTE] = ACTIONS(1109),
[anon_sym_LT_LPAREN] = ACTIONS(1109),
[anon_sym_GT_LPAREN] = ACTIONS(1109),
[sym_word] = ACTIONS(1613),
[sym_comment] = ACTIONS(52),
},
[1024] = {
[aux_sym_concatenation_repeat1] = STATE(1024),
[sym__concat] = ACTIONS(2649),
[anon_sym_RPAREN] = ACTIONS(1109),
[anon_sym_DQUOTE] = ACTIONS(1109),
[sym_raw_string] = ACTIONS(1109),
[anon_sym_DOLLAR] = ACTIONS(1613),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1109),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1109),
[anon_sym_BQUOTE] = ACTIONS(1109),
[anon_sym_LT_LPAREN] = ACTIONS(1109),
[anon_sym_GT_LPAREN] = ACTIONS(1109),
[sym_word] = ACTIONS(1613),
[sym_comment] = ACTIONS(52),
},
[1025] = {
[anon_sym_RBRACE] = ACTIONS(2652),
[anon_sym_LBRACK] = ACTIONS(2654),
[sym_comment] = ACTIONS(52),
},
[1026] = {
[anon_sym_RBRACE] = ACTIONS(2656),
[anon_sym_LBRACK] = ACTIONS(2658),
[sym_comment] = ACTIONS(52),
},
[1027] = {
[sym__concat] = ACTIONS(1124),
[anon_sym_RPAREN] = ACTIONS(1124),
[anon_sym_DQUOTE] = ACTIONS(1124),
[sym_raw_string] = ACTIONS(1124),
[anon_sym_DOLLAR] = ACTIONS(1626),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1124),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1124),
[anon_sym_BQUOTE] = ACTIONS(1124),
[anon_sym_LT_LPAREN] = ACTIONS(1124),
[anon_sym_GT_LPAREN] = ACTIONS(1124),
[sym_word] = ACTIONS(1626),
[sym_comment] = ACTIONS(52),
},
[1028] = {
[anon_sym_AT] = ACTIONS(2660),
[sym_comment] = ACTIONS(52),
},
[1029] = {
[sym_concatenation] = STATE(1261),
[sym_string] = STATE(1260),
[sym_simple_expansion] = STATE(1260),
[sym_expansion] = STATE(1260),
[sym_command_substitution] = STATE(1260),
[sym_process_substitution] = STATE(1260),
[anon_sym_RBRACE] = ACTIONS(2662),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(2664),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(2666),
[sym_comment] = ACTIONS(52),
},
[1030] = {
[sym__concat] = ACTIONS(1136),
[anon_sym_RPAREN] = ACTIONS(1136),
[anon_sym_DQUOTE] = ACTIONS(1136),
[sym_raw_string] = ACTIONS(1136),
[anon_sym_DOLLAR] = ACTIONS(1636),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1136),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1136),
[anon_sym_BQUOTE] = ACTIONS(1136),
[anon_sym_LT_LPAREN] = ACTIONS(1136),
[anon_sym_GT_LPAREN] = ACTIONS(1136),
[sym_word] = ACTIONS(1636),
[sym_comment] = ACTIONS(52),
},
[1031] = {
[anon_sym_AT] = ACTIONS(2668),
[sym_comment] = ACTIONS(52),
},
[1032] = {
[sym_concatenation] = STATE(1264),
[sym_string] = STATE(1263),
[sym_simple_expansion] = STATE(1263),
[sym_expansion] = STATE(1263),
[sym_command_substitution] = STATE(1263),
[sym_process_substitution] = STATE(1263),
[anon_sym_RBRACE] = ACTIONS(2656),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(2670),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(2672),
[sym_comment] = ACTIONS(52),
},
[1033] = {
[sym__concat] = ACTIONS(1238),
[anon_sym_RPAREN] = ACTIONS(1238),
[anon_sym_DQUOTE] = ACTIONS(1238),
[sym_raw_string] = ACTIONS(1238),
[anon_sym_DOLLAR] = ACTIONS(1644),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1238),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1238),
[anon_sym_BQUOTE] = ACTIONS(1238),
[anon_sym_LT_LPAREN] = ACTIONS(1238),
[anon_sym_GT_LPAREN] = ACTIONS(1238),
[sym_word] = ACTIONS(1644),
[sym_comment] = ACTIONS(52),
},
[1034] = {
[sym__concat] = ACTIONS(1296),
[anon_sym_RPAREN] = ACTIONS(1296),
[anon_sym_DQUOTE] = ACTIONS(1296),
[sym_raw_string] = ACTIONS(1296),
[anon_sym_DOLLAR] = ACTIONS(1646),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1296),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1296),
[anon_sym_BQUOTE] = ACTIONS(1296),
[anon_sym_LT_LPAREN] = ACTIONS(1296),
[anon_sym_GT_LPAREN] = ACTIONS(1296),
[sym_word] = ACTIONS(1646),
[sym_comment] = ACTIONS(52),
},
[1035] = {
[sym_file_descriptor] = ACTIONS(1736),
[sym__concat] = ACTIONS(1736),
[sym_variable_name] = ACTIONS(1736),
[anon_sym_PIPE] = ACTIONS(1738),
[anon_sym_RPAREN] = ACTIONS(1738),
[anon_sym_SEMI_SEMI] = ACTIONS(1738),
[anon_sym_PIPE_AMP] = ACTIONS(1738),
[anon_sym_AMP_AMP] = ACTIONS(1738),
[anon_sym_PIPE_PIPE] = ACTIONS(1738),
[anon_sym_LT] = ACTIONS(1738),
[anon_sym_GT] = ACTIONS(1738),
[anon_sym_GT_GT] = ACTIONS(1738),
[anon_sym_AMP_GT] = ACTIONS(1738),
[anon_sym_AMP_GT_GT] = ACTIONS(1738),
[anon_sym_LT_AMP] = ACTIONS(1738),
[anon_sym_GT_AMP] = ACTIONS(1738),
[anon_sym_DQUOTE] = ACTIONS(1738),
[sym_raw_string] = ACTIONS(1738),
[anon_sym_DOLLAR] = ACTIONS(1738),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1738),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1738),
[anon_sym_BQUOTE] = ACTIONS(1738),
[anon_sym_LT_LPAREN] = ACTIONS(1738),
[anon_sym_GT_LPAREN] = ACTIONS(1738),
[sym_word] = ACTIONS(1738),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1738),
[anon_sym_LF] = ACTIONS(1738),
[anon_sym_AMP] = ACTIONS(1738),
},
[1036] = {
[anon_sym_AT] = ACTIONS(2674),
[sym_comment] = ACTIONS(52),
},
[1037] = {
[sym_file_descriptor] = ACTIONS(1742),
[sym__concat] = ACTIONS(1742),
[sym_variable_name] = ACTIONS(1742),
[anon_sym_PIPE] = ACTIONS(1744),
[anon_sym_RPAREN] = ACTIONS(1744),
[anon_sym_SEMI_SEMI] = ACTIONS(1744),
[anon_sym_PIPE_AMP] = ACTIONS(1744),
[anon_sym_AMP_AMP] = ACTIONS(1744),
[anon_sym_PIPE_PIPE] = ACTIONS(1744),
[anon_sym_LT] = ACTIONS(1744),
[anon_sym_GT] = ACTIONS(1744),
[anon_sym_GT_GT] = ACTIONS(1744),
[anon_sym_AMP_GT] = ACTIONS(1744),
[anon_sym_AMP_GT_GT] = ACTIONS(1744),
[anon_sym_LT_AMP] = ACTIONS(1744),
[anon_sym_GT_AMP] = ACTIONS(1744),
[anon_sym_DQUOTE] = ACTIONS(1744),
[sym_raw_string] = ACTIONS(1744),
[anon_sym_DOLLAR] = ACTIONS(1744),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1744),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1744),
[anon_sym_BQUOTE] = ACTIONS(1744),
[anon_sym_LT_LPAREN] = ACTIONS(1744),
[anon_sym_GT_LPAREN] = ACTIONS(1744),
[sym_word] = ACTIONS(1744),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1744),
[anon_sym_LF] = ACTIONS(1744),
[anon_sym_AMP] = ACTIONS(1744),
},
[1038] = {
[anon_sym_AT] = ACTIONS(2676),
[sym_comment] = ACTIONS(52),
},
[1039] = {
[anon_sym_RBRACK] = ACTIONS(2678),
[sym_comment] = ACTIONS(52),
},
[1040] = {
[sym_file_descriptor] = ACTIONS(1750),
[sym__concat] = ACTIONS(1750),
[sym_variable_name] = ACTIONS(1750),
[anon_sym_PIPE] = ACTIONS(1752),
[anon_sym_RPAREN] = ACTIONS(1752),
[anon_sym_SEMI_SEMI] = ACTIONS(1752),
[anon_sym_PIPE_AMP] = ACTIONS(1752),
[anon_sym_AMP_AMP] = ACTIONS(1752),
[anon_sym_PIPE_PIPE] = ACTIONS(1752),
[anon_sym_LT] = ACTIONS(1752),
[anon_sym_GT] = ACTIONS(1752),
[anon_sym_GT_GT] = ACTIONS(1752),
[anon_sym_AMP_GT] = ACTIONS(1752),
[anon_sym_AMP_GT_GT] = ACTIONS(1752),
[anon_sym_LT_AMP] = ACTIONS(1752),
[anon_sym_GT_AMP] = ACTIONS(1752),
[anon_sym_DQUOTE] = ACTIONS(1752),
[sym_raw_string] = ACTIONS(1752),
[anon_sym_DOLLAR] = ACTIONS(1752),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1752),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1752),
[anon_sym_BQUOTE] = ACTIONS(1752),
[anon_sym_LT_LPAREN] = ACTIONS(1752),
[anon_sym_GT_LPAREN] = ACTIONS(1752),
[sym_word] = ACTIONS(1752),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1752),
[anon_sym_LF] = ACTIONS(1752),
[anon_sym_AMP] = ACTIONS(1752),
},
[1041] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(2680),
[sym_comment] = ACTIONS(52),
},
[1042] = {
[anon_sym_RBRACE] = ACTIONS(2680),
[sym_comment] = ACTIONS(52),
},
[1043] = {
[anon_sym_RBRACK] = ACTIONS(2682),
[sym_comment] = ACTIONS(52),
},
[1044] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(2684),
[sym_comment] = ACTIONS(52),
},
[1045] = {
[anon_sym_RBRACE] = ACTIONS(2684),
[sym_comment] = ACTIONS(52),
},
[1046] = {
[sym__concat] = ACTIONS(1088),
[anon_sym_SEMI_SEMI] = ACTIONS(1090),
[anon_sym_DQUOTE] = ACTIONS(1090),
[sym_raw_string] = ACTIONS(1090),
[anon_sym_DOLLAR] = ACTIONS(1090),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1090),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1090),
[anon_sym_BQUOTE] = ACTIONS(1090),
[anon_sym_LT_LPAREN] = ACTIONS(1090),
[anon_sym_GT_LPAREN] = ACTIONS(1090),
[sym_word] = ACTIONS(1090),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1090),
[anon_sym_LF] = ACTIONS(1090),
[anon_sym_AMP] = ACTIONS(1090),
},
[1047] = {
[sym__concat] = ACTIONS(1109),
[anon_sym_SEMI_SEMI] = ACTIONS(1111),
[anon_sym_DQUOTE] = ACTIONS(1111),
[sym_raw_string] = ACTIONS(1111),
[anon_sym_DOLLAR] = ACTIONS(1111),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1111),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1111),
[anon_sym_BQUOTE] = ACTIONS(1111),
[anon_sym_LT_LPAREN] = ACTIONS(1111),
[anon_sym_GT_LPAREN] = ACTIONS(1111),
[sym_word] = ACTIONS(1111),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1111),
[anon_sym_LF] = ACTIONS(1111),
[anon_sym_AMP] = ACTIONS(1111),
},
[1048] = {
[aux_sym_concatenation_repeat1] = STATE(1048),
[sym__concat] = ACTIONS(2686),
[anon_sym_SEMI_SEMI] = ACTIONS(1111),
[anon_sym_DQUOTE] = ACTIONS(1111),
[sym_raw_string] = ACTIONS(1111),
[anon_sym_DOLLAR] = ACTIONS(1111),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1111),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1111),
[anon_sym_BQUOTE] = ACTIONS(1111),
[anon_sym_LT_LPAREN] = ACTIONS(1111),
[anon_sym_GT_LPAREN] = ACTIONS(1111),
[sym_word] = ACTIONS(1111),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1111),
[anon_sym_LF] = ACTIONS(1111),
[anon_sym_AMP] = ACTIONS(1111),
},
[1049] = {
[anon_sym_RBRACE] = ACTIONS(2689),
[anon_sym_LBRACK] = ACTIONS(2691),
[sym_comment] = ACTIONS(52),
},
[1050] = {
[anon_sym_RBRACE] = ACTIONS(2693),
[anon_sym_LBRACK] = ACTIONS(2695),
[sym_comment] = ACTIONS(52),
},
[1051] = {
[sym__concat] = ACTIONS(1124),
[anon_sym_SEMI_SEMI] = ACTIONS(1126),
[anon_sym_DQUOTE] = ACTIONS(1126),
[sym_raw_string] = ACTIONS(1126),
[anon_sym_DOLLAR] = ACTIONS(1126),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1126),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1126),
[anon_sym_BQUOTE] = ACTIONS(1126),
[anon_sym_LT_LPAREN] = ACTIONS(1126),
[anon_sym_GT_LPAREN] = ACTIONS(1126),
[sym_word] = ACTIONS(1126),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1126),
[anon_sym_LF] = ACTIONS(1126),
[anon_sym_AMP] = ACTIONS(1126),
},
[1052] = {
[anon_sym_AT] = ACTIONS(2697),
[sym_comment] = ACTIONS(52),
},
[1053] = {
[sym_concatenation] = STATE(1278),
[sym_string] = STATE(1277),
[sym_simple_expansion] = STATE(1277),
[sym_expansion] = STATE(1277),
[sym_command_substitution] = STATE(1277),
[sym_process_substitution] = STATE(1277),
[anon_sym_RBRACE] = ACTIONS(2699),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(2701),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(2703),
[sym_comment] = ACTIONS(52),
},
[1054] = {
[sym__concat] = ACTIONS(1136),
[anon_sym_SEMI_SEMI] = ACTIONS(1138),
[anon_sym_DQUOTE] = ACTIONS(1138),
[sym_raw_string] = ACTIONS(1138),
[anon_sym_DOLLAR] = ACTIONS(1138),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1138),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1138),
[anon_sym_BQUOTE] = ACTIONS(1138),
[anon_sym_LT_LPAREN] = ACTIONS(1138),
[anon_sym_GT_LPAREN] = ACTIONS(1138),
[sym_word] = ACTIONS(1138),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1138),
[anon_sym_LF] = ACTIONS(1138),
[anon_sym_AMP] = ACTIONS(1138),
},
[1055] = {
[anon_sym_AT] = ACTIONS(2705),
[sym_comment] = ACTIONS(52),
},
[1056] = {
[sym_concatenation] = STATE(1281),
[sym_string] = STATE(1280),
[sym_simple_expansion] = STATE(1280),
[sym_expansion] = STATE(1280),
[sym_command_substitution] = STATE(1280),
[sym_process_substitution] = STATE(1280),
[anon_sym_RBRACE] = ACTIONS(2693),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(2707),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(2709),
[sym_comment] = ACTIONS(52),
},
[1057] = {
[sym__concat] = ACTIONS(1238),
[anon_sym_SEMI_SEMI] = ACTIONS(1240),
[anon_sym_DQUOTE] = ACTIONS(1240),
[sym_raw_string] = ACTIONS(1240),
[anon_sym_DOLLAR] = ACTIONS(1240),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1240),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1240),
[anon_sym_BQUOTE] = ACTIONS(1240),
[anon_sym_LT_LPAREN] = ACTIONS(1240),
[anon_sym_GT_LPAREN] = ACTIONS(1240),
[sym_word] = ACTIONS(1240),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1240),
[anon_sym_LF] = ACTIONS(1240),
[anon_sym_AMP] = ACTIONS(1240),
},
[1058] = {
[sym__concat] = ACTIONS(1296),
[anon_sym_SEMI_SEMI] = ACTIONS(1298),
[anon_sym_DQUOTE] = ACTIONS(1298),
[sym_raw_string] = ACTIONS(1298),
[anon_sym_DOLLAR] = ACTIONS(1298),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1298),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1298),
[anon_sym_BQUOTE] = ACTIONS(1298),
[anon_sym_LT_LPAREN] = ACTIONS(1298),
[anon_sym_GT_LPAREN] = ACTIONS(1298),
[sym_word] = ACTIONS(1298),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1298),
[anon_sym_LF] = ACTIONS(1298),
[anon_sym_AMP] = ACTIONS(1298),
},
[1059] = {
[anon_sym_PIPE] = ACTIONS(2711),
[anon_sym_RPAREN] = ACTIONS(2711),
[anon_sym_SEMI_SEMI] = ACTIONS(2711),
[anon_sym_PIPE_AMP] = ACTIONS(2711),
[anon_sym_AMP_AMP] = ACTIONS(2711),
[anon_sym_PIPE_PIPE] = ACTIONS(2711),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2711),
[anon_sym_LF] = ACTIONS(2711),
[anon_sym_AMP] = ACTIONS(2711),
},
[1060] = {
[sym__terminated_statement] = STATE(465),
[sym_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_bracket_command] = STATE(466),
[sym_command] = STATE(466),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(469),
[sym_declaration_command] = STATE(466),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(1282),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_fi] = ACTIONS(2713),
[anon_sym_elif] = ACTIONS(2713),
[anon_sym_else] = ACTIONS(2713),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[1061] = {
[sym_file_descriptor] = ACTIONS(616),
[sym_variable_name] = ACTIONS(616),
[anon_sym_for] = ACTIONS(618),
[anon_sym_while] = ACTIONS(618),
[anon_sym_if] = ACTIONS(618),
[anon_sym_fi] = ACTIONS(618),
[anon_sym_case] = ACTIONS(618),
[anon_sym_function] = ACTIONS(618),
[anon_sym_LPAREN] = ACTIONS(616),
[anon_sym_LBRACK] = ACTIONS(618),
[anon_sym_LBRACK_LBRACK] = ACTIONS(618),
[anon_sym_declare] = ACTIONS(618),
[anon_sym_typeset] = ACTIONS(618),
[anon_sym_export] = ACTIONS(618),
[anon_sym_readonly] = ACTIONS(618),
[anon_sym_local] = ACTIONS(618),
[anon_sym_LT] = ACTIONS(618),
[anon_sym_GT] = ACTIONS(618),
[anon_sym_GT_GT] = ACTIONS(616),
[anon_sym_AMP_GT] = ACTIONS(618),
[anon_sym_AMP_GT_GT] = ACTIONS(616),
[anon_sym_LT_AMP] = ACTIONS(616),
[anon_sym_GT_AMP] = ACTIONS(616),
[anon_sym_DQUOTE] = ACTIONS(616),
[sym_raw_string] = ACTIONS(616),
[anon_sym_DOLLAR] = ACTIONS(618),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(616),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(616),
[anon_sym_BQUOTE] = ACTIONS(616),
[anon_sym_LT_LPAREN] = ACTIONS(616),
[anon_sym_GT_LPAREN] = ACTIONS(616),
[sym_word] = ACTIONS(620),
[sym_comment] = ACTIONS(52),
},
[1062] = {
[sym__terminated_statement] = STATE(770),
[sym_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_bracket_command] = STATE(771),
[sym_command] = STATE(771),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(772),
[sym_declaration_command] = STATE(771),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(1062),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(652),
[sym_variable_name] = ACTIONS(655),
[anon_sym_for] = ACTIONS(660),
[anon_sym_while] = ACTIONS(663),
[anon_sym_if] = ACTIONS(666),
[anon_sym_fi] = ACTIONS(2248),
[anon_sym_case] = ACTIONS(669),
[anon_sym_function] = ACTIONS(672),
[anon_sym_LPAREN] = ACTIONS(675),
[anon_sym_LBRACK] = ACTIONS(678),
[anon_sym_LBRACK_LBRACK] = ACTIONS(681),
[anon_sym_declare] = ACTIONS(684),
[anon_sym_typeset] = ACTIONS(684),
[anon_sym_export] = ACTIONS(684),
[anon_sym_readonly] = ACTIONS(684),
[anon_sym_local] = ACTIONS(684),
[anon_sym_LT] = ACTIONS(687),
[anon_sym_GT] = ACTIONS(687),
[anon_sym_GT_GT] = ACTIONS(690),
[anon_sym_AMP_GT] = ACTIONS(687),
[anon_sym_AMP_GT_GT] = ACTIONS(690),
[anon_sym_LT_AMP] = ACTIONS(690),
[anon_sym_GT_AMP] = ACTIONS(690),
[anon_sym_DQUOTE] = ACTIONS(693),
[sym_raw_string] = ACTIONS(696),
[anon_sym_DOLLAR] = ACTIONS(699),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(702),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(705),
[anon_sym_BQUOTE] = ACTIONS(708),
[anon_sym_LT_LPAREN] = ACTIONS(711),
[anon_sym_GT_LPAREN] = ACTIONS(711),
[sym_word] = ACTIONS(714),
[sym_comment] = ACTIONS(52),
},
[1063] = {
[anon_sym_PIPE] = ACTIONS(2715),
[anon_sym_RPAREN] = ACTIONS(2715),
[anon_sym_SEMI_SEMI] = ACTIONS(2715),
[anon_sym_PIPE_AMP] = ACTIONS(2715),
[anon_sym_AMP_AMP] = ACTIONS(2715),
[anon_sym_PIPE_PIPE] = ACTIONS(2715),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2715),
[anon_sym_LF] = ACTIONS(2715),
[anon_sym_AMP] = ACTIONS(2715),
},
[1064] = {
[anon_sym_fi] = ACTIONS(2717),
[sym_comment] = ACTIONS(52),
},
[1065] = {
[sym_concatenation] = STATE(1285),
[sym_string] = STATE(1284),
[sym_simple_expansion] = STATE(1284),
[sym_expansion] = STATE(1284),
[sym_command_substitution] = STATE(1284),
[sym_process_substitution] = STATE(1284),
[anon_sym_DQUOTE] = ACTIONS(284),
[sym_raw_string] = ACTIONS(2719),
[anon_sym_DOLLAR] = ACTIONS(288),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(290),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(292),
[anon_sym_BQUOTE] = ACTIONS(294),
[anon_sym_LT_LPAREN] = ACTIONS(296),
[anon_sym_GT_LPAREN] = ACTIONS(296),
[sym_word] = ACTIONS(2721),
[sym_comment] = ACTIONS(52),
},
[1066] = {
[sym__terminated_statement] = STATE(23),
[sym_for_statement] = STATE(24),
[sym_while_statement] = STATE(24),
[sym_if_statement] = STATE(24),
[sym_case_statement] = STATE(24),
[sym_function_definition] = STATE(24),
[sym_subshell] = STATE(24),
[sym_pipeline] = STATE(24),
[sym_list] = STATE(24),
[sym_bracket_command] = STATE(24),
[sym_command] = STATE(24),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(26),
[sym_declaration_command] = STATE(24),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(1287),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_SEMI_SEMI] = ACTIONS(2723),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[1067] = {
[aux_sym_case_item_repeat1] = STATE(1289),
[anon_sym_PIPE] = ACTIONS(2267),
[anon_sym_RPAREN] = ACTIONS(2725),
[sym_comment] = ACTIONS(52),
},
[1068] = {
[aux_sym_concatenation_repeat1] = STATE(1290),
[sym__concat] = ACTIONS(741),
[anon_sym_PIPE] = ACTIONS(470),
[anon_sym_RPAREN] = ACTIONS(470),
[sym_comment] = ACTIONS(52),
},
[1069] = {
[anon_sym_PIPE] = ACTIONS(2727),
[anon_sym_RPAREN] = ACTIONS(2727),
[anon_sym_SEMI_SEMI] = ACTIONS(2727),
[anon_sym_PIPE_AMP] = ACTIONS(2727),
[anon_sym_AMP_AMP] = ACTIONS(2727),
[anon_sym_PIPE_PIPE] = ACTIONS(2727),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2727),
[anon_sym_LF] = ACTIONS(2727),
[anon_sym_AMP] = ACTIONS(2727),
},
[1070] = {
[sym_case_item] = STATE(782),
[sym_concatenation] = STATE(783),
[sym_string] = STATE(781),
[sym_simple_expansion] = STATE(781),
[sym_expansion] = STATE(781),
[sym_command_substitution] = STATE(781),
[sym_process_substitution] = STATE(781),
[aux_sym_case_statement_repeat1] = STATE(1070),
[anon_sym_esac] = ACTIONS(2729),
[anon_sym_DQUOTE] = ACTIONS(2731),
[sym_raw_string] = ACTIONS(2734),
[anon_sym_DOLLAR] = ACTIONS(2737),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2740),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2743),
[anon_sym_BQUOTE] = ACTIONS(2746),
[anon_sym_LT_LPAREN] = ACTIONS(2749),
[anon_sym_GT_LPAREN] = ACTIONS(2749),
[sym_word] = ACTIONS(2752),
[sym_comment] = ACTIONS(52),
},
[1071] = {
[sym_case_item] = STATE(782),
[sym_concatenation] = STATE(783),
[sym_string] = STATE(781),
[sym_simple_expansion] = STATE(781),
[sym_expansion] = STATE(781),
[sym_command_substitution] = STATE(781),
[sym_process_substitution] = STATE(781),
[aux_sym_case_statement_repeat1] = STATE(1070),
[anon_sym_esac] = ACTIONS(2755),
[anon_sym_DQUOTE] = ACTIONS(284),
[sym_raw_string] = ACTIONS(1544),
[anon_sym_DOLLAR] = ACTIONS(288),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(290),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(292),
[anon_sym_BQUOTE] = ACTIONS(294),
[anon_sym_LT_LPAREN] = ACTIONS(296),
[anon_sym_GT_LPAREN] = ACTIONS(296),
[sym_word] = ACTIONS(1546),
[sym_comment] = ACTIONS(52),
},
[1072] = {
[anon_sym_RBRACK] = ACTIONS(2757),
[sym_comment] = ACTIONS(52),
},
[1073] = {
[anon_sym_RBRACK] = ACTIONS(2759),
[sym_comment] = ACTIONS(52),
},
[1074] = {
[anon_sym_RBRACE] = ACTIONS(2761),
[sym_comment] = ACTIONS(52),
},
[1075] = {
[sym__concat] = ACTIONS(2389),
[anon_sym_in] = ACTIONS(2391),
[anon_sym_SEMI_SEMI] = ACTIONS(2391),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2391),
[anon_sym_LF] = ACTIONS(2391),
[anon_sym_AMP] = ACTIONS(2391),
},
[1076] = {
[anon_sym_RBRACE] = ACTIONS(2763),
[sym_comment] = ACTIONS(52),
},
[1077] = {
[sym__concat] = ACTIONS(2395),
[anon_sym_in] = ACTIONS(2397),
[anon_sym_SEMI_SEMI] = ACTIONS(2397),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2397),
[anon_sym_LF] = ACTIONS(2397),
[anon_sym_AMP] = ACTIONS(2397),
},
[1078] = {
[anon_sym_PIPE] = ACTIONS(2765),
[anon_sym_RPAREN] = ACTIONS(2765),
[anon_sym_SEMI_SEMI] = ACTIONS(2765),
[anon_sym_PIPE_AMP] = ACTIONS(2765),
[anon_sym_AMP_AMP] = ACTIONS(2765),
[anon_sym_PIPE_PIPE] = ACTIONS(2765),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2765),
[anon_sym_LF] = ACTIONS(2765),
[anon_sym_AMP] = ACTIONS(2765),
},
[1079] = {
[aux_sym_concatenation_repeat1] = STATE(1079),
[sym_file_descriptor] = ACTIONS(1109),
[sym__concat] = ACTIONS(2172),
[sym_variable_name] = ACTIONS(1109),
[anon_sym_PIPE] = ACTIONS(1111),
[anon_sym_RPAREN] = ACTIONS(1111),
[anon_sym_SEMI_SEMI] = ACTIONS(1111),
[anon_sym_PIPE_AMP] = ACTIONS(1111),
[anon_sym_AMP_AMP] = ACTIONS(1111),
[anon_sym_PIPE_PIPE] = ACTIONS(1111),
[anon_sym_LT] = ACTIONS(1111),
[anon_sym_GT] = ACTIONS(1111),
[anon_sym_GT_GT] = ACTIONS(1111),
[anon_sym_AMP_GT] = ACTIONS(1111),
[anon_sym_AMP_GT_GT] = ACTIONS(1111),
[anon_sym_LT_AMP] = ACTIONS(1111),
[anon_sym_GT_AMP] = ACTIONS(1111),
[anon_sym_DQUOTE] = ACTIONS(1111),
[sym_raw_string] = ACTIONS(1111),
[anon_sym_DOLLAR] = ACTIONS(1111),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1111),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1111),
[anon_sym_BQUOTE] = ACTIONS(1111),
[anon_sym_LT_LPAREN] = ACTIONS(1111),
[anon_sym_GT_LPAREN] = ACTIONS(1111),
[sym_word] = ACTIONS(1111),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1111),
[anon_sym_LF] = ACTIONS(1111),
[anon_sym_AMP] = ACTIONS(1111),
},
[1080] = {
[sym_file_redirect] = STATE(1078),
[sym_file_descriptor] = ACTIONS(863),
[anon_sym_PIPE] = ACTIONS(2291),
[anon_sym_RPAREN] = ACTIONS(2291),
[anon_sym_SEMI_SEMI] = ACTIONS(2291),
[anon_sym_PIPE_AMP] = ACTIONS(2291),
[anon_sym_AMP_AMP] = ACTIONS(2291),
[anon_sym_PIPE_PIPE] = ACTIONS(2291),
[anon_sym_LT] = ACTIONS(865),
[anon_sym_GT] = ACTIONS(865),
[anon_sym_GT_GT] = ACTIONS(865),
[anon_sym_AMP_GT] = ACTIONS(865),
[anon_sym_AMP_GT_GT] = ACTIONS(865),
[anon_sym_LT_AMP] = ACTIONS(865),
[anon_sym_GT_AMP] = ACTIONS(865),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2291),
[anon_sym_LF] = ACTIONS(2291),
[anon_sym_AMP] = ACTIONS(2291),
},
[1081] = {
[aux_sym_concatenation_repeat1] = STATE(1296),
[sym__concat] = ACTIONS(1677),
[sym_variable_name] = ACTIONS(470),
[anon_sym_PIPE] = ACTIONS(472),
[anon_sym_RPAREN] = ACTIONS(472),
[anon_sym_SEMI_SEMI] = ACTIONS(472),
[anon_sym_PIPE_AMP] = ACTIONS(472),
[anon_sym_AMP_AMP] = ACTIONS(472),
[anon_sym_PIPE_PIPE] = ACTIONS(472),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(472),
[anon_sym_SEMI] = ACTIONS(472),
[anon_sym_LF] = ACTIONS(472),
[anon_sym_AMP] = ACTIONS(472),
},
[1082] = {
[aux_sym_concatenation_repeat1] = STATE(1083),
[sym__concat] = ACTIONS(2025),
[anon_sym_PIPE] = ACTIONS(2037),
[anon_sym_RPAREN] = ACTIONS(2037),
[anon_sym_SEMI_SEMI] = ACTIONS(2037),
[anon_sym_PIPE_AMP] = ACTIONS(2037),
[anon_sym_AMP_AMP] = ACTIONS(2037),
[anon_sym_PIPE_PIPE] = ACTIONS(2037),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2037),
[anon_sym_LF] = ACTIONS(2037),
[anon_sym_AMP] = ACTIONS(2037),
},
[1083] = {
[aux_sym_concatenation_repeat1] = STATE(1297),
[sym__concat] = ACTIONS(2025),
[anon_sym_PIPE] = ACTIONS(472),
[anon_sym_RPAREN] = ACTIONS(472),
[anon_sym_SEMI_SEMI] = ACTIONS(472),
[anon_sym_PIPE_AMP] = ACTIONS(472),
[anon_sym_AMP_AMP] = ACTIONS(472),
[anon_sym_PIPE_PIPE] = ACTIONS(472),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(472),
[anon_sym_LF] = ACTIONS(472),
[anon_sym_AMP] = ACTIONS(472),
},
[1084] = {
[aux_sym_concatenation_repeat1] = STATE(1084),
[sym_file_descriptor] = ACTIONS(1109),
[sym__concat] = ACTIONS(2577),
[anon_sym_PIPE] = ACTIONS(1111),
[anon_sym_RPAREN] = ACTIONS(1111),
[anon_sym_SEMI_SEMI] = ACTIONS(1111),
[anon_sym_PIPE_AMP] = ACTIONS(1111),
[anon_sym_AMP_AMP] = ACTIONS(1111),
[anon_sym_PIPE_PIPE] = ACTIONS(1111),
[anon_sym_LT] = ACTIONS(1111),
[anon_sym_GT] = ACTIONS(1111),
[anon_sym_GT_GT] = ACTIONS(1111),
[anon_sym_AMP_GT] = ACTIONS(1111),
[anon_sym_AMP_GT_GT] = ACTIONS(1111),
[anon_sym_LT_AMP] = ACTIONS(1111),
[anon_sym_GT_AMP] = ACTIONS(1111),
[anon_sym_LT_LT] = ACTIONS(1111),
[anon_sym_LT_LT_DASH] = ACTIONS(1111),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1111),
[anon_sym_LF] = ACTIONS(1111),
[anon_sym_AMP] = ACTIONS(1111),
},
[1085] = {
[anon_sym_RBRACK] = ACTIONS(2767),
[sym_comment] = ACTIONS(52),
},
[1086] = {
[anon_sym_RBRACK] = ACTIONS(2769),
[sym_comment] = ACTIONS(52),
},
[1087] = {
[anon_sym_RBRACE] = ACTIONS(2771),
[sym_comment] = ACTIONS(52),
},
[1088] = {
[sym__concat] = ACTIONS(2389),
[anon_sym_RBRACE] = ACTIONS(2389),
[anon_sym_RBRACK] = ACTIONS(2773),
[anon_sym_DQUOTE] = ACTIONS(2389),
[sym_raw_string] = ACTIONS(2389),
[anon_sym_DOLLAR] = ACTIONS(2773),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2389),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2389),
[anon_sym_BQUOTE] = ACTIONS(2389),
[anon_sym_LT_LPAREN] = ACTIONS(2389),
[anon_sym_GT_LPAREN] = ACTIONS(2389),
[sym_word] = ACTIONS(2391),
[sym_comment] = ACTIONS(52),
},
[1089] = {
[anon_sym_RBRACE] = ACTIONS(2775),
[sym_comment] = ACTIONS(52),
},
[1090] = {
[sym__concat] = ACTIONS(2395),
[anon_sym_RBRACE] = ACTIONS(2395),
[anon_sym_RBRACK] = ACTIONS(2777),
[anon_sym_DQUOTE] = ACTIONS(2395),
[sym_raw_string] = ACTIONS(2395),
[anon_sym_DOLLAR] = ACTIONS(2777),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2395),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2395),
[anon_sym_BQUOTE] = ACTIONS(2395),
[anon_sym_LT_LPAREN] = ACTIONS(2395),
[anon_sym_GT_LPAREN] = ACTIONS(2395),
[sym_word] = ACTIONS(2397),
[sym_comment] = ACTIONS(52),
},
[1091] = {
[anon_sym_RBRACK] = ACTIONS(2779),
[sym_comment] = ACTIONS(52),
},
[1092] = {
[anon_sym_RBRACK] = ACTIONS(2781),
[sym_comment] = ACTIONS(52),
},
[1093] = {
[anon_sym_RBRACE] = ACTIONS(2783),
[sym_comment] = ACTIONS(52),
},
[1094] = {
[sym__concat] = ACTIONS(2389),
[anon_sym_RBRACK_RBRACK] = ACTIONS(2773),
[anon_sym_DQUOTE] = ACTIONS(2389),
[sym_raw_string] = ACTIONS(2389),
[anon_sym_DOLLAR] = ACTIONS(2773),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2389),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2389),
[anon_sym_BQUOTE] = ACTIONS(2389),
[anon_sym_LT_LPAREN] = ACTIONS(2389),
[anon_sym_GT_LPAREN] = ACTIONS(2389),
[sym_word] = ACTIONS(2391),
[sym_comment] = ACTIONS(52),
},
[1095] = {
[anon_sym_RBRACE] = ACTIONS(2785),
[sym_comment] = ACTIONS(52),
},
[1096] = {
[sym__concat] = ACTIONS(2395),
[anon_sym_RBRACK_RBRACK] = ACTIONS(2777),
[anon_sym_DQUOTE] = ACTIONS(2395),
[sym_raw_string] = ACTIONS(2395),
[anon_sym_DOLLAR] = ACTIONS(2777),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2395),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2395),
[anon_sym_BQUOTE] = ACTIONS(2395),
[anon_sym_LT_LPAREN] = ACTIONS(2395),
[anon_sym_GT_LPAREN] = ACTIONS(2395),
[sym_word] = ACTIONS(2397),
[sym_comment] = ACTIONS(52),
},
[1097] = {
[sym_variable_name] = ACTIONS(2144),
[anon_sym_PIPE] = ACTIONS(2146),
[anon_sym_RPAREN] = ACTIONS(2146),
[anon_sym_SEMI_SEMI] = ACTIONS(2146),
[anon_sym_PIPE_AMP] = ACTIONS(2146),
[anon_sym_AMP_AMP] = ACTIONS(2146),
[anon_sym_PIPE_PIPE] = ACTIONS(2146),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(2146),
[anon_sym_SEMI] = ACTIONS(2146),
[anon_sym_LF] = ACTIONS(2146),
[anon_sym_AMP] = ACTIONS(2146),
},
[1098] = {
[sym__concat] = ACTIONS(1088),
[sym_variable_name] = ACTIONS(1088),
[anon_sym_PIPE] = ACTIONS(1090),
[anon_sym_RPAREN] = ACTIONS(1090),
[anon_sym_SEMI_SEMI] = ACTIONS(1090),
[anon_sym_PIPE_AMP] = ACTIONS(1090),
[anon_sym_AMP_AMP] = ACTIONS(1090),
[anon_sym_PIPE_PIPE] = ACTIONS(1090),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1090),
[anon_sym_SEMI] = ACTIONS(1090),
[anon_sym_LF] = ACTIONS(1090),
[anon_sym_AMP] = ACTIONS(1090),
},
[1099] = {
[sym__concat] = ACTIONS(1109),
[sym_variable_name] = ACTIONS(1109),
[anon_sym_PIPE] = ACTIONS(1111),
[anon_sym_RPAREN] = ACTIONS(1111),
[anon_sym_SEMI_SEMI] = ACTIONS(1111),
[anon_sym_PIPE_AMP] = ACTIONS(1111),
[anon_sym_AMP_AMP] = ACTIONS(1111),
[anon_sym_PIPE_PIPE] = ACTIONS(1111),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1111),
[anon_sym_SEMI] = ACTIONS(1111),
[anon_sym_LF] = ACTIONS(1111),
[anon_sym_AMP] = ACTIONS(1111),
},
[1100] = {
[aux_sym_concatenation_repeat1] = STATE(1100),
[sym__concat] = ACTIONS(2787),
[sym_variable_name] = ACTIONS(1109),
[anon_sym_PIPE] = ACTIONS(1111),
[anon_sym_SEMI_SEMI] = ACTIONS(1111),
[anon_sym_PIPE_AMP] = ACTIONS(1111),
[anon_sym_AMP_AMP] = ACTIONS(1111),
[anon_sym_PIPE_PIPE] = ACTIONS(1111),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1111),
[anon_sym_SEMI] = ACTIONS(1111),
[anon_sym_LF] = ACTIONS(1111),
[anon_sym_AMP] = ACTIONS(1111),
},
[1101] = {
[anon_sym_RBRACE] = ACTIONS(2790),
[anon_sym_LBRACK] = ACTIONS(2792),
[sym_comment] = ACTIONS(52),
},
[1102] = {
[anon_sym_RBRACE] = ACTIONS(2794),
[anon_sym_LBRACK] = ACTIONS(2796),
[sym_comment] = ACTIONS(52),
},
[1103] = {
[sym__concat] = ACTIONS(1124),
[sym_variable_name] = ACTIONS(1124),
[anon_sym_PIPE] = ACTIONS(1126),
[anon_sym_RPAREN] = ACTIONS(1126),
[anon_sym_SEMI_SEMI] = ACTIONS(1126),
[anon_sym_PIPE_AMP] = ACTIONS(1126),
[anon_sym_AMP_AMP] = ACTIONS(1126),
[anon_sym_PIPE_PIPE] = ACTIONS(1126),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1126),
[anon_sym_SEMI] = ACTIONS(1126),
[anon_sym_LF] = ACTIONS(1126),
[anon_sym_AMP] = ACTIONS(1126),
},
[1104] = {
[anon_sym_AT] = ACTIONS(2798),
[sym_comment] = ACTIONS(52),
},
[1105] = {
[sym_concatenation] = STATE(1313),
[sym_string] = STATE(1312),
[sym_simple_expansion] = STATE(1312),
[sym_expansion] = STATE(1312),
[sym_command_substitution] = STATE(1312),
[sym_process_substitution] = STATE(1312),
[anon_sym_RBRACE] = ACTIONS(2800),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(2802),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(2804),
[sym_comment] = ACTIONS(52),
},
[1106] = {
[sym__concat] = ACTIONS(1136),
[sym_variable_name] = ACTIONS(1136),
[anon_sym_PIPE] = ACTIONS(1138),
[anon_sym_RPAREN] = ACTIONS(1138),
[anon_sym_SEMI_SEMI] = ACTIONS(1138),
[anon_sym_PIPE_AMP] = ACTIONS(1138),
[anon_sym_AMP_AMP] = ACTIONS(1138),
[anon_sym_PIPE_PIPE] = ACTIONS(1138),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1138),
[anon_sym_SEMI] = ACTIONS(1138),
[anon_sym_LF] = ACTIONS(1138),
[anon_sym_AMP] = ACTIONS(1138),
},
[1107] = {
[anon_sym_AT] = ACTIONS(2806),
[sym_comment] = ACTIONS(52),
},
[1108] = {
[sym_concatenation] = STATE(1316),
[sym_string] = STATE(1315),
[sym_simple_expansion] = STATE(1315),
[sym_expansion] = STATE(1315),
[sym_command_substitution] = STATE(1315),
[sym_process_substitution] = STATE(1315),
[anon_sym_RBRACE] = ACTIONS(2794),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(2808),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(2810),
[sym_comment] = ACTIONS(52),
},
[1109] = {
[sym__concat] = ACTIONS(1238),
[sym_variable_name] = ACTIONS(1238),
[anon_sym_PIPE] = ACTIONS(1240),
[anon_sym_RPAREN] = ACTIONS(1240),
[anon_sym_SEMI_SEMI] = ACTIONS(1240),
[anon_sym_PIPE_AMP] = ACTIONS(1240),
[anon_sym_AMP_AMP] = ACTIONS(1240),
[anon_sym_PIPE_PIPE] = ACTIONS(1240),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1240),
[anon_sym_SEMI] = ACTIONS(1240),
[anon_sym_LF] = ACTIONS(1240),
[anon_sym_AMP] = ACTIONS(1240),
},
[1110] = {
[sym__concat] = ACTIONS(1296),
[sym_variable_name] = ACTIONS(1296),
[anon_sym_PIPE] = ACTIONS(1298),
[anon_sym_RPAREN] = ACTIONS(1298),
[anon_sym_SEMI_SEMI] = ACTIONS(1298),
[anon_sym_PIPE_AMP] = ACTIONS(1298),
[anon_sym_AMP_AMP] = ACTIONS(1298),
[anon_sym_PIPE_PIPE] = ACTIONS(1298),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1298),
[anon_sym_SEMI] = ACTIONS(1298),
[anon_sym_LF] = ACTIONS(1298),
[anon_sym_AMP] = ACTIONS(1298),
},
[1111] = {
[anon_sym_RBRACK] = ACTIONS(2812),
[sym_comment] = ACTIONS(52),
},
[1112] = {
[anon_sym_RBRACK] = ACTIONS(2814),
[sym_comment] = ACTIONS(52),
},
[1113] = {
[anon_sym_RBRACE] = ACTIONS(2816),
[sym_comment] = ACTIONS(52),
},
[1114] = {
[sym_file_descriptor] = ACTIONS(2389),
[sym__concat] = ACTIONS(2389),
[sym_variable_name] = ACTIONS(2389),
[anon_sym_LT] = ACTIONS(2773),
[anon_sym_GT] = ACTIONS(2773),
[anon_sym_GT_GT] = ACTIONS(2389),
[anon_sym_AMP_GT] = ACTIONS(2773),
[anon_sym_AMP_GT_GT] = ACTIONS(2389),
[anon_sym_LT_AMP] = ACTIONS(2389),
[anon_sym_GT_AMP] = ACTIONS(2389),
[anon_sym_DQUOTE] = ACTIONS(2389),
[sym_raw_string] = ACTIONS(2389),
[anon_sym_DOLLAR] = ACTIONS(2773),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2389),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2389),
[anon_sym_BQUOTE] = ACTIONS(2389),
[anon_sym_LT_LPAREN] = ACTIONS(2389),
[anon_sym_GT_LPAREN] = ACTIONS(2389),
[sym_word] = ACTIONS(2773),
[sym_comment] = ACTIONS(52),
},
[1115] = {
[anon_sym_RBRACE] = ACTIONS(2818),
[sym_comment] = ACTIONS(52),
},
[1116] = {
[sym_file_descriptor] = ACTIONS(2395),
[sym__concat] = ACTIONS(2395),
[sym_variable_name] = ACTIONS(2395),
[anon_sym_LT] = ACTIONS(2777),
[anon_sym_GT] = ACTIONS(2777),
[anon_sym_GT_GT] = ACTIONS(2395),
[anon_sym_AMP_GT] = ACTIONS(2777),
[anon_sym_AMP_GT_GT] = ACTIONS(2395),
[anon_sym_LT_AMP] = ACTIONS(2395),
[anon_sym_GT_AMP] = ACTIONS(2395),
[anon_sym_DQUOTE] = ACTIONS(2395),
[sym_raw_string] = ACTIONS(2395),
[anon_sym_DOLLAR] = ACTIONS(2777),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2395),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2395),
[anon_sym_BQUOTE] = ACTIONS(2395),
[anon_sym_LT_LPAREN] = ACTIONS(2395),
[anon_sym_GT_LPAREN] = ACTIONS(2395),
[sym_word] = ACTIONS(2777),
[sym_comment] = ACTIONS(52),
},
[1117] = {
[anon_sym_RBRACK] = ACTIONS(2820),
[sym_comment] = ACTIONS(52),
},
[1118] = {
[anon_sym_RBRACK] = ACTIONS(2822),
[sym_comment] = ACTIONS(52),
},
[1119] = {
[anon_sym_RBRACE] = ACTIONS(2824),
[sym_comment] = ACTIONS(52),
},
[1120] = {
[anon_sym_DQUOTE] = ACTIONS(2391),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2773),
[anon_sym_DOLLAR] = ACTIONS(2391),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2391),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2391),
[anon_sym_BQUOTE] = ACTIONS(2391),
[sym_comment] = ACTIONS(130),
},
[1121] = {
[anon_sym_RBRACE] = ACTIONS(2826),
[sym_comment] = ACTIONS(52),
},
[1122] = {
[anon_sym_DQUOTE] = ACTIONS(2397),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(2777),
[anon_sym_DOLLAR] = ACTIONS(2397),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2397),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2397),
[anon_sym_BQUOTE] = ACTIONS(2397),
[sym_comment] = ACTIONS(130),
},
[1123] = {
[anon_sym_RBRACE] = ACTIONS(2828),
[sym_comment] = ACTIONS(52),
},
[1124] = {
[anon_sym_RBRACE] = ACTIONS(2830),
[sym_comment] = ACTIONS(52),
},
[1125] = {
[sym_file_descriptor] = ACTIONS(2832),
[sym__concat] = ACTIONS(2832),
[anon_sym_PIPE] = ACTIONS(2834),
[anon_sym_RPAREN] = ACTIONS(2834),
[anon_sym_SEMI_SEMI] = ACTIONS(2834),
[anon_sym_PIPE_AMP] = ACTIONS(2834),
[anon_sym_AMP_AMP] = ACTIONS(2834),
[anon_sym_PIPE_PIPE] = ACTIONS(2834),
[anon_sym_LT] = ACTIONS(2834),
[anon_sym_GT] = ACTIONS(2834),
[anon_sym_GT_GT] = ACTIONS(2834),
[anon_sym_AMP_GT] = ACTIONS(2834),
[anon_sym_AMP_GT_GT] = ACTIONS(2834),
[anon_sym_LT_AMP] = ACTIONS(2834),
[anon_sym_GT_AMP] = ACTIONS(2834),
[anon_sym_LT_LT] = ACTIONS(2834),
[anon_sym_LT_LT_DASH] = ACTIONS(2834),
[anon_sym_DQUOTE] = ACTIONS(2834),
[sym_raw_string] = ACTIONS(2834),
[anon_sym_DOLLAR] = ACTIONS(2834),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2834),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2834),
[anon_sym_BQUOTE] = ACTIONS(2834),
[anon_sym_LT_LPAREN] = ACTIONS(2834),
[anon_sym_GT_LPAREN] = ACTIONS(2834),
[sym_word] = ACTIONS(2834),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2834),
[anon_sym_LF] = ACTIONS(2834),
[anon_sym_AMP] = ACTIONS(2834),
},
[1126] = {
[aux_sym_concatenation_repeat1] = STATE(1126),
[sym__concat] = ACTIONS(1615),
[anon_sym_RBRACE] = ACTIONS(1109),
[sym_comment] = ACTIONS(52),
},
[1127] = {
[sym_file_descriptor] = ACTIONS(2836),
[sym__concat] = ACTIONS(2836),
[anon_sym_PIPE] = ACTIONS(2838),
[anon_sym_RPAREN] = ACTIONS(2838),
[anon_sym_SEMI_SEMI] = ACTIONS(2838),
[anon_sym_PIPE_AMP] = ACTIONS(2838),
[anon_sym_AMP_AMP] = ACTIONS(2838),
[anon_sym_PIPE_PIPE] = ACTIONS(2838),
[anon_sym_LT] = ACTIONS(2838),
[anon_sym_GT] = ACTIONS(2838),
[anon_sym_GT_GT] = ACTIONS(2838),
[anon_sym_AMP_GT] = ACTIONS(2838),
[anon_sym_AMP_GT_GT] = ACTIONS(2838),
[anon_sym_LT_AMP] = ACTIONS(2838),
[anon_sym_GT_AMP] = ACTIONS(2838),
[anon_sym_LT_LT] = ACTIONS(2838),
[anon_sym_LT_LT_DASH] = ACTIONS(2838),
[anon_sym_DQUOTE] = ACTIONS(2838),
[sym_raw_string] = ACTIONS(2838),
[anon_sym_DOLLAR] = ACTIONS(2838),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2838),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2838),
[anon_sym_BQUOTE] = ACTIONS(2838),
[anon_sym_LT_LPAREN] = ACTIONS(2838),
[anon_sym_GT_LPAREN] = ACTIONS(2838),
[sym_word] = ACTIONS(2838),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2838),
[anon_sym_LF] = ACTIONS(2838),
[anon_sym_AMP] = ACTIONS(2838),
},
[1128] = {
[sym_file_descriptor] = ACTIONS(2144),
[sym_variable_name] = ACTIONS(2144),
[anon_sym_PIPE] = ACTIONS(2840),
[anon_sym_RPAREN] = ACTIONS(2144),
[anon_sym_PIPE_AMP] = ACTIONS(2144),
[anon_sym_AMP_AMP] = ACTIONS(2144),
[anon_sym_PIPE_PIPE] = ACTIONS(2840),
[anon_sym_LT] = ACTIONS(2840),
[anon_sym_GT] = ACTIONS(2840),
[anon_sym_GT_GT] = ACTIONS(2144),
[anon_sym_AMP_GT] = ACTIONS(2840),
[anon_sym_AMP_GT_GT] = ACTIONS(2144),
[anon_sym_LT_AMP] = ACTIONS(2144),
[anon_sym_GT_AMP] = ACTIONS(2144),
[anon_sym_DQUOTE] = ACTIONS(2144),
[sym_raw_string] = ACTIONS(2144),
[anon_sym_DOLLAR] = ACTIONS(2840),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2144),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2144),
[anon_sym_BQUOTE] = ACTIONS(2144),
[anon_sym_LT_LPAREN] = ACTIONS(2144),
[anon_sym_GT_LPAREN] = ACTIONS(2144),
[sym_word] = ACTIONS(2146),
[sym_comment] = ACTIONS(52),
},
[1129] = {
[sym_file_descriptor] = ACTIONS(1088),
[sym__concat] = ACTIONS(1088),
[sym_variable_name] = ACTIONS(1088),
[anon_sym_PIPE] = ACTIONS(1611),
[anon_sym_RPAREN] = ACTIONS(1088),
[anon_sym_PIPE_AMP] = ACTIONS(1088),
[anon_sym_AMP_AMP] = ACTIONS(1088),
[anon_sym_PIPE_PIPE] = ACTIONS(1611),
[anon_sym_LT] = ACTIONS(1611),
[anon_sym_GT] = ACTIONS(1611),
[anon_sym_GT_GT] = ACTIONS(1088),
[anon_sym_AMP_GT] = ACTIONS(1611),
[anon_sym_AMP_GT_GT] = ACTIONS(1088),
[anon_sym_LT_AMP] = ACTIONS(1088),
[anon_sym_GT_AMP] = ACTIONS(1088),
[anon_sym_DQUOTE] = ACTIONS(1088),
[sym_raw_string] = ACTIONS(1088),
[anon_sym_DOLLAR] = ACTIONS(1611),
[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_word] = ACTIONS(1090),
[sym_comment] = ACTIONS(52),
},
[1130] = {
[sym_file_descriptor] = ACTIONS(1109),
[sym__concat] = ACTIONS(1109),
[sym_variable_name] = ACTIONS(1109),
[anon_sym_PIPE] = ACTIONS(1613),
[anon_sym_RPAREN] = ACTIONS(1109),
[anon_sym_PIPE_AMP] = ACTIONS(1109),
[anon_sym_AMP_AMP] = ACTIONS(1109),
[anon_sym_PIPE_PIPE] = ACTIONS(1613),
[anon_sym_LT] = ACTIONS(1613),
[anon_sym_GT] = ACTIONS(1613),
[anon_sym_GT_GT] = ACTIONS(1109),
[anon_sym_AMP_GT] = ACTIONS(1613),
[anon_sym_AMP_GT_GT] = ACTIONS(1109),
[anon_sym_LT_AMP] = ACTIONS(1109),
[anon_sym_GT_AMP] = ACTIONS(1109),
[anon_sym_DQUOTE] = ACTIONS(1109),
[sym_raw_string] = ACTIONS(1109),
[anon_sym_DOLLAR] = ACTIONS(1613),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1109),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1109),
[anon_sym_BQUOTE] = ACTIONS(1109),
[anon_sym_LT_LPAREN] = ACTIONS(1109),
[anon_sym_GT_LPAREN] = ACTIONS(1109),
[sym_word] = ACTIONS(1111),
[sym_comment] = ACTIONS(52),
},
[1131] = {
[aux_sym_concatenation_repeat1] = STATE(1131),
[sym_file_descriptor] = ACTIONS(1109),
[sym__concat] = ACTIONS(2842),
[sym_variable_name] = ACTIONS(1109),
[anon_sym_PIPE] = ACTIONS(1613),
[anon_sym_RPAREN] = ACTIONS(1109),
[anon_sym_PIPE_AMP] = ACTIONS(1109),
[anon_sym_AMP_AMP] = ACTIONS(1109),
[anon_sym_PIPE_PIPE] = ACTIONS(1613),
[anon_sym_LT] = ACTIONS(1613),
[anon_sym_GT] = ACTIONS(1613),
[anon_sym_GT_GT] = ACTIONS(1109),
[anon_sym_AMP_GT] = ACTIONS(1613),
[anon_sym_AMP_GT_GT] = ACTIONS(1109),
[anon_sym_LT_AMP] = ACTIONS(1109),
[anon_sym_GT_AMP] = ACTIONS(1109),
[anon_sym_DQUOTE] = ACTIONS(1109),
[sym_raw_string] = ACTIONS(1109),
[anon_sym_DOLLAR] = ACTIONS(1613),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1109),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1109),
[anon_sym_BQUOTE] = ACTIONS(1109),
[anon_sym_LT_LPAREN] = ACTIONS(1109),
[anon_sym_GT_LPAREN] = ACTIONS(1109),
[sym_word] = ACTIONS(1111),
[sym_comment] = ACTIONS(52),
},
[1132] = {
[anon_sym_RBRACE] = ACTIONS(2845),
[anon_sym_LBRACK] = ACTIONS(2847),
[sym_comment] = ACTIONS(52),
},
[1133] = {
[anon_sym_RBRACE] = ACTIONS(2849),
[anon_sym_LBRACK] = ACTIONS(2851),
[sym_comment] = ACTIONS(52),
},
[1134] = {
[sym_file_descriptor] = ACTIONS(1124),
[sym__concat] = ACTIONS(1124),
[sym_variable_name] = ACTIONS(1124),
[anon_sym_PIPE] = ACTIONS(1626),
[anon_sym_RPAREN] = ACTIONS(1124),
[anon_sym_PIPE_AMP] = ACTIONS(1124),
[anon_sym_AMP_AMP] = ACTIONS(1124),
[anon_sym_PIPE_PIPE] = ACTIONS(1626),
[anon_sym_LT] = ACTIONS(1626),
[anon_sym_GT] = ACTIONS(1626),
[anon_sym_GT_GT] = ACTIONS(1124),
[anon_sym_AMP_GT] = ACTIONS(1626),
[anon_sym_AMP_GT_GT] = ACTIONS(1124),
[anon_sym_LT_AMP] = ACTIONS(1124),
[anon_sym_GT_AMP] = ACTIONS(1124),
[anon_sym_DQUOTE] = ACTIONS(1124),
[sym_raw_string] = ACTIONS(1124),
[anon_sym_DOLLAR] = ACTIONS(1626),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1124),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1124),
[anon_sym_BQUOTE] = ACTIONS(1124),
[anon_sym_LT_LPAREN] = ACTIONS(1124),
[anon_sym_GT_LPAREN] = ACTIONS(1124),
[sym_word] = ACTIONS(1126),
[sym_comment] = ACTIONS(52),
},
[1135] = {
[anon_sym_AT] = ACTIONS(2853),
[sym_comment] = ACTIONS(52),
},
[1136] = {
[sym_concatenation] = STATE(1334),
[sym_string] = STATE(1333),
[sym_simple_expansion] = STATE(1333),
[sym_expansion] = STATE(1333),
[sym_command_substitution] = STATE(1333),
[sym_process_substitution] = STATE(1333),
[anon_sym_RBRACE] = ACTIONS(2855),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(2857),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(2859),
[sym_comment] = ACTIONS(52),
},
[1137] = {
[sym_file_descriptor] = ACTIONS(1136),
[sym__concat] = ACTIONS(1136),
[sym_variable_name] = ACTIONS(1136),
[anon_sym_PIPE] = ACTIONS(1636),
[anon_sym_RPAREN] = ACTIONS(1136),
[anon_sym_PIPE_AMP] = ACTIONS(1136),
[anon_sym_AMP_AMP] = ACTIONS(1136),
[anon_sym_PIPE_PIPE] = ACTIONS(1636),
[anon_sym_LT] = ACTIONS(1636),
[anon_sym_GT] = ACTIONS(1636),
[anon_sym_GT_GT] = ACTIONS(1136),
[anon_sym_AMP_GT] = ACTIONS(1636),
[anon_sym_AMP_GT_GT] = ACTIONS(1136),
[anon_sym_LT_AMP] = ACTIONS(1136),
[anon_sym_GT_AMP] = ACTIONS(1136),
[anon_sym_DQUOTE] = ACTIONS(1136),
[sym_raw_string] = ACTIONS(1136),
[anon_sym_DOLLAR] = ACTIONS(1636),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1136),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1136),
[anon_sym_BQUOTE] = ACTIONS(1136),
[anon_sym_LT_LPAREN] = ACTIONS(1136),
[anon_sym_GT_LPAREN] = ACTIONS(1136),
[sym_word] = ACTIONS(1138),
[sym_comment] = ACTIONS(52),
},
[1138] = {
[anon_sym_AT] = ACTIONS(2861),
[sym_comment] = ACTIONS(52),
},
[1139] = {
[sym_concatenation] = STATE(1337),
[sym_string] = STATE(1336),
[sym_simple_expansion] = STATE(1336),
[sym_expansion] = STATE(1336),
[sym_command_substitution] = STATE(1336),
[sym_process_substitution] = STATE(1336),
[anon_sym_RBRACE] = ACTIONS(2849),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(2863),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(2865),
[sym_comment] = ACTIONS(52),
},
[1140] = {
[sym_file_descriptor] = ACTIONS(1238),
[sym__concat] = ACTIONS(1238),
[sym_variable_name] = ACTIONS(1238),
[anon_sym_PIPE] = ACTIONS(1644),
[anon_sym_RPAREN] = ACTIONS(1238),
[anon_sym_PIPE_AMP] = ACTIONS(1238),
[anon_sym_AMP_AMP] = ACTIONS(1238),
[anon_sym_PIPE_PIPE] = ACTIONS(1644),
[anon_sym_LT] = ACTIONS(1644),
[anon_sym_GT] = ACTIONS(1644),
[anon_sym_GT_GT] = ACTIONS(1238),
[anon_sym_AMP_GT] = ACTIONS(1644),
[anon_sym_AMP_GT_GT] = ACTIONS(1238),
[anon_sym_LT_AMP] = ACTIONS(1238),
[anon_sym_GT_AMP] = ACTIONS(1238),
[anon_sym_DQUOTE] = ACTIONS(1238),
[sym_raw_string] = ACTIONS(1238),
[anon_sym_DOLLAR] = ACTIONS(1644),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1238),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1238),
[anon_sym_BQUOTE] = ACTIONS(1238),
[anon_sym_LT_LPAREN] = ACTIONS(1238),
[anon_sym_GT_LPAREN] = ACTIONS(1238),
[sym_word] = ACTIONS(1240),
[sym_comment] = ACTIONS(52),
},
[1141] = {
[sym_file_descriptor] = ACTIONS(1296),
[sym__concat] = ACTIONS(1296),
[sym_variable_name] = ACTIONS(1296),
[anon_sym_PIPE] = ACTIONS(1646),
[anon_sym_RPAREN] = ACTIONS(1296),
[anon_sym_PIPE_AMP] = ACTIONS(1296),
[anon_sym_AMP_AMP] = ACTIONS(1296),
[anon_sym_PIPE_PIPE] = ACTIONS(1646),
[anon_sym_LT] = ACTIONS(1646),
[anon_sym_GT] = ACTIONS(1646),
[anon_sym_GT_GT] = ACTIONS(1296),
[anon_sym_AMP_GT] = ACTIONS(1646),
[anon_sym_AMP_GT_GT] = ACTIONS(1296),
[anon_sym_LT_AMP] = ACTIONS(1296),
[anon_sym_GT_AMP] = ACTIONS(1296),
[anon_sym_DQUOTE] = ACTIONS(1296),
[sym_raw_string] = ACTIONS(1296),
[anon_sym_DOLLAR] = ACTIONS(1646),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1296),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1296),
[anon_sym_BQUOTE] = ACTIONS(1296),
[anon_sym_LT_LPAREN] = ACTIONS(1296),
[anon_sym_GT_LPAREN] = ACTIONS(1296),
[sym_word] = ACTIONS(1298),
[sym_comment] = ACTIONS(52),
},
[1142] = {
[sym_do_group] = STATE(1338),
[anon_sym_do] = ACTIONS(1170),
[sym_comment] = ACTIONS(52),
},
[1143] = {
[anon_sym_PIPE] = ACTIONS(2867),
[anon_sym_RPAREN] = ACTIONS(2869),
[anon_sym_PIPE_AMP] = ACTIONS(2869),
[anon_sym_AMP_AMP] = ACTIONS(2869),
[anon_sym_PIPE_PIPE] = ACTIONS(2869),
[anon_sym_BQUOTE] = ACTIONS(2869),
[sym_comment] = ACTIONS(52),
},
[1144] = {
[anon_sym_PIPE] = ACTIONS(2871),
[anon_sym_RPAREN] = ACTIONS(2873),
[anon_sym_PIPE_AMP] = ACTIONS(2873),
[anon_sym_AMP_AMP] = ACTIONS(2873),
[anon_sym_PIPE_PIPE] = ACTIONS(2873),
[anon_sym_BQUOTE] = ACTIONS(2873),
[sym_comment] = ACTIONS(52),
},
[1145] = {
[anon_sym_fi] = ACTIONS(2875),
[sym_comment] = ACTIONS(52),
},
[1146] = {
[sym_elif_clause] = STATE(467),
[sym_else_clause] = STATE(1340),
[aux_sym_if_statement_repeat1] = STATE(779),
[anon_sym_fi] = ACTIONS(2875),
[anon_sym_elif] = ACTIONS(1538),
[anon_sym_else] = ACTIONS(1540),
[sym_comment] = ACTIONS(52),
},
[1147] = {
[anon_sym_PIPE] = ACTIONS(2877),
[anon_sym_RPAREN] = ACTIONS(2879),
[anon_sym_PIPE_AMP] = ACTIONS(2879),
[anon_sym_AMP_AMP] = ACTIONS(2879),
[anon_sym_PIPE_PIPE] = ACTIONS(2879),
[anon_sym_BQUOTE] = ACTIONS(2879),
[sym_comment] = ACTIONS(52),
},
[1148] = {
[sym_case_item] = STATE(782),
[sym_concatenation] = STATE(783),
[sym_string] = STATE(781),
[sym_simple_expansion] = STATE(781),
[sym_expansion] = STATE(781),
[sym_command_substitution] = STATE(781),
[sym_process_substitution] = STATE(781),
[aux_sym_case_statement_repeat1] = STATE(1070),
[anon_sym_esac] = ACTIONS(2881),
[anon_sym_DQUOTE] = ACTIONS(284),
[sym_raw_string] = ACTIONS(1544),
[anon_sym_DOLLAR] = ACTIONS(288),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(290),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(292),
[anon_sym_BQUOTE] = ACTIONS(294),
[anon_sym_LT_LPAREN] = ACTIONS(296),
[anon_sym_GT_LPAREN] = ACTIONS(296),
[sym_word] = ACTIONS(1546),
[sym_comment] = ACTIONS(52),
},
[1149] = {
[sym_case_item] = STATE(782),
[sym_concatenation] = STATE(783),
[sym_string] = STATE(781),
[sym_simple_expansion] = STATE(781),
[sym_expansion] = STATE(781),
[sym_command_substitution] = STATE(781),
[sym_process_substitution] = STATE(781),
[aux_sym_case_statement_repeat1] = STATE(1342),
[anon_sym_esac] = ACTIONS(2881),
[anon_sym_DQUOTE] = ACTIONS(284),
[sym_raw_string] = ACTIONS(1544),
[anon_sym_DOLLAR] = ACTIONS(288),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(290),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(292),
[anon_sym_BQUOTE] = ACTIONS(294),
[anon_sym_LT_LPAREN] = ACTIONS(296),
[anon_sym_GT_LPAREN] = ACTIONS(296),
[sym_word] = ACTIONS(1546),
[sym_comment] = ACTIONS(52),
},
[1150] = {
[sym_file_redirect] = STATE(1343),
[sym_file_descriptor] = ACTIONS(1228),
[anon_sym_PIPE] = ACTIONS(2883),
[anon_sym_RPAREN] = ACTIONS(2885),
[anon_sym_PIPE_AMP] = ACTIONS(2885),
[anon_sym_AMP_AMP] = ACTIONS(2885),
[anon_sym_PIPE_PIPE] = ACTIONS(2885),
[anon_sym_LT] = ACTIONS(1234),
[anon_sym_GT] = ACTIONS(1234),
[anon_sym_GT_GT] = ACTIONS(1236),
[anon_sym_AMP_GT] = ACTIONS(1234),
[anon_sym_AMP_GT_GT] = ACTIONS(1236),
[anon_sym_LT_AMP] = ACTIONS(1236),
[anon_sym_GT_AMP] = ACTIONS(1236),
[sym_comment] = ACTIONS(52),
},
[1151] = {
[anon_sym_PIPE] = ACTIONS(2887),
[anon_sym_RPAREN] = ACTIONS(2889),
[anon_sym_PIPE_AMP] = ACTIONS(2889),
[anon_sym_AMP_AMP] = ACTIONS(2889),
[anon_sym_PIPE_PIPE] = ACTIONS(2889),
[anon_sym_BQUOTE] = ACTIONS(2889),
[sym_comment] = ACTIONS(52),
},
[1152] = {
[sym_variable_name] = ACTIONS(1442),
[anon_sym_PIPE] = ACTIONS(2399),
[anon_sym_RPAREN] = ACTIONS(1442),
[anon_sym_PIPE_AMP] = ACTIONS(1442),
[anon_sym_AMP_AMP] = ACTIONS(1442),
[anon_sym_PIPE_PIPE] = ACTIONS(1442),
[anon_sym_BQUOTE] = ACTIONS(1442),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(2399),
},
[1153] = {
[sym_concatenation] = STATE(430),
[sym_string] = STATE(424),
[sym_simple_expansion] = STATE(424),
[sym_expansion] = STATE(424),
[sym_command_substitution] = STATE(424),
[sym_process_substitution] = STATE(424),
[aux_sym_for_statement_repeat1] = STATE(734),
[anon_sym_RPAREN] = ACTIONS(2891),
[anon_sym_DQUOTE] = ACTIONS(761),
[sym_raw_string] = ACTIONS(763),
[anon_sym_DOLLAR] = ACTIONS(765),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(767),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(769),
[anon_sym_BQUOTE] = ACTIONS(771),
[anon_sym_LT_LPAREN] = ACTIONS(773),
[anon_sym_GT_LPAREN] = ACTIONS(773),
[sym_word] = ACTIONS(775),
[sym_comment] = ACTIONS(52),
},
[1154] = {
[sym__concat] = ACTIONS(446),
[sym_variable_name] = ACTIONS(446),
[anon_sym_PIPE] = ACTIONS(883),
[anon_sym_RPAREN] = ACTIONS(446),
[anon_sym_PIPE_AMP] = ACTIONS(446),
[anon_sym_AMP_AMP] = ACTIONS(446),
[anon_sym_PIPE_PIPE] = ACTIONS(446),
[anon_sym_BQUOTE] = ACTIONS(446),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(883),
},
[1155] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(298),
[anon_sym_DQUOTE] = ACTIONS(2893),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[1156] = {
[sym_string] = STATE(1346),
[sym_simple_expansion] = STATE(1346),
[sym_expansion] = STATE(1346),
[sym_command_substitution] = STATE(1346),
[sym_process_substitution] = STATE(1346),
[anon_sym_DQUOTE] = ACTIONS(1814),
[sym_raw_string] = ACTIONS(2895),
[anon_sym_DOLLAR] = ACTIONS(1818),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1820),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1822),
[anon_sym_BQUOTE] = ACTIONS(1824),
[anon_sym_LT_LPAREN] = ACTIONS(1826),
[anon_sym_GT_LPAREN] = ACTIONS(1826),
[sym_word] = ACTIONS(2897),
[sym_comment] = ACTIONS(52),
},
[1157] = {
[aux_sym_concatenation_repeat1] = STATE(1347),
[sym__concat] = ACTIONS(2465),
[sym_variable_name] = ACTIONS(470),
[anon_sym_PIPE] = ACTIONS(891),
[anon_sym_RPAREN] = ACTIONS(470),
[anon_sym_PIPE_AMP] = ACTIONS(470),
[anon_sym_AMP_AMP] = ACTIONS(470),
[anon_sym_PIPE_PIPE] = ACTIONS(470),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(891),
},
[1158] = {
[sym__concat] = ACTIONS(474),
[sym_variable_name] = ACTIONS(474),
[anon_sym_PIPE] = ACTIONS(486),
[anon_sym_RPAREN] = ACTIONS(474),
[anon_sym_PIPE_AMP] = ACTIONS(474),
[anon_sym_AMP_AMP] = ACTIONS(474),
[anon_sym_PIPE_PIPE] = ACTIONS(474),
[anon_sym_BQUOTE] = ACTIONS(474),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(486),
},
[1159] = {
[sym__concat] = ACTIONS(478),
[sym_variable_name] = ACTIONS(478),
[anon_sym_PIPE] = ACTIONS(893),
[anon_sym_RPAREN] = ACTIONS(478),
[anon_sym_PIPE_AMP] = ACTIONS(478),
[anon_sym_AMP_AMP] = ACTIONS(478),
[anon_sym_PIPE_PIPE] = ACTIONS(478),
[anon_sym_BQUOTE] = ACTIONS(478),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(893),
},
[1160] = {
[sym__concat] = ACTIONS(482),
[sym_variable_name] = ACTIONS(482),
[anon_sym_PIPE] = ACTIONS(895),
[anon_sym_RPAREN] = ACTIONS(482),
[anon_sym_PIPE_AMP] = ACTIONS(482),
[anon_sym_AMP_AMP] = ACTIONS(482),
[anon_sym_PIPE_PIPE] = ACTIONS(482),
[anon_sym_BQUOTE] = ACTIONS(482),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(895),
},
[1161] = {
[sym_special_variable_name] = STATE(1349),
[anon_sym_RBRACE] = ACTIONS(474),
[anon_sym_LBRACK] = ACTIONS(474),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_EQ] = ACTIONS(474),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(174),
[anon_sym_AT] = ACTIONS(174),
[anon_sym_COLON] = ACTIONS(486),
[anon_sym_COLON_QMARK] = ACTIONS(474),
[anon_sym_COLON_DASH] = ACTIONS(474),
[anon_sym_PERCENT] = ACTIONS(474),
[anon_sym_SLASH] = ACTIONS(474),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(2899),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[1162] = {
[anon_sym_RBRACE] = ACTIONS(2901),
[anon_sym_LBRACK] = ACTIONS(2903),
[anon_sym_EQ] = ACTIONS(2905),
[anon_sym_COLON] = ACTIONS(2907),
[anon_sym_COLON_QMARK] = ACTIONS(2905),
[anon_sym_COLON_DASH] = ACTIONS(2905),
[anon_sym_PERCENT] = ACTIONS(2905),
[anon_sym_SLASH] = ACTIONS(2905),
[sym_comment] = ACTIONS(52),
},
[1163] = {
[anon_sym_RBRACE] = ACTIONS(2909),
[anon_sym_LBRACK] = ACTIONS(2911),
[anon_sym_EQ] = ACTIONS(2913),
[anon_sym_COLON] = ACTIONS(2915),
[anon_sym_COLON_QMARK] = ACTIONS(2913),
[anon_sym_COLON_DASH] = ACTIONS(2913),
[anon_sym_PERCENT] = ACTIONS(2913),
[anon_sym_SLASH] = ACTIONS(2913),
[sym_comment] = ACTIONS(52),
},
[1164] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2917),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[1165] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2917),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[1166] = {
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(588),
[anon_sym_BQUOTE] = ACTIONS(2917),
[sym_comment] = ACTIONS(52),
},
[1167] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(600),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(2917),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[1168] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2919),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[1169] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2919),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[1170] = {
[anon_sym_RBRACK] = ACTIONS(2921),
[sym_comment] = ACTIONS(52),
},
[1171] = {
[anon_sym_RBRACK] = ACTIONS(2923),
[sym_comment] = ACTIONS(52),
},
[1172] = {
[anon_sym_RBRACE] = ACTIONS(2925),
[sym_comment] = ACTIONS(52),
},
[1173] = {
[sym_file_descriptor] = ACTIONS(2389),
[sym__concat] = ACTIONS(2389),
[anon_sym_PIPE] = ACTIONS(2773),
[anon_sym_RPAREN] = ACTIONS(2389),
[anon_sym_PIPE_AMP] = ACTIONS(2389),
[anon_sym_AMP_AMP] = ACTIONS(2389),
[anon_sym_PIPE_PIPE] = ACTIONS(2773),
[anon_sym_LT] = ACTIONS(2773),
[anon_sym_GT] = ACTIONS(2773),
[anon_sym_GT_GT] = ACTIONS(2389),
[anon_sym_AMP_GT] = ACTIONS(2773),
[anon_sym_AMP_GT_GT] = ACTIONS(2389),
[anon_sym_LT_AMP] = ACTIONS(2389),
[anon_sym_GT_AMP] = ACTIONS(2389),
[anon_sym_LT_LT] = ACTIONS(2773),
[anon_sym_LT_LT_DASH] = ACTIONS(2389),
[anon_sym_DQUOTE] = ACTIONS(2389),
[sym_raw_string] = ACTIONS(2389),
[anon_sym_DOLLAR] = ACTIONS(2773),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2389),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2389),
[anon_sym_BQUOTE] = ACTIONS(2389),
[anon_sym_LT_LPAREN] = ACTIONS(2389),
[anon_sym_GT_LPAREN] = ACTIONS(2389),
[sym_word] = ACTIONS(2391),
[sym_comment] = ACTIONS(52),
},
[1174] = {
[anon_sym_RBRACE] = ACTIONS(2927),
[sym_comment] = ACTIONS(52),
},
[1175] = {
[sym_file_descriptor] = ACTIONS(2395),
[sym__concat] = ACTIONS(2395),
[anon_sym_PIPE] = ACTIONS(2777),
[anon_sym_RPAREN] = ACTIONS(2395),
[anon_sym_PIPE_AMP] = ACTIONS(2395),
[anon_sym_AMP_AMP] = ACTIONS(2395),
[anon_sym_PIPE_PIPE] = ACTIONS(2777),
[anon_sym_LT] = ACTIONS(2777),
[anon_sym_GT] = ACTIONS(2777),
[anon_sym_GT_GT] = ACTIONS(2395),
[anon_sym_AMP_GT] = ACTIONS(2777),
[anon_sym_AMP_GT_GT] = ACTIONS(2395),
[anon_sym_LT_AMP] = ACTIONS(2395),
[anon_sym_GT_AMP] = ACTIONS(2395),
[anon_sym_LT_LT] = ACTIONS(2777),
[anon_sym_LT_LT_DASH] = ACTIONS(2395),
[anon_sym_DQUOTE] = ACTIONS(2395),
[sym_raw_string] = ACTIONS(2395),
[anon_sym_DOLLAR] = ACTIONS(2777),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2395),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2395),
[anon_sym_BQUOTE] = ACTIONS(2395),
[anon_sym_LT_LPAREN] = ACTIONS(2395),
[anon_sym_GT_LPAREN] = ACTIONS(2395),
[sym_word] = ACTIONS(2397),
[sym_comment] = ACTIONS(52),
},
[1176] = {
[anon_sym_PIPE] = ACTIONS(2883),
[anon_sym_RPAREN] = ACTIONS(2885),
[anon_sym_PIPE_AMP] = ACTIONS(2885),
[anon_sym_AMP_AMP] = ACTIONS(2885),
[anon_sym_PIPE_PIPE] = ACTIONS(2885),
[anon_sym_BQUOTE] = ACTIONS(2885),
[sym_comment] = ACTIONS(52),
},
[1177] = {
[aux_sym_concatenation_repeat1] = STATE(1182),
[sym__concat] = ACTIONS(2497),
[anon_sym_PIPE] = ACTIONS(737),
[anon_sym_RPAREN] = ACTIONS(735),
[anon_sym_PIPE_AMP] = ACTIONS(735),
[anon_sym_AMP_AMP] = ACTIONS(735),
[anon_sym_PIPE_PIPE] = ACTIONS(735),
[sym_comment] = ACTIONS(52),
},
[1178] = {
[anon_sym_PIPE] = ACTIONS(737),
[anon_sym_RPAREN] = ACTIONS(735),
[anon_sym_PIPE_AMP] = ACTIONS(735),
[anon_sym_AMP_AMP] = ACTIONS(735),
[anon_sym_PIPE_PIPE] = ACTIONS(735),
[anon_sym_BQUOTE] = ACTIONS(735),
[sym_comment] = ACTIONS(52),
},
[1179] = {
[sym__concat] = ACTIONS(446),
[anon_sym_PIPE] = ACTIONS(883),
[anon_sym_RPAREN] = ACTIONS(446),
[anon_sym_PIPE_AMP] = ACTIONS(446),
[anon_sym_AMP_AMP] = ACTIONS(446),
[anon_sym_PIPE_PIPE] = ACTIONS(446),
[anon_sym_BQUOTE] = ACTIONS(446),
[sym_comment] = ACTIONS(52),
},
[1180] = {
[sym_simple_expansion] = STATE(94),
[sym_expansion] = STATE(94),
[sym_command_substitution] = STATE(94),
[aux_sym_string_repeat1] = STATE(298),
[anon_sym_DQUOTE] = ACTIONS(2929),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(152),
[anon_sym_DOLLAR] = ACTIONS(154),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(156),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(158),
[anon_sym_BQUOTE] = ACTIONS(160),
[sym_comment] = ACTIONS(130),
},
[1181] = {
[sym_string] = STATE(1363),
[sym_simple_expansion] = STATE(1363),
[sym_expansion] = STATE(1363),
[sym_command_substitution] = STATE(1363),
[sym_process_substitution] = STATE(1363),
[anon_sym_DQUOTE] = ACTIONS(1884),
[sym_raw_string] = ACTIONS(2931),
[anon_sym_DOLLAR] = ACTIONS(1888),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1890),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1892),
[anon_sym_BQUOTE] = ACTIONS(1894),
[anon_sym_LT_LPAREN] = ACTIONS(1896),
[anon_sym_GT_LPAREN] = ACTIONS(1896),
[sym_word] = ACTIONS(2933),
[sym_comment] = ACTIONS(52),
},
[1182] = {
[aux_sym_concatenation_repeat1] = STATE(1364),
[sym__concat] = ACTIONS(2497),
[anon_sym_PIPE] = ACTIONS(891),
[anon_sym_RPAREN] = ACTIONS(470),
[anon_sym_PIPE_AMP] = ACTIONS(470),
[anon_sym_AMP_AMP] = ACTIONS(470),
[anon_sym_PIPE_PIPE] = ACTIONS(470),
[sym_comment] = ACTIONS(52),
},
[1183] = {
[sym__concat] = ACTIONS(474),
[anon_sym_PIPE] = ACTIONS(486),
[anon_sym_RPAREN] = ACTIONS(474),
[anon_sym_PIPE_AMP] = ACTIONS(474),
[anon_sym_AMP_AMP] = ACTIONS(474),
[anon_sym_PIPE_PIPE] = ACTIONS(474),
[anon_sym_BQUOTE] = ACTIONS(474),
[sym_comment] = ACTIONS(52),
},
[1184] = {
[sym__concat] = ACTIONS(478),
[anon_sym_PIPE] = ACTIONS(893),
[anon_sym_RPAREN] = ACTIONS(478),
[anon_sym_PIPE_AMP] = ACTIONS(478),
[anon_sym_AMP_AMP] = ACTIONS(478),
[anon_sym_PIPE_PIPE] = ACTIONS(478),
[anon_sym_BQUOTE] = ACTIONS(478),
[sym_comment] = ACTIONS(52),
},
[1185] = {
[sym__concat] = ACTIONS(482),
[anon_sym_PIPE] = ACTIONS(895),
[anon_sym_RPAREN] = ACTIONS(482),
[anon_sym_PIPE_AMP] = ACTIONS(482),
[anon_sym_AMP_AMP] = ACTIONS(482),
[anon_sym_PIPE_PIPE] = ACTIONS(482),
[anon_sym_BQUOTE] = ACTIONS(482),
[sym_comment] = ACTIONS(52),
},
[1186] = {
[sym_special_variable_name] = STATE(1366),
[anon_sym_RBRACE] = ACTIONS(474),
[anon_sym_LBRACK] = ACTIONS(474),
[anon_sym_DASH] = ACTIONS(174),
[anon_sym_EQ] = ACTIONS(474),
[anon_sym_DOLLAR] = ACTIONS(174),
[anon_sym_POUND] = ACTIONS(174),
[anon_sym_AT] = ACTIONS(174),
[anon_sym_COLON] = ACTIONS(486),
[anon_sym_COLON_QMARK] = ACTIONS(474),
[anon_sym_COLON_DASH] = ACTIONS(474),
[anon_sym_PERCENT] = ACTIONS(474),
[anon_sym_SLASH] = ACTIONS(474),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(2935),
[anon_sym_STAR] = ACTIONS(174),
[anon_sym_QMARK] = ACTIONS(174),
[anon_sym_BANG] = ACTIONS(174),
[anon_sym_0] = ACTIONS(180),
[anon_sym__] = ACTIONS(180),
},
[1187] = {
[anon_sym_RBRACE] = ACTIONS(2937),
[anon_sym_LBRACK] = ACTIONS(2939),
[anon_sym_EQ] = ACTIONS(2941),
[anon_sym_COLON] = ACTIONS(2943),
[anon_sym_COLON_QMARK] = ACTIONS(2941),
[anon_sym_COLON_DASH] = ACTIONS(2941),
[anon_sym_PERCENT] = ACTIONS(2941),
[anon_sym_SLASH] = ACTIONS(2941),
[sym_comment] = ACTIONS(52),
},
[1188] = {
[anon_sym_RBRACE] = ACTIONS(2945),
[anon_sym_LBRACK] = ACTIONS(2947),
[anon_sym_EQ] = ACTIONS(2949),
[anon_sym_COLON] = ACTIONS(2951),
[anon_sym_COLON_QMARK] = ACTIONS(2949),
[anon_sym_COLON_DASH] = ACTIONS(2949),
[anon_sym_PERCENT] = ACTIONS(2949),
[anon_sym_SLASH] = ACTIONS(2949),
[sym_comment] = ACTIONS(52),
},
[1189] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2953),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[1190] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2953),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[1191] = {
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(588),
[anon_sym_BQUOTE] = ACTIONS(2953),
[sym_comment] = ACTIONS(52),
},
[1192] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(584),
[anon_sym_PIPE_AMP] = ACTIONS(586),
[anon_sym_AMP_AMP] = ACTIONS(588),
[anon_sym_PIPE_PIPE] = ACTIONS(600),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(2953),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[1193] = {
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2955),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(552),
[sym_comment] = ACTIONS(52),
},
[1194] = {
[sym_file_descriptor] = ACTIONS(268),
[sym_variable_name] = ACTIONS(268),
[anon_sym_PIPE] = ACTIONS(546),
[anon_sym_RPAREN] = ACTIONS(2955),
[anon_sym_PIPE_AMP] = ACTIONS(550),
[anon_sym_AMP_AMP] = ACTIONS(552),
[anon_sym_PIPE_PIPE] = ACTIONS(572),
[anon_sym_LT] = ACTIONS(272),
[anon_sym_GT] = ACTIONS(272),
[anon_sym_GT_GT] = ACTIONS(268),
[anon_sym_AMP_GT] = ACTIONS(272),
[anon_sym_AMP_GT_GT] = ACTIONS(268),
[anon_sym_LT_AMP] = ACTIONS(268),
[anon_sym_GT_AMP] = ACTIONS(268),
[anon_sym_DQUOTE] = ACTIONS(268),
[sym_raw_string] = ACTIONS(268),
[anon_sym_DOLLAR] = ACTIONS(272),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(268),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(268),
[anon_sym_BQUOTE] = ACTIONS(268),
[anon_sym_LT_LPAREN] = ACTIONS(268),
[anon_sym_GT_LPAREN] = ACTIONS(268),
[sym_word] = ACTIONS(270),
[sym_comment] = ACTIONS(52),
},
[1195] = {
[sym_file_descriptor] = ACTIONS(1088),
[sym__concat] = ACTIONS(1088),
[anon_sym_PIPE] = ACTIONS(1611),
[anon_sym_RPAREN] = ACTIONS(1088),
[anon_sym_PIPE_AMP] = ACTIONS(1088),
[anon_sym_AMP_AMP] = ACTIONS(1088),
[anon_sym_PIPE_PIPE] = ACTIONS(1088),
[anon_sym_LT] = ACTIONS(1611),
[anon_sym_GT] = ACTIONS(1611),
[anon_sym_GT_GT] = ACTIONS(1088),
[anon_sym_AMP_GT] = ACTIONS(1611),
[anon_sym_AMP_GT_GT] = ACTIONS(1088),
[anon_sym_LT_AMP] = ACTIONS(1088),
[anon_sym_GT_AMP] = ACTIONS(1088),
[anon_sym_LT_LT] = ACTIONS(1611),
[anon_sym_LT_LT_DASH] = ACTIONS(1088),
[anon_sym_BQUOTE] = ACTIONS(1088),
[sym_comment] = ACTIONS(52),
},
[1196] = {
[sym_file_descriptor] = ACTIONS(1109),
[sym__concat] = ACTIONS(1109),
[anon_sym_PIPE] = ACTIONS(1613),
[anon_sym_RPAREN] = ACTIONS(1109),
[anon_sym_PIPE_AMP] = ACTIONS(1109),
[anon_sym_AMP_AMP] = ACTIONS(1109),
[anon_sym_PIPE_PIPE] = ACTIONS(1109),
[anon_sym_LT] = ACTIONS(1613),
[anon_sym_GT] = ACTIONS(1613),
[anon_sym_GT_GT] = ACTIONS(1109),
[anon_sym_AMP_GT] = ACTIONS(1613),
[anon_sym_AMP_GT_GT] = ACTIONS(1109),
[anon_sym_LT_AMP] = ACTIONS(1109),
[anon_sym_GT_AMP] = ACTIONS(1109),
[anon_sym_LT_LT] = ACTIONS(1613),
[anon_sym_LT_LT_DASH] = ACTIONS(1109),
[anon_sym_BQUOTE] = ACTIONS(1109),
[sym_comment] = ACTIONS(52),
},
[1197] = {
[aux_sym_concatenation_repeat1] = STATE(1197),
[sym_file_descriptor] = ACTIONS(1109),
[sym__concat] = ACTIONS(2957),
[anon_sym_PIPE] = ACTIONS(1613),
[anon_sym_RPAREN] = ACTIONS(1109),
[anon_sym_PIPE_AMP] = ACTIONS(1109),
[anon_sym_AMP_AMP] = ACTIONS(1109),
[anon_sym_PIPE_PIPE] = ACTIONS(1109),
[anon_sym_LT] = ACTIONS(1613),
[anon_sym_GT] = ACTIONS(1613),
[anon_sym_GT_GT] = ACTIONS(1109),
[anon_sym_AMP_GT] = ACTIONS(1613),
[anon_sym_AMP_GT_GT] = ACTIONS(1109),
[anon_sym_LT_AMP] = ACTIONS(1109),
[anon_sym_GT_AMP] = ACTIONS(1109),
[anon_sym_LT_LT] = ACTIONS(1613),
[anon_sym_LT_LT_DASH] = ACTIONS(1109),
[sym_comment] = ACTIONS(52),
},
[1198] = {
[anon_sym_RBRACE] = ACTIONS(2960),
[anon_sym_LBRACK] = ACTIONS(2962),
[sym_comment] = ACTIONS(52),
},
[1199] = {
[anon_sym_RBRACE] = ACTIONS(2964),
[anon_sym_LBRACK] = ACTIONS(2966),
[sym_comment] = ACTIONS(52),
},
[1200] = {
[sym_file_descriptor] = ACTIONS(1124),
[sym__concat] = ACTIONS(1124),
[anon_sym_PIPE] = ACTIONS(1626),
[anon_sym_RPAREN] = ACTIONS(1124),
[anon_sym_PIPE_AMP] = ACTIONS(1124),
[anon_sym_AMP_AMP] = ACTIONS(1124),
[anon_sym_PIPE_PIPE] = ACTIONS(1124),
[anon_sym_LT] = ACTIONS(1626),
[anon_sym_GT] = ACTIONS(1626),
[anon_sym_GT_GT] = ACTIONS(1124),
[anon_sym_AMP_GT] = ACTIONS(1626),
[anon_sym_AMP_GT_GT] = ACTIONS(1124),
[anon_sym_LT_AMP] = ACTIONS(1124),
[anon_sym_GT_AMP] = ACTIONS(1124),
[anon_sym_LT_LT] = ACTIONS(1626),
[anon_sym_LT_LT_DASH] = ACTIONS(1124),
[anon_sym_BQUOTE] = ACTIONS(1124),
[sym_comment] = ACTIONS(52),
},
[1201] = {
[anon_sym_AT] = ACTIONS(2968),
[sym_comment] = ACTIONS(52),
},
[1202] = {
[sym_concatenation] = STATE(1382),
[sym_string] = STATE(1381),
[sym_simple_expansion] = STATE(1381),
[sym_expansion] = STATE(1381),
[sym_command_substitution] = STATE(1381),
[sym_process_substitution] = STATE(1381),
[anon_sym_RBRACE] = ACTIONS(2970),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(2972),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(2974),
[sym_comment] = ACTIONS(52),
},
[1203] = {
[sym_file_descriptor] = ACTIONS(1136),
[sym__concat] = ACTIONS(1136),
[anon_sym_PIPE] = ACTIONS(1636),
[anon_sym_RPAREN] = ACTIONS(1136),
[anon_sym_PIPE_AMP] = ACTIONS(1136),
[anon_sym_AMP_AMP] = ACTIONS(1136),
[anon_sym_PIPE_PIPE] = ACTIONS(1136),
[anon_sym_LT] = ACTIONS(1636),
[anon_sym_GT] = ACTIONS(1636),
[anon_sym_GT_GT] = ACTIONS(1136),
[anon_sym_AMP_GT] = ACTIONS(1636),
[anon_sym_AMP_GT_GT] = ACTIONS(1136),
[anon_sym_LT_AMP] = ACTIONS(1136),
[anon_sym_GT_AMP] = ACTIONS(1136),
[anon_sym_LT_LT] = ACTIONS(1636),
[anon_sym_LT_LT_DASH] = ACTIONS(1136),
[anon_sym_BQUOTE] = ACTIONS(1136),
[sym_comment] = ACTIONS(52),
},
[1204] = {
[anon_sym_AT] = ACTIONS(2976),
[sym_comment] = ACTIONS(52),
},
[1205] = {
[sym_concatenation] = STATE(1385),
[sym_string] = STATE(1384),
[sym_simple_expansion] = STATE(1384),
[sym_expansion] = STATE(1384),
[sym_command_substitution] = STATE(1384),
[sym_process_substitution] = STATE(1384),
[anon_sym_RBRACE] = ACTIONS(2964),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(2978),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(2980),
[sym_comment] = ACTIONS(52),
},
[1206] = {
[sym_file_descriptor] = ACTIONS(1238),
[sym__concat] = ACTIONS(1238),
[anon_sym_PIPE] = ACTIONS(1644),
[anon_sym_RPAREN] = ACTIONS(1238),
[anon_sym_PIPE_AMP] = ACTIONS(1238),
[anon_sym_AMP_AMP] = ACTIONS(1238),
[anon_sym_PIPE_PIPE] = ACTIONS(1238),
[anon_sym_LT] = ACTIONS(1644),
[anon_sym_GT] = ACTIONS(1644),
[anon_sym_GT_GT] = ACTIONS(1238),
[anon_sym_AMP_GT] = ACTIONS(1644),
[anon_sym_AMP_GT_GT] = ACTIONS(1238),
[anon_sym_LT_AMP] = ACTIONS(1238),
[anon_sym_GT_AMP] = ACTIONS(1238),
[anon_sym_LT_LT] = ACTIONS(1644),
[anon_sym_LT_LT_DASH] = ACTIONS(1238),
[anon_sym_BQUOTE] = ACTIONS(1238),
[sym_comment] = ACTIONS(52),
},
[1207] = {
[sym_file_descriptor] = ACTIONS(1296),
[sym__concat] = ACTIONS(1296),
[anon_sym_PIPE] = ACTIONS(1646),
[anon_sym_RPAREN] = ACTIONS(1296),
[anon_sym_PIPE_AMP] = ACTIONS(1296),
[anon_sym_AMP_AMP] = ACTIONS(1296),
[anon_sym_PIPE_PIPE] = ACTIONS(1296),
[anon_sym_LT] = ACTIONS(1646),
[anon_sym_GT] = ACTIONS(1646),
[anon_sym_GT_GT] = ACTIONS(1296),
[anon_sym_AMP_GT] = ACTIONS(1646),
[anon_sym_AMP_GT_GT] = ACTIONS(1296),
[anon_sym_LT_AMP] = ACTIONS(1296),
[anon_sym_GT_AMP] = ACTIONS(1296),
[anon_sym_LT_LT] = ACTIONS(1646),
[anon_sym_LT_LT_DASH] = ACTIONS(1296),
[anon_sym_BQUOTE] = ACTIONS(1296),
[sym_comment] = ACTIONS(52),
},
[1208] = {
[sym_file_descriptor] = ACTIONS(2620),
[anon_sym_PIPE] = ACTIONS(2982),
[anon_sym_RPAREN] = ACTIONS(2620),
[anon_sym_PIPE_AMP] = ACTIONS(2620),
[anon_sym_AMP_AMP] = ACTIONS(2620),
[anon_sym_PIPE_PIPE] = ACTIONS(2620),
[anon_sym_LT] = ACTIONS(2982),
[anon_sym_GT] = ACTIONS(2982),
[anon_sym_GT_GT] = ACTIONS(2620),
[anon_sym_AMP_GT] = ACTIONS(2982),
[anon_sym_AMP_GT_GT] = ACTIONS(2620),
[anon_sym_LT_AMP] = ACTIONS(2620),
[anon_sym_GT_AMP] = ACTIONS(2620),
[anon_sym_LT_LT] = ACTIONS(2982),
[anon_sym_LT_LT_DASH] = ACTIONS(2620),
[anon_sym_BQUOTE] = ACTIONS(2620),
[sym_comment] = ACTIONS(52),
},
[1209] = {
[aux_sym_concatenation_repeat1] = STATE(1209),
[sym_file_descriptor] = ACTIONS(1109),
[sym__concat] = ACTIONS(2842),
[sym_variable_name] = ACTIONS(1109),
[anon_sym_PIPE] = ACTIONS(1613),
[anon_sym_PIPE_AMP] = ACTIONS(1109),
[anon_sym_AMP_AMP] = ACTIONS(1109),
[anon_sym_PIPE_PIPE] = ACTIONS(1613),
[anon_sym_LT] = ACTIONS(1613),
[anon_sym_GT] = ACTIONS(1613),
[anon_sym_GT_GT] = ACTIONS(1109),
[anon_sym_AMP_GT] = ACTIONS(1613),
[anon_sym_AMP_GT_GT] = ACTIONS(1109),
[anon_sym_LT_AMP] = ACTIONS(1109),
[anon_sym_GT_AMP] = ACTIONS(1109),
[anon_sym_DQUOTE] = ACTIONS(1109),
[sym_raw_string] = ACTIONS(1109),
[anon_sym_DOLLAR] = ACTIONS(1613),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1109),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1109),
[anon_sym_BQUOTE] = ACTIONS(1109),
[anon_sym_LT_LPAREN] = ACTIONS(1109),
[anon_sym_GT_LPAREN] = ACTIONS(1109),
[sym_word] = ACTIONS(1111),
[sym_comment] = ACTIONS(52),
},
[1210] = {
[sym_file_redirect] = STATE(1343),
[sym_file_descriptor] = ACTIONS(1282),
[anon_sym_PIPE] = ACTIONS(2883),
[anon_sym_PIPE_AMP] = ACTIONS(2885),
[anon_sym_AMP_AMP] = ACTIONS(2885),
[anon_sym_PIPE_PIPE] = ACTIONS(2885),
[anon_sym_LT] = ACTIONS(1284),
[anon_sym_GT] = ACTIONS(1284),
[anon_sym_GT_GT] = ACTIONS(1286),
[anon_sym_AMP_GT] = ACTIONS(1284),
[anon_sym_AMP_GT_GT] = ACTIONS(1286),
[anon_sym_LT_AMP] = ACTIONS(1286),
[anon_sym_GT_AMP] = ACTIONS(1286),
[anon_sym_BQUOTE] = ACTIONS(2885),
[sym_comment] = ACTIONS(52),
},
[1211] = {
[aux_sym_concatenation_repeat1] = STATE(1386),
[sym__concat] = ACTIONS(2465),
[sym_variable_name] = ACTIONS(470),
[anon_sym_PIPE] = ACTIONS(891),
[anon_sym_PIPE_AMP] = ACTIONS(470),
[anon_sym_AMP_AMP] = ACTIONS(470),
[anon_sym_PIPE_PIPE] = ACTIONS(470),
[anon_sym_BQUOTE] = ACTIONS(470),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(891),
},
[1212] = {
[aux_sym_concatenation_repeat1] = STATE(1213),
[sym__concat] = ACTIONS(2497),
[anon_sym_PIPE] = ACTIONS(737),
[anon_sym_PIPE_AMP] = ACTIONS(735),
[anon_sym_AMP_AMP] = ACTIONS(735),
[anon_sym_PIPE_PIPE] = ACTIONS(735),
[anon_sym_BQUOTE] = ACTIONS(735),
[sym_comment] = ACTIONS(52),
},
[1213] = {
[aux_sym_concatenation_repeat1] = STATE(1387),
[sym__concat] = ACTIONS(2497),
[anon_sym_PIPE] = ACTIONS(891),
[anon_sym_PIPE_AMP] = ACTIONS(470),
[anon_sym_AMP_AMP] = ACTIONS(470),
[anon_sym_PIPE_PIPE] = ACTIONS(470),
[anon_sym_BQUOTE] = ACTIONS(470),
[sym_comment] = ACTIONS(52),
},
[1214] = {
[aux_sym_concatenation_repeat1] = STATE(1214),
[sym_file_descriptor] = ACTIONS(1109),
[sym__concat] = ACTIONS(2957),
[anon_sym_PIPE] = ACTIONS(1613),
[anon_sym_PIPE_AMP] = ACTIONS(1109),
[anon_sym_AMP_AMP] = ACTIONS(1109),
[anon_sym_PIPE_PIPE] = ACTIONS(1109),
[anon_sym_LT] = ACTIONS(1613),
[anon_sym_GT] = ACTIONS(1613),
[anon_sym_GT_GT] = ACTIONS(1109),
[anon_sym_AMP_GT] = ACTIONS(1613),
[anon_sym_AMP_GT_GT] = ACTIONS(1109),
[anon_sym_LT_AMP] = ACTIONS(1109),
[anon_sym_GT_AMP] = ACTIONS(1109),
[anon_sym_LT_LT] = ACTIONS(1613),
[anon_sym_LT_LT_DASH] = ACTIONS(1109),
[anon_sym_BQUOTE] = ACTIONS(1109),
[sym_comment] = ACTIONS(52),
},
[1215] = {
[sym__concat] = ACTIONS(1088),
[anon_sym_PIPE] = ACTIONS(1090),
[anon_sym_RPAREN] = ACTIONS(1090),
[anon_sym_SEMI_SEMI] = ACTIONS(1090),
[anon_sym_PIPE_AMP] = ACTIONS(1090),
[anon_sym_AMP_AMP] = ACTIONS(1090),
[anon_sym_PIPE_PIPE] = ACTIONS(1090),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1090),
[anon_sym_LF] = ACTIONS(1090),
[anon_sym_AMP] = ACTIONS(1090),
},
[1216] = {
[sym__concat] = ACTIONS(1109),
[anon_sym_PIPE] = ACTIONS(1111),
[anon_sym_RPAREN] = ACTIONS(1111),
[anon_sym_SEMI_SEMI] = ACTIONS(1111),
[anon_sym_PIPE_AMP] = ACTIONS(1111),
[anon_sym_AMP_AMP] = ACTIONS(1111),
[anon_sym_PIPE_PIPE] = ACTIONS(1111),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1111),
[anon_sym_LF] = ACTIONS(1111),
[anon_sym_AMP] = ACTIONS(1111),
},
[1217] = {
[aux_sym_concatenation_repeat1] = STATE(1217),
[sym__concat] = ACTIONS(2984),
[anon_sym_PIPE] = ACTIONS(1111),
[anon_sym_SEMI_SEMI] = ACTIONS(1111),
[anon_sym_PIPE_AMP] = ACTIONS(1111),
[anon_sym_AMP_AMP] = ACTIONS(1111),
[anon_sym_PIPE_PIPE] = ACTIONS(1111),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1111),
[anon_sym_LF] = ACTIONS(1111),
[anon_sym_AMP] = ACTIONS(1111),
},
[1218] = {
[anon_sym_RBRACE] = ACTIONS(2987),
[anon_sym_LBRACK] = ACTIONS(2989),
[sym_comment] = ACTIONS(52),
},
[1219] = {
[anon_sym_RBRACE] = ACTIONS(2991),
[anon_sym_LBRACK] = ACTIONS(2993),
[sym_comment] = ACTIONS(52),
},
[1220] = {
[sym__concat] = ACTIONS(1124),
[anon_sym_PIPE] = ACTIONS(1126),
[anon_sym_RPAREN] = ACTIONS(1126),
[anon_sym_SEMI_SEMI] = ACTIONS(1126),
[anon_sym_PIPE_AMP] = ACTIONS(1126),
[anon_sym_AMP_AMP] = ACTIONS(1126),
[anon_sym_PIPE_PIPE] = ACTIONS(1126),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1126),
[anon_sym_LF] = ACTIONS(1126),
[anon_sym_AMP] = ACTIONS(1126),
},
[1221] = {
[anon_sym_AT] = ACTIONS(2995),
[sym_comment] = ACTIONS(52),
},
[1222] = {
[sym_concatenation] = STATE(1395),
[sym_string] = STATE(1394),
[sym_simple_expansion] = STATE(1394),
[sym_expansion] = STATE(1394),
[sym_command_substitution] = STATE(1394),
[sym_process_substitution] = STATE(1394),
[anon_sym_RBRACE] = ACTIONS(2997),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(2999),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(3001),
[sym_comment] = ACTIONS(52),
},
[1223] = {
[sym__concat] = ACTIONS(1136),
[anon_sym_PIPE] = ACTIONS(1138),
[anon_sym_RPAREN] = ACTIONS(1138),
[anon_sym_SEMI_SEMI] = ACTIONS(1138),
[anon_sym_PIPE_AMP] = ACTIONS(1138),
[anon_sym_AMP_AMP] = ACTIONS(1138),
[anon_sym_PIPE_PIPE] = ACTIONS(1138),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1138),
[anon_sym_LF] = ACTIONS(1138),
[anon_sym_AMP] = ACTIONS(1138),
},
[1224] = {
[anon_sym_AT] = ACTIONS(3003),
[sym_comment] = ACTIONS(52),
},
[1225] = {
[sym_concatenation] = STATE(1398),
[sym_string] = STATE(1397),
[sym_simple_expansion] = STATE(1397),
[sym_expansion] = STATE(1397),
[sym_command_substitution] = STATE(1397),
[sym_process_substitution] = STATE(1397),
[anon_sym_RBRACE] = ACTIONS(2991),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(3005),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(3007),
[sym_comment] = ACTIONS(52),
},
[1226] = {
[sym__concat] = ACTIONS(1238),
[anon_sym_PIPE] = ACTIONS(1240),
[anon_sym_RPAREN] = ACTIONS(1240),
[anon_sym_SEMI_SEMI] = ACTIONS(1240),
[anon_sym_PIPE_AMP] = ACTIONS(1240),
[anon_sym_AMP_AMP] = ACTIONS(1240),
[anon_sym_PIPE_PIPE] = ACTIONS(1240),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1240),
[anon_sym_LF] = ACTIONS(1240),
[anon_sym_AMP] = ACTIONS(1240),
},
[1227] = {
[sym__concat] = ACTIONS(1296),
[anon_sym_PIPE] = ACTIONS(1298),
[anon_sym_RPAREN] = ACTIONS(1298),
[anon_sym_SEMI_SEMI] = ACTIONS(1298),
[anon_sym_PIPE_AMP] = ACTIONS(1298),
[anon_sym_AMP_AMP] = ACTIONS(1298),
[anon_sym_PIPE_PIPE] = ACTIONS(1298),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1298),
[anon_sym_LF] = ACTIONS(1298),
[anon_sym_AMP] = ACTIONS(1298),
},
[1228] = {
[sym_file_descriptor] = ACTIONS(1736),
[sym__concat] = ACTIONS(1736),
[anon_sym_PIPE] = ACTIONS(1738),
[anon_sym_RPAREN] = ACTIONS(1738),
[anon_sym_SEMI_SEMI] = ACTIONS(1738),
[anon_sym_PIPE_AMP] = ACTIONS(1738),
[anon_sym_AMP_AMP] = ACTIONS(1738),
[anon_sym_PIPE_PIPE] = ACTIONS(1738),
[anon_sym_LT] = ACTIONS(1738),
[anon_sym_GT] = ACTIONS(1738),
[anon_sym_GT_GT] = ACTIONS(1738),
[anon_sym_AMP_GT] = ACTIONS(1738),
[anon_sym_AMP_GT_GT] = ACTIONS(1738),
[anon_sym_LT_AMP] = ACTIONS(1738),
[anon_sym_GT_AMP] = ACTIONS(1738),
[anon_sym_LT_LT] = ACTIONS(1738),
[anon_sym_LT_LT_DASH] = ACTIONS(1738),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1738),
[anon_sym_LF] = ACTIONS(1738),
[anon_sym_AMP] = ACTIONS(1738),
},
[1229] = {
[anon_sym_AT] = ACTIONS(3009),
[sym_comment] = ACTIONS(52),
},
[1230] = {
[sym_file_descriptor] = ACTIONS(1742),
[sym__concat] = ACTIONS(1742),
[anon_sym_PIPE] = ACTIONS(1744),
[anon_sym_RPAREN] = ACTIONS(1744),
[anon_sym_SEMI_SEMI] = ACTIONS(1744),
[anon_sym_PIPE_AMP] = ACTIONS(1744),
[anon_sym_AMP_AMP] = ACTIONS(1744),
[anon_sym_PIPE_PIPE] = ACTIONS(1744),
[anon_sym_LT] = ACTIONS(1744),
[anon_sym_GT] = ACTIONS(1744),
[anon_sym_GT_GT] = ACTIONS(1744),
[anon_sym_AMP_GT] = ACTIONS(1744),
[anon_sym_AMP_GT_GT] = ACTIONS(1744),
[anon_sym_LT_AMP] = ACTIONS(1744),
[anon_sym_GT_AMP] = ACTIONS(1744),
[anon_sym_LT_LT] = ACTIONS(1744),
[anon_sym_LT_LT_DASH] = ACTIONS(1744),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1744),
[anon_sym_LF] = ACTIONS(1744),
[anon_sym_AMP] = ACTIONS(1744),
},
[1231] = {
[anon_sym_AT] = ACTIONS(3011),
[sym_comment] = ACTIONS(52),
},
[1232] = {
[anon_sym_RBRACK] = ACTIONS(3013),
[sym_comment] = ACTIONS(52),
},
[1233] = {
[sym_file_descriptor] = ACTIONS(1750),
[sym__concat] = ACTIONS(1750),
[anon_sym_PIPE] = ACTIONS(1752),
[anon_sym_RPAREN] = ACTIONS(1752),
[anon_sym_SEMI_SEMI] = ACTIONS(1752),
[anon_sym_PIPE_AMP] = ACTIONS(1752),
[anon_sym_AMP_AMP] = ACTIONS(1752),
[anon_sym_PIPE_PIPE] = ACTIONS(1752),
[anon_sym_LT] = ACTIONS(1752),
[anon_sym_GT] = ACTIONS(1752),
[anon_sym_GT_GT] = ACTIONS(1752),
[anon_sym_AMP_GT] = ACTIONS(1752),
[anon_sym_AMP_GT_GT] = ACTIONS(1752),
[anon_sym_LT_AMP] = ACTIONS(1752),
[anon_sym_GT_AMP] = ACTIONS(1752),
[anon_sym_LT_LT] = ACTIONS(1752),
[anon_sym_LT_LT_DASH] = ACTIONS(1752),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1752),
[anon_sym_LF] = ACTIONS(1752),
[anon_sym_AMP] = ACTIONS(1752),
},
[1234] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(3015),
[sym_comment] = ACTIONS(52),
},
[1235] = {
[anon_sym_RBRACE] = ACTIONS(3015),
[sym_comment] = ACTIONS(52),
},
[1236] = {
[anon_sym_RBRACK] = ACTIONS(3017),
[sym_comment] = ACTIONS(52),
},
[1237] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(3019),
[sym_comment] = ACTIONS(52),
},
[1238] = {
[anon_sym_RBRACE] = ACTIONS(3019),
[sym_comment] = ACTIONS(52),
},
[1239] = {
[anon_sym_RBRACE] = ACTIONS(3021),
[anon_sym_LBRACK] = ACTIONS(3023),
[sym_comment] = ACTIONS(52),
},
[1240] = {
[anon_sym_RBRACE] = ACTIONS(3025),
[anon_sym_LBRACK] = ACTIONS(3027),
[sym_comment] = ACTIONS(52),
},
[1241] = {
[sym__heredoc_middle] = ACTIONS(1124),
[sym__heredoc_end] = ACTIONS(1124),
[anon_sym_DOLLAR] = ACTIONS(1626),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1124),
[sym_comment] = ACTIONS(52),
},
[1242] = {
[anon_sym_AT] = ACTIONS(3029),
[sym_comment] = ACTIONS(52),
},
[1243] = {
[sym_concatenation] = STATE(1412),
[sym_string] = STATE(1411),
[sym_simple_expansion] = STATE(1411),
[sym_expansion] = STATE(1411),
[sym_command_substitution] = STATE(1411),
[sym_process_substitution] = STATE(1411),
[anon_sym_RBRACE] = ACTIONS(3031),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(3033),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(3035),
[sym_comment] = ACTIONS(52),
},
[1244] = {
[sym__heredoc_middle] = ACTIONS(1136),
[sym__heredoc_end] = ACTIONS(1136),
[anon_sym_DOLLAR] = ACTIONS(1636),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1136),
[sym_comment] = ACTIONS(52),
},
[1245] = {
[anon_sym_AT] = ACTIONS(3037),
[sym_comment] = ACTIONS(52),
},
[1246] = {
[sym_concatenation] = STATE(1415),
[sym_string] = STATE(1414),
[sym_simple_expansion] = STATE(1414),
[sym_expansion] = STATE(1414),
[sym_command_substitution] = STATE(1414),
[sym_process_substitution] = STATE(1414),
[anon_sym_RBRACE] = ACTIONS(3025),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(3039),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(3041),
[sym_comment] = ACTIONS(52),
},
[1247] = {
[sym_file_descriptor] = ACTIONS(2144),
[sym_variable_name] = ACTIONS(2144),
[anon_sym_LT] = ACTIONS(2840),
[anon_sym_GT] = ACTIONS(2840),
[anon_sym_GT_GT] = ACTIONS(2144),
[anon_sym_AMP_GT] = ACTIONS(2840),
[anon_sym_AMP_GT_GT] = ACTIONS(2144),
[anon_sym_LT_AMP] = ACTIONS(2144),
[anon_sym_GT_AMP] = ACTIONS(2144),
[anon_sym_DQUOTE] = ACTIONS(2144),
[sym_raw_string] = ACTIONS(2144),
[anon_sym_DOLLAR] = ACTIONS(2840),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2144),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2144),
[anon_sym_BQUOTE] = ACTIONS(2144),
[anon_sym_LT_LPAREN] = ACTIONS(2144),
[anon_sym_GT_LPAREN] = ACTIONS(2144),
[sym_word] = ACTIONS(2840),
[sym_comment] = ACTIONS(52),
},
[1248] = {
[anon_sym_RBRACK] = ACTIONS(3043),
[sym_comment] = ACTIONS(52),
},
[1249] = {
[anon_sym_RBRACK] = ACTIONS(3045),
[sym_comment] = ACTIONS(52),
},
[1250] = {
[anon_sym_RBRACE] = ACTIONS(3047),
[sym_comment] = ACTIONS(52),
},
[1251] = {
[sym__concat] = ACTIONS(2389),
[anon_sym_PIPE] = ACTIONS(2389),
[anon_sym_RPAREN] = ACTIONS(2389),
[anon_sym_RBRACK] = ACTIONS(2389),
[sym_comment] = ACTIONS(52),
},
[1252] = {
[anon_sym_RBRACE] = ACTIONS(3049),
[sym_comment] = ACTIONS(52),
},
[1253] = {
[sym__concat] = ACTIONS(2395),
[anon_sym_PIPE] = ACTIONS(2395),
[anon_sym_RPAREN] = ACTIONS(2395),
[anon_sym_RBRACK] = ACTIONS(2395),
[sym_comment] = ACTIONS(52),
},
[1254] = {
[sym__concat] = ACTIONS(1736),
[anon_sym_RPAREN] = ACTIONS(1736),
[anon_sym_DQUOTE] = ACTIONS(1736),
[sym_raw_string] = ACTIONS(1736),
[anon_sym_DOLLAR] = ACTIONS(2299),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1736),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1736),
[anon_sym_BQUOTE] = ACTIONS(1736),
[anon_sym_LT_LPAREN] = ACTIONS(1736),
[anon_sym_GT_LPAREN] = ACTIONS(1736),
[sym_word] = ACTIONS(2299),
[sym_comment] = ACTIONS(52),
},
[1255] = {
[anon_sym_AT] = ACTIONS(3051),
[sym_comment] = ACTIONS(52),
},
[1256] = {
[sym__concat] = ACTIONS(1742),
[anon_sym_RPAREN] = ACTIONS(1742),
[anon_sym_DQUOTE] = ACTIONS(1742),
[sym_raw_string] = ACTIONS(1742),
[anon_sym_DOLLAR] = ACTIONS(2303),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1742),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1742),
[anon_sym_BQUOTE] = ACTIONS(1742),
[anon_sym_LT_LPAREN] = ACTIONS(1742),
[anon_sym_GT_LPAREN] = ACTIONS(1742),
[sym_word] = ACTIONS(2303),
[sym_comment] = ACTIONS(52),
},
[1257] = {
[anon_sym_AT] = ACTIONS(3053),
[sym_comment] = ACTIONS(52),
},
[1258] = {
[anon_sym_RBRACK] = ACTIONS(3055),
[sym_comment] = ACTIONS(52),
},
[1259] = {
[sym__concat] = ACTIONS(1750),
[anon_sym_RPAREN] = ACTIONS(1750),
[anon_sym_DQUOTE] = ACTIONS(1750),
[sym_raw_string] = ACTIONS(1750),
[anon_sym_DOLLAR] = ACTIONS(2309),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1750),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1750),
[anon_sym_BQUOTE] = ACTIONS(1750),
[anon_sym_LT_LPAREN] = ACTIONS(1750),
[anon_sym_GT_LPAREN] = ACTIONS(1750),
[sym_word] = ACTIONS(2309),
[sym_comment] = ACTIONS(52),
},
[1260] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(3057),
[sym_comment] = ACTIONS(52),
},
[1261] = {
[anon_sym_RBRACE] = ACTIONS(3057),
[sym_comment] = ACTIONS(52),
},
[1262] = {
[anon_sym_RBRACK] = ACTIONS(3059),
[sym_comment] = ACTIONS(52),
},
[1263] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(3061),
[sym_comment] = ACTIONS(52),
},
[1264] = {
[anon_sym_RBRACE] = ACTIONS(3061),
[sym_comment] = ACTIONS(52),
},
[1265] = {
[anon_sym_RBRACK] = ACTIONS(3063),
[sym_comment] = ACTIONS(52),
},
[1266] = {
[anon_sym_RBRACK] = ACTIONS(3065),
[sym_comment] = ACTIONS(52),
},
[1267] = {
[anon_sym_RBRACE] = ACTIONS(3067),
[sym_comment] = ACTIONS(52),
},
[1268] = {
[sym_file_descriptor] = ACTIONS(2389),
[sym__concat] = ACTIONS(2389),
[sym_variable_name] = ACTIONS(2389),
[anon_sym_PIPE] = ACTIONS(2391),
[anon_sym_RPAREN] = ACTIONS(2391),
[anon_sym_SEMI_SEMI] = ACTIONS(2391),
[anon_sym_PIPE_AMP] = ACTIONS(2391),
[anon_sym_AMP_AMP] = ACTIONS(2391),
[anon_sym_PIPE_PIPE] = ACTIONS(2391),
[anon_sym_LT] = ACTIONS(2391),
[anon_sym_GT] = ACTIONS(2391),
[anon_sym_GT_GT] = ACTIONS(2391),
[anon_sym_AMP_GT] = ACTIONS(2391),
[anon_sym_AMP_GT_GT] = ACTIONS(2391),
[anon_sym_LT_AMP] = ACTIONS(2391),
[anon_sym_GT_AMP] = ACTIONS(2391),
[anon_sym_DQUOTE] = ACTIONS(2391),
[sym_raw_string] = ACTIONS(2391),
[anon_sym_DOLLAR] = ACTIONS(2391),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2391),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2391),
[anon_sym_BQUOTE] = ACTIONS(2391),
[anon_sym_LT_LPAREN] = ACTIONS(2391),
[anon_sym_GT_LPAREN] = ACTIONS(2391),
[sym_word] = ACTIONS(2391),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2391),
[anon_sym_LF] = ACTIONS(2391),
[anon_sym_AMP] = ACTIONS(2391),
},
[1269] = {
[anon_sym_RBRACE] = ACTIONS(3069),
[sym_comment] = ACTIONS(52),
},
[1270] = {
[sym_file_descriptor] = ACTIONS(2395),
[sym__concat] = ACTIONS(2395),
[sym_variable_name] = ACTIONS(2395),
[anon_sym_PIPE] = ACTIONS(2397),
[anon_sym_RPAREN] = ACTIONS(2397),
[anon_sym_SEMI_SEMI] = ACTIONS(2397),
[anon_sym_PIPE_AMP] = ACTIONS(2397),
[anon_sym_AMP_AMP] = ACTIONS(2397),
[anon_sym_PIPE_PIPE] = ACTIONS(2397),
[anon_sym_LT] = ACTIONS(2397),
[anon_sym_GT] = ACTIONS(2397),
[anon_sym_GT_GT] = ACTIONS(2397),
[anon_sym_AMP_GT] = ACTIONS(2397),
[anon_sym_AMP_GT_GT] = ACTIONS(2397),
[anon_sym_LT_AMP] = ACTIONS(2397),
[anon_sym_GT_AMP] = ACTIONS(2397),
[anon_sym_DQUOTE] = ACTIONS(2397),
[sym_raw_string] = ACTIONS(2397),
[anon_sym_DOLLAR] = ACTIONS(2397),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2397),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2397),
[anon_sym_BQUOTE] = ACTIONS(2397),
[anon_sym_LT_LPAREN] = ACTIONS(2397),
[anon_sym_GT_LPAREN] = ACTIONS(2397),
[sym_word] = ACTIONS(2397),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2397),
[anon_sym_LF] = ACTIONS(2397),
[anon_sym_AMP] = ACTIONS(2397),
},
[1271] = {
[sym__concat] = ACTIONS(1736),
[anon_sym_SEMI_SEMI] = ACTIONS(1738),
[anon_sym_DQUOTE] = ACTIONS(1738),
[sym_raw_string] = ACTIONS(1738),
[anon_sym_DOLLAR] = ACTIONS(1738),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1738),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1738),
[anon_sym_BQUOTE] = ACTIONS(1738),
[anon_sym_LT_LPAREN] = ACTIONS(1738),
[anon_sym_GT_LPAREN] = ACTIONS(1738),
[sym_word] = ACTIONS(1738),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1738),
[anon_sym_LF] = ACTIONS(1738),
[anon_sym_AMP] = ACTIONS(1738),
},
[1272] = {
[anon_sym_AT] = ACTIONS(3071),
[sym_comment] = ACTIONS(52),
},
[1273] = {
[sym__concat] = ACTIONS(1742),
[anon_sym_SEMI_SEMI] = ACTIONS(1744),
[anon_sym_DQUOTE] = ACTIONS(1744),
[sym_raw_string] = ACTIONS(1744),
[anon_sym_DOLLAR] = ACTIONS(1744),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1744),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1744),
[anon_sym_BQUOTE] = ACTIONS(1744),
[anon_sym_LT_LPAREN] = ACTIONS(1744),
[anon_sym_GT_LPAREN] = ACTIONS(1744),
[sym_word] = ACTIONS(1744),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1744),
[anon_sym_LF] = ACTIONS(1744),
[anon_sym_AMP] = ACTIONS(1744),
},
[1274] = {
[anon_sym_AT] = ACTIONS(3073),
[sym_comment] = ACTIONS(52),
},
[1275] = {
[anon_sym_RBRACK] = ACTIONS(3075),
[sym_comment] = ACTIONS(52),
},
[1276] = {
[sym__concat] = ACTIONS(1750),
[anon_sym_SEMI_SEMI] = ACTIONS(1752),
[anon_sym_DQUOTE] = ACTIONS(1752),
[sym_raw_string] = ACTIONS(1752),
[anon_sym_DOLLAR] = ACTIONS(1752),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1752),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1752),
[anon_sym_BQUOTE] = ACTIONS(1752),
[anon_sym_LT_LPAREN] = ACTIONS(1752),
[anon_sym_GT_LPAREN] = ACTIONS(1752),
[sym_word] = ACTIONS(1752),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1752),
[anon_sym_LF] = ACTIONS(1752),
[anon_sym_AMP] = ACTIONS(1752),
},
[1277] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(3077),
[sym_comment] = ACTIONS(52),
},
[1278] = {
[anon_sym_RBRACE] = ACTIONS(3077),
[sym_comment] = ACTIONS(52),
},
[1279] = {
[anon_sym_RBRACK] = ACTIONS(3079),
[sym_comment] = ACTIONS(52),
},
[1280] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(3081),
[sym_comment] = ACTIONS(52),
},
[1281] = {
[anon_sym_RBRACE] = ACTIONS(3081),
[sym_comment] = ACTIONS(52),
},
[1282] = {
[sym__terminated_statement] = STATE(465),
[sym_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_bracket_command] = STATE(466),
[sym_command] = STATE(466),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(469),
[sym_declaration_command] = STATE(466),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(777),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_fi] = ACTIONS(3083),
[anon_sym_elif] = ACTIONS(3083),
[anon_sym_else] = ACTIONS(3083),
[anon_sym_case] = ACTIONS(20),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[1283] = {
[anon_sym_PIPE] = ACTIONS(3085),
[anon_sym_RPAREN] = ACTIONS(3085),
[anon_sym_SEMI_SEMI] = ACTIONS(3085),
[anon_sym_PIPE_AMP] = ACTIONS(3085),
[anon_sym_AMP_AMP] = ACTIONS(3085),
[anon_sym_PIPE_PIPE] = ACTIONS(3085),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(3085),
[anon_sym_LF] = ACTIONS(3085),
[anon_sym_AMP] = ACTIONS(3085),
},
[1284] = {
[aux_sym_concatenation_repeat1] = STATE(1068),
[sym__concat] = ACTIONS(741),
[anon_sym_PIPE] = ACTIONS(3087),
[anon_sym_RPAREN] = ACTIONS(3087),
[sym_comment] = ACTIONS(52),
},
[1285] = {
[anon_sym_PIPE] = ACTIONS(3087),
[anon_sym_RPAREN] = ACTIONS(3087),
[sym_comment] = ACTIONS(52),
},
[1286] = {
[anon_sym_esac] = ACTIONS(3089),
[anon_sym_DQUOTE] = ACTIONS(3091),
[sym_raw_string] = ACTIONS(3091),
[anon_sym_DOLLAR] = ACTIONS(3089),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(3091),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(3091),
[anon_sym_BQUOTE] = ACTIONS(3091),
[anon_sym_LT_LPAREN] = ACTIONS(3091),
[anon_sym_GT_LPAREN] = ACTIONS(3091),
[sym_word] = ACTIONS(3093),
[sym_comment] = ACTIONS(52),
},
[1287] = {
[sym__terminated_statement] = STATE(23),
[sym_for_statement] = STATE(24),
[sym_while_statement] = STATE(24),
[sym_if_statement] = STATE(24),
[sym_case_statement] = STATE(24),
[sym_function_definition] = STATE(24),
[sym_subshell] = STATE(24),
[sym_pipeline] = STATE(24),
[sym_list] = STATE(24),
[sym_bracket_command] = STATE(24),
[sym_command] = STATE(24),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(26),
[sym_declaration_command] = STATE(24),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(1437),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_SEMI_SEMI] = ACTIONS(3095),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[1288] = {
[sym__terminated_statement] = STATE(23),
[sym_for_statement] = STATE(24),
[sym_while_statement] = STATE(24),
[sym_if_statement] = STATE(24),
[sym_case_statement] = STATE(24),
[sym_function_definition] = STATE(24),
[sym_subshell] = STATE(24),
[sym_pipeline] = STATE(24),
[sym_list] = STATE(24),
[sym_bracket_command] = STATE(24),
[sym_command] = STATE(24),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(26),
[sym_declaration_command] = STATE(24),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(1438),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_SEMI_SEMI] = ACTIONS(3095),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[1289] = {
[aux_sym_case_item_repeat1] = STATE(1289),
[anon_sym_PIPE] = ACTIONS(3097),
[anon_sym_RPAREN] = ACTIONS(3087),
[sym_comment] = ACTIONS(52),
},
[1290] = {
[aux_sym_concatenation_repeat1] = STATE(1290),
[sym__concat] = ACTIONS(2091),
[anon_sym_PIPE] = ACTIONS(1109),
[anon_sym_RPAREN] = ACTIONS(1109),
[sym_comment] = ACTIONS(52),
},
[1291] = {
[anon_sym_PIPE] = ACTIONS(3100),
[anon_sym_RPAREN] = ACTIONS(3100),
[anon_sym_SEMI_SEMI] = ACTIONS(3100),
[anon_sym_PIPE_AMP] = ACTIONS(3100),
[anon_sym_AMP_AMP] = ACTIONS(3100),
[anon_sym_PIPE_PIPE] = ACTIONS(3100),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(3100),
[anon_sym_LF] = ACTIONS(3100),
[anon_sym_AMP] = ACTIONS(3100),
},
[1292] = {
[anon_sym_RBRACE] = ACTIONS(3102),
[sym_comment] = ACTIONS(52),
},
[1293] = {
[anon_sym_RBRACE] = ACTIONS(3104),
[sym_comment] = ACTIONS(52),
},
[1294] = {
[sym__concat] = ACTIONS(2832),
[anon_sym_in] = ACTIONS(2834),
[anon_sym_SEMI_SEMI] = ACTIONS(2834),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2834),
[anon_sym_LF] = ACTIONS(2834),
[anon_sym_AMP] = ACTIONS(2834),
},
[1295] = {
[sym__concat] = ACTIONS(2836),
[anon_sym_in] = ACTIONS(2838),
[anon_sym_SEMI_SEMI] = ACTIONS(2838),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2838),
[anon_sym_LF] = ACTIONS(2838),
[anon_sym_AMP] = ACTIONS(2838),
},
[1296] = {
[aux_sym_concatenation_repeat1] = STATE(1296),
[sym__concat] = ACTIONS(2787),
[sym_variable_name] = ACTIONS(1109),
[anon_sym_PIPE] = ACTIONS(1111),
[anon_sym_RPAREN] = ACTIONS(1111),
[anon_sym_SEMI_SEMI] = ACTIONS(1111),
[anon_sym_PIPE_AMP] = ACTIONS(1111),
[anon_sym_AMP_AMP] = ACTIONS(1111),
[anon_sym_PIPE_PIPE] = ACTIONS(1111),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1111),
[anon_sym_SEMI] = ACTIONS(1111),
[anon_sym_LF] = ACTIONS(1111),
[anon_sym_AMP] = ACTIONS(1111),
},
[1297] = {
[aux_sym_concatenation_repeat1] = STATE(1297),
[sym__concat] = ACTIONS(2984),
[anon_sym_PIPE] = ACTIONS(1111),
[anon_sym_RPAREN] = ACTIONS(1111),
[anon_sym_SEMI_SEMI] = ACTIONS(1111),
[anon_sym_PIPE_AMP] = ACTIONS(1111),
[anon_sym_AMP_AMP] = ACTIONS(1111),
[anon_sym_PIPE_PIPE] = ACTIONS(1111),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1111),
[anon_sym_LF] = ACTIONS(1111),
[anon_sym_AMP] = ACTIONS(1111),
},
[1298] = {
[anon_sym_RBRACE] = ACTIONS(3106),
[sym_comment] = ACTIONS(52),
},
[1299] = {
[anon_sym_RBRACE] = ACTIONS(3108),
[sym_comment] = ACTIONS(52),
},
[1300] = {
[sym__concat] = ACTIONS(2832),
[anon_sym_RBRACE] = ACTIONS(2832),
[anon_sym_RBRACK] = ACTIONS(3110),
[anon_sym_DQUOTE] = ACTIONS(2832),
[sym_raw_string] = ACTIONS(2832),
[anon_sym_DOLLAR] = ACTIONS(3110),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2832),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2832),
[anon_sym_BQUOTE] = ACTIONS(2832),
[anon_sym_LT_LPAREN] = ACTIONS(2832),
[anon_sym_GT_LPAREN] = ACTIONS(2832),
[sym_word] = ACTIONS(2834),
[sym_comment] = ACTIONS(52),
},
[1301] = {
[sym__concat] = ACTIONS(2836),
[anon_sym_RBRACE] = ACTIONS(2836),
[anon_sym_RBRACK] = ACTIONS(3112),
[anon_sym_DQUOTE] = ACTIONS(2836),
[sym_raw_string] = ACTIONS(2836),
[anon_sym_DOLLAR] = ACTIONS(3112),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2836),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2836),
[anon_sym_BQUOTE] = ACTIONS(2836),
[anon_sym_LT_LPAREN] = ACTIONS(2836),
[anon_sym_GT_LPAREN] = ACTIONS(2836),
[sym_word] = ACTIONS(2838),
[sym_comment] = ACTIONS(52),
},
[1302] = {
[anon_sym_RBRACE] = ACTIONS(3114),
[sym_comment] = ACTIONS(52),
},
[1303] = {
[anon_sym_RBRACE] = ACTIONS(3116),
[sym_comment] = ACTIONS(52),
},
[1304] = {
[sym__concat] = ACTIONS(2832),
[anon_sym_RBRACK_RBRACK] = ACTIONS(3110),
[anon_sym_DQUOTE] = ACTIONS(2832),
[sym_raw_string] = ACTIONS(2832),
[anon_sym_DOLLAR] = ACTIONS(3110),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2832),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2832),
[anon_sym_BQUOTE] = ACTIONS(2832),
[anon_sym_LT_LPAREN] = ACTIONS(2832),
[anon_sym_GT_LPAREN] = ACTIONS(2832),
[sym_word] = ACTIONS(2834),
[sym_comment] = ACTIONS(52),
},
[1305] = {
[sym__concat] = ACTIONS(2836),
[anon_sym_RBRACK_RBRACK] = ACTIONS(3112),
[anon_sym_DQUOTE] = ACTIONS(2836),
[sym_raw_string] = ACTIONS(2836),
[anon_sym_DOLLAR] = ACTIONS(3112),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2836),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2836),
[anon_sym_BQUOTE] = ACTIONS(2836),
[anon_sym_LT_LPAREN] = ACTIONS(2836),
[anon_sym_GT_LPAREN] = ACTIONS(2836),
[sym_word] = ACTIONS(2838),
[sym_comment] = ACTIONS(52),
},
[1306] = {
[sym__concat] = ACTIONS(1736),
[sym_variable_name] = ACTIONS(1736),
[anon_sym_PIPE] = ACTIONS(1738),
[anon_sym_RPAREN] = ACTIONS(1738),
[anon_sym_SEMI_SEMI] = ACTIONS(1738),
[anon_sym_PIPE_AMP] = ACTIONS(1738),
[anon_sym_AMP_AMP] = ACTIONS(1738),
[anon_sym_PIPE_PIPE] = ACTIONS(1738),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1738),
[anon_sym_SEMI] = ACTIONS(1738),
[anon_sym_LF] = ACTIONS(1738),
[anon_sym_AMP] = ACTIONS(1738),
},
[1307] = {
[anon_sym_AT] = ACTIONS(3118),
[sym_comment] = ACTIONS(52),
},
[1308] = {
[sym__concat] = ACTIONS(1742),
[sym_variable_name] = ACTIONS(1742),
[anon_sym_PIPE] = ACTIONS(1744),
[anon_sym_RPAREN] = ACTIONS(1744),
[anon_sym_SEMI_SEMI] = ACTIONS(1744),
[anon_sym_PIPE_AMP] = ACTIONS(1744),
[anon_sym_AMP_AMP] = ACTIONS(1744),
[anon_sym_PIPE_PIPE] = ACTIONS(1744),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1744),
[anon_sym_SEMI] = ACTIONS(1744),
[anon_sym_LF] = ACTIONS(1744),
[anon_sym_AMP] = ACTIONS(1744),
},
[1309] = {
[anon_sym_AT] = ACTIONS(3120),
[sym_comment] = ACTIONS(52),
},
[1310] = {
[anon_sym_RBRACK] = ACTIONS(3122),
[sym_comment] = ACTIONS(52),
},
[1311] = {
[sym__concat] = ACTIONS(1750),
[sym_variable_name] = ACTIONS(1750),
[anon_sym_PIPE] = ACTIONS(1752),
[anon_sym_RPAREN] = ACTIONS(1752),
[anon_sym_SEMI_SEMI] = ACTIONS(1752),
[anon_sym_PIPE_AMP] = ACTIONS(1752),
[anon_sym_AMP_AMP] = ACTIONS(1752),
[anon_sym_PIPE_PIPE] = ACTIONS(1752),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(1752),
[anon_sym_SEMI] = ACTIONS(1752),
[anon_sym_LF] = ACTIONS(1752),
[anon_sym_AMP] = ACTIONS(1752),
},
[1312] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(3124),
[sym_comment] = ACTIONS(52),
},
[1313] = {
[anon_sym_RBRACE] = ACTIONS(3124),
[sym_comment] = ACTIONS(52),
},
[1314] = {
[anon_sym_RBRACK] = ACTIONS(3126),
[sym_comment] = ACTIONS(52),
},
[1315] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(3128),
[sym_comment] = ACTIONS(52),
},
[1316] = {
[anon_sym_RBRACE] = ACTIONS(3128),
[sym_comment] = ACTIONS(52),
},
[1317] = {
[anon_sym_RBRACE] = ACTIONS(3130),
[sym_comment] = ACTIONS(52),
},
[1318] = {
[anon_sym_RBRACE] = ACTIONS(3132),
[sym_comment] = ACTIONS(52),
},
[1319] = {
[sym_file_descriptor] = ACTIONS(2832),
[sym__concat] = ACTIONS(2832),
[sym_variable_name] = ACTIONS(2832),
[anon_sym_LT] = ACTIONS(3110),
[anon_sym_GT] = ACTIONS(3110),
[anon_sym_GT_GT] = ACTIONS(2832),
[anon_sym_AMP_GT] = ACTIONS(3110),
[anon_sym_AMP_GT_GT] = ACTIONS(2832),
[anon_sym_LT_AMP] = ACTIONS(2832),
[anon_sym_GT_AMP] = ACTIONS(2832),
[anon_sym_DQUOTE] = ACTIONS(2832),
[sym_raw_string] = ACTIONS(2832),
[anon_sym_DOLLAR] = ACTIONS(3110),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2832),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2832),
[anon_sym_BQUOTE] = ACTIONS(2832),
[anon_sym_LT_LPAREN] = ACTIONS(2832),
[anon_sym_GT_LPAREN] = ACTIONS(2832),
[sym_word] = ACTIONS(3110),
[sym_comment] = ACTIONS(52),
},
[1320] = {
[sym_file_descriptor] = ACTIONS(2836),
[sym__concat] = ACTIONS(2836),
[sym_variable_name] = ACTIONS(2836),
[anon_sym_LT] = ACTIONS(3112),
[anon_sym_GT] = ACTIONS(3112),
[anon_sym_GT_GT] = ACTIONS(2836),
[anon_sym_AMP_GT] = ACTIONS(3112),
[anon_sym_AMP_GT_GT] = ACTIONS(2836),
[anon_sym_LT_AMP] = ACTIONS(2836),
[anon_sym_GT_AMP] = ACTIONS(2836),
[anon_sym_DQUOTE] = ACTIONS(2836),
[sym_raw_string] = ACTIONS(2836),
[anon_sym_DOLLAR] = ACTIONS(3112),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2836),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2836),
[anon_sym_BQUOTE] = ACTIONS(2836),
[anon_sym_LT_LPAREN] = ACTIONS(2836),
[anon_sym_GT_LPAREN] = ACTIONS(2836),
[sym_word] = ACTIONS(3112),
[sym_comment] = ACTIONS(52),
},
[1321] = {
[anon_sym_RBRACE] = ACTIONS(3134),
[sym_comment] = ACTIONS(52),
},
[1322] = {
[anon_sym_RBRACE] = ACTIONS(3136),
[sym_comment] = ACTIONS(52),
},
[1323] = {
[anon_sym_DQUOTE] = ACTIONS(2834),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(3110),
[anon_sym_DOLLAR] = ACTIONS(2834),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2834),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2834),
[anon_sym_BQUOTE] = ACTIONS(2834),
[sym_comment] = ACTIONS(130),
},
[1324] = {
[anon_sym_DQUOTE] = ACTIONS(2838),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(3112),
[anon_sym_DOLLAR] = ACTIONS(2838),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2838),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2838),
[anon_sym_BQUOTE] = ACTIONS(2838),
[sym_comment] = ACTIONS(130),
},
[1325] = {
[sym_file_descriptor] = ACTIONS(3138),
[sym__concat] = ACTIONS(3138),
[anon_sym_PIPE] = ACTIONS(3140),
[anon_sym_RPAREN] = ACTIONS(3140),
[anon_sym_SEMI_SEMI] = ACTIONS(3140),
[anon_sym_PIPE_AMP] = ACTIONS(3140),
[anon_sym_AMP_AMP] = ACTIONS(3140),
[anon_sym_PIPE_PIPE] = ACTIONS(3140),
[anon_sym_LT] = ACTIONS(3140),
[anon_sym_GT] = ACTIONS(3140),
[anon_sym_GT_GT] = ACTIONS(3140),
[anon_sym_AMP_GT] = ACTIONS(3140),
[anon_sym_AMP_GT_GT] = ACTIONS(3140),
[anon_sym_LT_AMP] = ACTIONS(3140),
[anon_sym_GT_AMP] = ACTIONS(3140),
[anon_sym_LT_LT] = ACTIONS(3140),
[anon_sym_LT_LT_DASH] = ACTIONS(3140),
[anon_sym_DQUOTE] = ACTIONS(3140),
[sym_raw_string] = ACTIONS(3140),
[anon_sym_DOLLAR] = ACTIONS(3140),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(3140),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(3140),
[anon_sym_BQUOTE] = ACTIONS(3140),
[anon_sym_LT_LPAREN] = ACTIONS(3140),
[anon_sym_GT_LPAREN] = ACTIONS(3140),
[sym_word] = ACTIONS(3140),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(3140),
[anon_sym_LF] = ACTIONS(3140),
[anon_sym_AMP] = ACTIONS(3140),
},
[1326] = {
[sym_file_descriptor] = ACTIONS(3142),
[sym__concat] = ACTIONS(3142),
[anon_sym_PIPE] = ACTIONS(3144),
[anon_sym_RPAREN] = ACTIONS(3144),
[anon_sym_SEMI_SEMI] = ACTIONS(3144),
[anon_sym_PIPE_AMP] = ACTIONS(3144),
[anon_sym_AMP_AMP] = ACTIONS(3144),
[anon_sym_PIPE_PIPE] = ACTIONS(3144),
[anon_sym_LT] = ACTIONS(3144),
[anon_sym_GT] = ACTIONS(3144),
[anon_sym_GT_GT] = ACTIONS(3144),
[anon_sym_AMP_GT] = ACTIONS(3144),
[anon_sym_AMP_GT_GT] = ACTIONS(3144),
[anon_sym_LT_AMP] = ACTIONS(3144),
[anon_sym_GT_AMP] = ACTIONS(3144),
[anon_sym_LT_LT] = ACTIONS(3144),
[anon_sym_LT_LT_DASH] = ACTIONS(3144),
[anon_sym_DQUOTE] = ACTIONS(3144),
[sym_raw_string] = ACTIONS(3144),
[anon_sym_DOLLAR] = ACTIONS(3144),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(3144),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(3144),
[anon_sym_BQUOTE] = ACTIONS(3144),
[anon_sym_LT_LPAREN] = ACTIONS(3144),
[anon_sym_GT_LPAREN] = ACTIONS(3144),
[sym_word] = ACTIONS(3144),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(3144),
[anon_sym_LF] = ACTIONS(3144),
[anon_sym_AMP] = ACTIONS(3144),
},
[1327] = {
[sym_file_descriptor] = ACTIONS(1736),
[sym__concat] = ACTIONS(1736),
[sym_variable_name] = ACTIONS(1736),
[anon_sym_PIPE] = ACTIONS(2299),
[anon_sym_RPAREN] = ACTIONS(1736),
[anon_sym_PIPE_AMP] = ACTIONS(1736),
[anon_sym_AMP_AMP] = ACTIONS(1736),
[anon_sym_PIPE_PIPE] = ACTIONS(2299),
[anon_sym_LT] = ACTIONS(2299),
[anon_sym_GT] = ACTIONS(2299),
[anon_sym_GT_GT] = ACTIONS(1736),
[anon_sym_AMP_GT] = ACTIONS(2299),
[anon_sym_AMP_GT_GT] = ACTIONS(1736),
[anon_sym_LT_AMP] = ACTIONS(1736),
[anon_sym_GT_AMP] = ACTIONS(1736),
[anon_sym_DQUOTE] = ACTIONS(1736),
[sym_raw_string] = ACTIONS(1736),
[anon_sym_DOLLAR] = ACTIONS(2299),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1736),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1736),
[anon_sym_BQUOTE] = ACTIONS(1736),
[anon_sym_LT_LPAREN] = ACTIONS(1736),
[anon_sym_GT_LPAREN] = ACTIONS(1736),
[sym_word] = ACTIONS(1738),
[sym_comment] = ACTIONS(52),
},
[1328] = {
[anon_sym_AT] = ACTIONS(3146),
[sym_comment] = ACTIONS(52),
},
[1329] = {
[sym_file_descriptor] = ACTIONS(1742),
[sym__concat] = ACTIONS(1742),
[sym_variable_name] = ACTIONS(1742),
[anon_sym_PIPE] = ACTIONS(2303),
[anon_sym_RPAREN] = ACTIONS(1742),
[anon_sym_PIPE_AMP] = ACTIONS(1742),
[anon_sym_AMP_AMP] = ACTIONS(1742),
[anon_sym_PIPE_PIPE] = ACTIONS(2303),
[anon_sym_LT] = ACTIONS(2303),
[anon_sym_GT] = ACTIONS(2303),
[anon_sym_GT_GT] = ACTIONS(1742),
[anon_sym_AMP_GT] = ACTIONS(2303),
[anon_sym_AMP_GT_GT] = ACTIONS(1742),
[anon_sym_LT_AMP] = ACTIONS(1742),
[anon_sym_GT_AMP] = ACTIONS(1742),
[anon_sym_DQUOTE] = ACTIONS(1742),
[sym_raw_string] = ACTIONS(1742),
[anon_sym_DOLLAR] = ACTIONS(2303),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1742),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1742),
[anon_sym_BQUOTE] = ACTIONS(1742),
[anon_sym_LT_LPAREN] = ACTIONS(1742),
[anon_sym_GT_LPAREN] = ACTIONS(1742),
[sym_word] = ACTIONS(1744),
[sym_comment] = ACTIONS(52),
},
[1330] = {
[anon_sym_AT] = ACTIONS(3148),
[sym_comment] = ACTIONS(52),
},
[1331] = {
[anon_sym_RBRACK] = ACTIONS(3150),
[sym_comment] = ACTIONS(52),
},
[1332] = {
[sym_file_descriptor] = ACTIONS(1750),
[sym__concat] = ACTIONS(1750),
[sym_variable_name] = ACTIONS(1750),
[anon_sym_PIPE] = ACTIONS(2309),
[anon_sym_RPAREN] = ACTIONS(1750),
[anon_sym_PIPE_AMP] = ACTIONS(1750),
[anon_sym_AMP_AMP] = ACTIONS(1750),
[anon_sym_PIPE_PIPE] = ACTIONS(2309),
[anon_sym_LT] = ACTIONS(2309),
[anon_sym_GT] = ACTIONS(2309),
[anon_sym_GT_GT] = ACTIONS(1750),
[anon_sym_AMP_GT] = ACTIONS(2309),
[anon_sym_AMP_GT_GT] = ACTIONS(1750),
[anon_sym_LT_AMP] = ACTIONS(1750),
[anon_sym_GT_AMP] = ACTIONS(1750),
[anon_sym_DQUOTE] = ACTIONS(1750),
[sym_raw_string] = ACTIONS(1750),
[anon_sym_DOLLAR] = ACTIONS(2309),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1750),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(1750),
[anon_sym_BQUOTE] = ACTIONS(1750),
[anon_sym_LT_LPAREN] = ACTIONS(1750),
[anon_sym_GT_LPAREN] = ACTIONS(1750),
[sym_word] = ACTIONS(1752),
[sym_comment] = ACTIONS(52),
},
[1333] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(3152),
[sym_comment] = ACTIONS(52),
},
[1334] = {
[anon_sym_RBRACE] = ACTIONS(3152),
[sym_comment] = ACTIONS(52),
},
[1335] = {
[anon_sym_RBRACK] = ACTIONS(3154),
[sym_comment] = ACTIONS(52),
},
[1336] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(3156),
[sym_comment] = ACTIONS(52),
},
[1337] = {
[anon_sym_RBRACE] = ACTIONS(3156),
[sym_comment] = ACTIONS(52),
},
[1338] = {
[anon_sym_PIPE] = ACTIONS(3158),
[anon_sym_RPAREN] = ACTIONS(3160),
[anon_sym_PIPE_AMP] = ACTIONS(3160),
[anon_sym_AMP_AMP] = ACTIONS(3160),
[anon_sym_PIPE_PIPE] = ACTIONS(3160),
[anon_sym_BQUOTE] = ACTIONS(3160),
[sym_comment] = ACTIONS(52),
},
[1339] = {
[anon_sym_PIPE] = ACTIONS(3162),
[anon_sym_RPAREN] = ACTIONS(3164),
[anon_sym_PIPE_AMP] = ACTIONS(3164),
[anon_sym_AMP_AMP] = ACTIONS(3164),
[anon_sym_PIPE_PIPE] = ACTIONS(3164),
[anon_sym_BQUOTE] = ACTIONS(3164),
[sym_comment] = ACTIONS(52),
},
[1340] = {
[anon_sym_fi] = ACTIONS(3166),
[sym_comment] = ACTIONS(52),
},
[1341] = {
[anon_sym_PIPE] = ACTIONS(3168),
[anon_sym_RPAREN] = ACTIONS(3170),
[anon_sym_PIPE_AMP] = ACTIONS(3170),
[anon_sym_AMP_AMP] = ACTIONS(3170),
[anon_sym_PIPE_PIPE] = ACTIONS(3170),
[anon_sym_BQUOTE] = ACTIONS(3170),
[sym_comment] = ACTIONS(52),
},
[1342] = {
[sym_case_item] = STATE(782),
[sym_concatenation] = STATE(783),
[sym_string] = STATE(781),
[sym_simple_expansion] = STATE(781),
[sym_expansion] = STATE(781),
[sym_command_substitution] = STATE(781),
[sym_process_substitution] = STATE(781),
[aux_sym_case_statement_repeat1] = STATE(1070),
[anon_sym_esac] = ACTIONS(3172),
[anon_sym_DQUOTE] = ACTIONS(284),
[sym_raw_string] = ACTIONS(1544),
[anon_sym_DOLLAR] = ACTIONS(288),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(290),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(292),
[anon_sym_BQUOTE] = ACTIONS(294),
[anon_sym_LT_LPAREN] = ACTIONS(296),
[anon_sym_GT_LPAREN] = ACTIONS(296),
[sym_word] = ACTIONS(1546),
[sym_comment] = ACTIONS(52),
},
[1343] = {
[anon_sym_PIPE] = ACTIONS(3174),
[anon_sym_RPAREN] = ACTIONS(3176),
[anon_sym_PIPE_AMP] = ACTIONS(3176),
[anon_sym_AMP_AMP] = ACTIONS(3176),
[anon_sym_PIPE_PIPE] = ACTIONS(3176),
[anon_sym_BQUOTE] = ACTIONS(3176),
[sym_comment] = ACTIONS(52),
},
[1344] = {
[sym_variable_name] = ACTIONS(2144),
[anon_sym_PIPE] = ACTIONS(2840),
[anon_sym_RPAREN] = ACTIONS(2144),
[anon_sym_PIPE_AMP] = ACTIONS(2144),
[anon_sym_AMP_AMP] = ACTIONS(2144),
[anon_sym_PIPE_PIPE] = ACTIONS(2144),
[anon_sym_BQUOTE] = ACTIONS(2144),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(2840),
},
[1345] = {
[sym__concat] = ACTIONS(1088),
[sym_variable_name] = ACTIONS(1088),
[anon_sym_PIPE] = ACTIONS(1611),
[anon_sym_RPAREN] = 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(52),
[sym_simple_variable_name] = ACTIONS(1611),
},
[1346] = {
[sym__concat] = ACTIONS(1109),
[sym_variable_name] = ACTIONS(1109),
[anon_sym_PIPE] = ACTIONS(1613),
[anon_sym_RPAREN] = ACTIONS(1109),
[anon_sym_PIPE_AMP] = ACTIONS(1109),
[anon_sym_AMP_AMP] = ACTIONS(1109),
[anon_sym_PIPE_PIPE] = ACTIONS(1109),
[anon_sym_BQUOTE] = ACTIONS(1109),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(1613),
},
[1347] = {
[aux_sym_concatenation_repeat1] = STATE(1347),
[sym__concat] = ACTIONS(3178),
[sym_variable_name] = ACTIONS(1109),
[anon_sym_PIPE] = ACTIONS(1613),
[anon_sym_RPAREN] = ACTIONS(1109),
[anon_sym_PIPE_AMP] = ACTIONS(1109),
[anon_sym_AMP_AMP] = ACTIONS(1109),
[anon_sym_PIPE_PIPE] = ACTIONS(1109),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(1613),
},
[1348] = {
[anon_sym_RBRACE] = ACTIONS(3181),
[anon_sym_LBRACK] = ACTIONS(3183),
[sym_comment] = ACTIONS(52),
},
[1349] = {
[anon_sym_RBRACE] = ACTIONS(3185),
[anon_sym_LBRACK] = ACTIONS(3187),
[sym_comment] = ACTIONS(52),
},
[1350] = {
[sym__concat] = ACTIONS(1124),
[sym_variable_name] = ACTIONS(1124),
[anon_sym_PIPE] = ACTIONS(1626),
[anon_sym_RPAREN] = ACTIONS(1124),
[anon_sym_PIPE_AMP] = ACTIONS(1124),
[anon_sym_AMP_AMP] = ACTIONS(1124),
[anon_sym_PIPE_PIPE] = ACTIONS(1124),
[anon_sym_BQUOTE] = ACTIONS(1124),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(1626),
},
[1351] = {
[anon_sym_AT] = ACTIONS(3189),
[sym_comment] = ACTIONS(52),
},
[1352] = {
[sym_concatenation] = STATE(1470),
[sym_string] = STATE(1469),
[sym_simple_expansion] = STATE(1469),
[sym_expansion] = STATE(1469),
[sym_command_substitution] = STATE(1469),
[sym_process_substitution] = STATE(1469),
[anon_sym_RBRACE] = ACTIONS(3191),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(3193),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(3195),
[sym_comment] = ACTIONS(52),
},
[1353] = {
[sym__concat] = ACTIONS(1136),
[sym_variable_name] = ACTIONS(1136),
[anon_sym_PIPE] = ACTIONS(1636),
[anon_sym_RPAREN] = ACTIONS(1136),
[anon_sym_PIPE_AMP] = ACTIONS(1136),
[anon_sym_AMP_AMP] = ACTIONS(1136),
[anon_sym_PIPE_PIPE] = ACTIONS(1136),
[anon_sym_BQUOTE] = ACTIONS(1136),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(1636),
},
[1354] = {
[anon_sym_AT] = ACTIONS(3197),
[sym_comment] = ACTIONS(52),
},
[1355] = {
[sym_concatenation] = STATE(1473),
[sym_string] = STATE(1472),
[sym_simple_expansion] = STATE(1472),
[sym_expansion] = STATE(1472),
[sym_command_substitution] = STATE(1472),
[sym_process_substitution] = STATE(1472),
[anon_sym_RBRACE] = ACTIONS(3185),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(3199),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(3201),
[sym_comment] = ACTIONS(52),
},
[1356] = {
[sym__concat] = ACTIONS(1238),
[sym_variable_name] = ACTIONS(1238),
[anon_sym_PIPE] = ACTIONS(1644),
[anon_sym_RPAREN] = ACTIONS(1238),
[anon_sym_PIPE_AMP] = ACTIONS(1238),
[anon_sym_AMP_AMP] = ACTIONS(1238),
[anon_sym_PIPE_PIPE] = ACTIONS(1238),
[anon_sym_BQUOTE] = ACTIONS(1238),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(1644),
},
[1357] = {
[sym__concat] = ACTIONS(1296),
[sym_variable_name] = ACTIONS(1296),
[anon_sym_PIPE] = ACTIONS(1646),
[anon_sym_RPAREN] = ACTIONS(1296),
[anon_sym_PIPE_AMP] = ACTIONS(1296),
[anon_sym_AMP_AMP] = ACTIONS(1296),
[anon_sym_PIPE_PIPE] = ACTIONS(1296),
[anon_sym_BQUOTE] = ACTIONS(1296),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(1646),
},
[1358] = {
[anon_sym_RBRACE] = ACTIONS(3203),
[sym_comment] = ACTIONS(52),
},
[1359] = {
[anon_sym_RBRACE] = ACTIONS(3205),
[sym_comment] = ACTIONS(52),
},
[1360] = {
[sym_file_descriptor] = ACTIONS(2832),
[sym__concat] = ACTIONS(2832),
[anon_sym_PIPE] = ACTIONS(3110),
[anon_sym_RPAREN] = ACTIONS(2832),
[anon_sym_PIPE_AMP] = ACTIONS(2832),
[anon_sym_AMP_AMP] = ACTIONS(2832),
[anon_sym_PIPE_PIPE] = ACTIONS(3110),
[anon_sym_LT] = ACTIONS(3110),
[anon_sym_GT] = ACTIONS(3110),
[anon_sym_GT_GT] = ACTIONS(2832),
[anon_sym_AMP_GT] = ACTIONS(3110),
[anon_sym_AMP_GT_GT] = ACTIONS(2832),
[anon_sym_LT_AMP] = ACTIONS(2832),
[anon_sym_GT_AMP] = ACTIONS(2832),
[anon_sym_LT_LT] = ACTIONS(3110),
[anon_sym_LT_LT_DASH] = ACTIONS(2832),
[anon_sym_DQUOTE] = ACTIONS(2832),
[sym_raw_string] = ACTIONS(2832),
[anon_sym_DOLLAR] = ACTIONS(3110),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2832),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2832),
[anon_sym_BQUOTE] = ACTIONS(2832),
[anon_sym_LT_LPAREN] = ACTIONS(2832),
[anon_sym_GT_LPAREN] = ACTIONS(2832),
[sym_word] = ACTIONS(2834),
[sym_comment] = ACTIONS(52),
},
[1361] = {
[sym_file_descriptor] = ACTIONS(2836),
[sym__concat] = ACTIONS(2836),
[anon_sym_PIPE] = ACTIONS(3112),
[anon_sym_RPAREN] = ACTIONS(2836),
[anon_sym_PIPE_AMP] = ACTIONS(2836),
[anon_sym_AMP_AMP] = ACTIONS(2836),
[anon_sym_PIPE_PIPE] = ACTIONS(3112),
[anon_sym_LT] = ACTIONS(3112),
[anon_sym_GT] = ACTIONS(3112),
[anon_sym_GT_GT] = ACTIONS(2836),
[anon_sym_AMP_GT] = ACTIONS(3112),
[anon_sym_AMP_GT_GT] = ACTIONS(2836),
[anon_sym_LT_AMP] = ACTIONS(2836),
[anon_sym_GT_AMP] = ACTIONS(2836),
[anon_sym_LT_LT] = ACTIONS(3112),
[anon_sym_LT_LT_DASH] = ACTIONS(2836),
[anon_sym_DQUOTE] = ACTIONS(2836),
[sym_raw_string] = ACTIONS(2836),
[anon_sym_DOLLAR] = ACTIONS(3112),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2836),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2836),
[anon_sym_BQUOTE] = ACTIONS(2836),
[anon_sym_LT_LPAREN] = ACTIONS(2836),
[anon_sym_GT_LPAREN] = ACTIONS(2836),
[sym_word] = ACTIONS(2838),
[sym_comment] = ACTIONS(52),
},
[1362] = {
[sym__concat] = ACTIONS(1088),
[anon_sym_PIPE] = ACTIONS(1611),
[anon_sym_RPAREN] = 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(52),
},
[1363] = {
[sym__concat] = ACTIONS(1109),
[anon_sym_PIPE] = ACTIONS(1613),
[anon_sym_RPAREN] = ACTIONS(1109),
[anon_sym_PIPE_AMP] = ACTIONS(1109),
[anon_sym_AMP_AMP] = ACTIONS(1109),
[anon_sym_PIPE_PIPE] = ACTIONS(1109),
[anon_sym_BQUOTE] = ACTIONS(1109),
[sym_comment] = ACTIONS(52),
},
[1364] = {
[aux_sym_concatenation_repeat1] = STATE(1364),
[sym__concat] = ACTIONS(3207),
[anon_sym_PIPE] = ACTIONS(1613),
[anon_sym_RPAREN] = ACTIONS(1109),
[anon_sym_PIPE_AMP] = ACTIONS(1109),
[anon_sym_AMP_AMP] = ACTIONS(1109),
[anon_sym_PIPE_PIPE] = ACTIONS(1109),
[sym_comment] = ACTIONS(52),
},
[1365] = {
[anon_sym_RBRACE] = ACTIONS(3210),
[anon_sym_LBRACK] = ACTIONS(3212),
[sym_comment] = ACTIONS(52),
},
[1366] = {
[anon_sym_RBRACE] = ACTIONS(3214),
[anon_sym_LBRACK] = ACTIONS(3216),
[sym_comment] = ACTIONS(52),
},
[1367] = {
[sym__concat] = ACTIONS(1124),
[anon_sym_PIPE] = ACTIONS(1626),
[anon_sym_RPAREN] = ACTIONS(1124),
[anon_sym_PIPE_AMP] = ACTIONS(1124),
[anon_sym_AMP_AMP] = ACTIONS(1124),
[anon_sym_PIPE_PIPE] = ACTIONS(1124),
[anon_sym_BQUOTE] = ACTIONS(1124),
[sym_comment] = ACTIONS(52),
},
[1368] = {
[anon_sym_AT] = ACTIONS(3218),
[sym_comment] = ACTIONS(52),
},
[1369] = {
[sym_concatenation] = STATE(1483),
[sym_string] = STATE(1482),
[sym_simple_expansion] = STATE(1482),
[sym_expansion] = STATE(1482),
[sym_command_substitution] = STATE(1482),
[sym_process_substitution] = STATE(1482),
[anon_sym_RBRACE] = ACTIONS(3220),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(3222),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(3224),
[sym_comment] = ACTIONS(52),
},
[1370] = {
[sym__concat] = ACTIONS(1136),
[anon_sym_PIPE] = ACTIONS(1636),
[anon_sym_RPAREN] = ACTIONS(1136),
[anon_sym_PIPE_AMP] = ACTIONS(1136),
[anon_sym_AMP_AMP] = ACTIONS(1136),
[anon_sym_PIPE_PIPE] = ACTIONS(1136),
[anon_sym_BQUOTE] = ACTIONS(1136),
[sym_comment] = ACTIONS(52),
},
[1371] = {
[anon_sym_AT] = ACTIONS(3226),
[sym_comment] = ACTIONS(52),
},
[1372] = {
[sym_concatenation] = STATE(1486),
[sym_string] = STATE(1485),
[sym_simple_expansion] = STATE(1485),
[sym_expansion] = STATE(1485),
[sym_command_substitution] = STATE(1485),
[sym_process_substitution] = STATE(1485),
[anon_sym_RBRACE] = ACTIONS(3214),
[anon_sym_DQUOTE] = ACTIONS(92),
[sym_raw_string] = ACTIONS(3228),
[anon_sym_DOLLAR] = ACTIONS(96),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(98),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(100),
[anon_sym_BQUOTE] = ACTIONS(102),
[anon_sym_LT_LPAREN] = ACTIONS(104),
[anon_sym_GT_LPAREN] = ACTIONS(104),
[sym_word] = ACTIONS(3230),
[sym_comment] = ACTIONS(52),
},
[1373] = {
[sym__concat] = ACTIONS(1238),
[anon_sym_PIPE] = ACTIONS(1644),
[anon_sym_RPAREN] = ACTIONS(1238),
[anon_sym_PIPE_AMP] = ACTIONS(1238),
[anon_sym_AMP_AMP] = ACTIONS(1238),
[anon_sym_PIPE_PIPE] = ACTIONS(1238),
[anon_sym_BQUOTE] = ACTIONS(1238),
[sym_comment] = ACTIONS(52),
},
[1374] = {
[sym__concat] = ACTIONS(1296),
[anon_sym_PIPE] = ACTIONS(1646),
[anon_sym_RPAREN] = ACTIONS(1296),
[anon_sym_PIPE_AMP] = ACTIONS(1296),
[anon_sym_AMP_AMP] = ACTIONS(1296),
[anon_sym_PIPE_PIPE] = ACTIONS(1296),
[anon_sym_BQUOTE] = ACTIONS(1296),
[sym_comment] = ACTIONS(52),
},
[1375] = {
[sym_file_descriptor] = ACTIONS(1736),
[sym__concat] = ACTIONS(1736),
[anon_sym_PIPE] = ACTIONS(2299),
[anon_sym_RPAREN] = ACTIONS(1736),
[anon_sym_PIPE_AMP] = ACTIONS(1736),
[anon_sym_AMP_AMP] = ACTIONS(1736),
[anon_sym_PIPE_PIPE] = ACTIONS(1736),
[anon_sym_LT] = ACTIONS(2299),
[anon_sym_GT] = ACTIONS(2299),
[anon_sym_GT_GT] = ACTIONS(1736),
[anon_sym_AMP_GT] = ACTIONS(2299),
[anon_sym_AMP_GT_GT] = ACTIONS(1736),
[anon_sym_LT_AMP] = ACTIONS(1736),
[anon_sym_GT_AMP] = ACTIONS(1736),
[anon_sym_LT_LT] = ACTIONS(2299),
[anon_sym_LT_LT_DASH] = ACTIONS(1736),
[anon_sym_BQUOTE] = ACTIONS(1736),
[sym_comment] = ACTIONS(52),
},
[1376] = {
[anon_sym_AT] = ACTIONS(3232),
[sym_comment] = ACTIONS(52),
},
[1377] = {
[sym_file_descriptor] = ACTIONS(1742),
[sym__concat] = ACTIONS(1742),
[anon_sym_PIPE] = ACTIONS(2303),
[anon_sym_RPAREN] = ACTIONS(1742),
[anon_sym_PIPE_AMP] = ACTIONS(1742),
[anon_sym_AMP_AMP] = ACTIONS(1742),
[anon_sym_PIPE_PIPE] = ACTIONS(1742),
[anon_sym_LT] = ACTIONS(2303),
[anon_sym_GT] = ACTIONS(2303),
[anon_sym_GT_GT] = ACTIONS(1742),
[anon_sym_AMP_GT] = ACTIONS(2303),
[anon_sym_AMP_GT_GT] = ACTIONS(1742),
[anon_sym_LT_AMP] = ACTIONS(1742),
[anon_sym_GT_AMP] = ACTIONS(1742),
[anon_sym_LT_LT] = ACTIONS(2303),
[anon_sym_LT_LT_DASH] = ACTIONS(1742),
[anon_sym_BQUOTE] = ACTIONS(1742),
[sym_comment] = ACTIONS(52),
},
[1378] = {
[anon_sym_AT] = ACTIONS(3234),
[sym_comment] = ACTIONS(52),
},
[1379] = {
[anon_sym_RBRACK] = ACTIONS(3236),
[sym_comment] = ACTIONS(52),
},
[1380] = {
[sym_file_descriptor] = ACTIONS(1750),
[sym__concat] = ACTIONS(1750),
[anon_sym_PIPE] = ACTIONS(2309),
[anon_sym_RPAREN] = ACTIONS(1750),
[anon_sym_PIPE_AMP] = ACTIONS(1750),
[anon_sym_AMP_AMP] = ACTIONS(1750),
[anon_sym_PIPE_PIPE] = ACTIONS(1750),
[anon_sym_LT] = ACTIONS(2309),
[anon_sym_GT] = ACTIONS(2309),
[anon_sym_GT_GT] = ACTIONS(1750),
[anon_sym_AMP_GT] = ACTIONS(2309),
[anon_sym_AMP_GT_GT] = ACTIONS(1750),
[anon_sym_LT_AMP] = ACTIONS(1750),
[anon_sym_GT_AMP] = ACTIONS(1750),
[anon_sym_LT_LT] = ACTIONS(2309),
[anon_sym_LT_LT_DASH] = ACTIONS(1750),
[anon_sym_BQUOTE] = ACTIONS(1750),
[sym_comment] = ACTIONS(52),
},
[1381] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(3238),
[sym_comment] = ACTIONS(52),
},
[1382] = {
[anon_sym_RBRACE] = ACTIONS(3238),
[sym_comment] = ACTIONS(52),
},
[1383] = {
[anon_sym_RBRACK] = ACTIONS(3240),
[sym_comment] = ACTIONS(52),
},
[1384] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(3242),
[sym_comment] = ACTIONS(52),
},
[1385] = {
[anon_sym_RBRACE] = ACTIONS(3242),
[sym_comment] = ACTIONS(52),
},
[1386] = {
[aux_sym_concatenation_repeat1] = STATE(1386),
[sym__concat] = ACTIONS(3178),
[sym_variable_name] = ACTIONS(1109),
[anon_sym_PIPE] = ACTIONS(1613),
[anon_sym_PIPE_AMP] = ACTIONS(1109),
[anon_sym_AMP_AMP] = ACTIONS(1109),
[anon_sym_PIPE_PIPE] = ACTIONS(1109),
[anon_sym_BQUOTE] = ACTIONS(1109),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(1613),
},
[1387] = {
[aux_sym_concatenation_repeat1] = STATE(1387),
[sym__concat] = ACTIONS(3207),
[anon_sym_PIPE] = ACTIONS(1613),
[anon_sym_PIPE_AMP] = ACTIONS(1109),
[anon_sym_AMP_AMP] = ACTIONS(1109),
[anon_sym_PIPE_PIPE] = ACTIONS(1109),
[anon_sym_BQUOTE] = ACTIONS(1109),
[sym_comment] = ACTIONS(52),
},
[1388] = {
[sym__concat] = ACTIONS(1736),
[anon_sym_PIPE] = ACTIONS(1738),
[anon_sym_RPAREN] = ACTIONS(1738),
[anon_sym_SEMI_SEMI] = ACTIONS(1738),
[anon_sym_PIPE_AMP] = ACTIONS(1738),
[anon_sym_AMP_AMP] = ACTIONS(1738),
[anon_sym_PIPE_PIPE] = ACTIONS(1738),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1738),
[anon_sym_LF] = ACTIONS(1738),
[anon_sym_AMP] = ACTIONS(1738),
},
[1389] = {
[anon_sym_AT] = ACTIONS(3244),
[sym_comment] = ACTIONS(52),
},
[1390] = {
[sym__concat] = ACTIONS(1742),
[anon_sym_PIPE] = ACTIONS(1744),
[anon_sym_RPAREN] = ACTIONS(1744),
[anon_sym_SEMI_SEMI] = ACTIONS(1744),
[anon_sym_PIPE_AMP] = ACTIONS(1744),
[anon_sym_AMP_AMP] = ACTIONS(1744),
[anon_sym_PIPE_PIPE] = ACTIONS(1744),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1744),
[anon_sym_LF] = ACTIONS(1744),
[anon_sym_AMP] = ACTIONS(1744),
},
[1391] = {
[anon_sym_AT] = ACTIONS(3246),
[sym_comment] = ACTIONS(52),
},
[1392] = {
[anon_sym_RBRACK] = ACTIONS(3248),
[sym_comment] = ACTIONS(52),
},
[1393] = {
[sym__concat] = ACTIONS(1750),
[anon_sym_PIPE] = ACTIONS(1752),
[anon_sym_RPAREN] = ACTIONS(1752),
[anon_sym_SEMI_SEMI] = ACTIONS(1752),
[anon_sym_PIPE_AMP] = ACTIONS(1752),
[anon_sym_AMP_AMP] = ACTIONS(1752),
[anon_sym_PIPE_PIPE] = ACTIONS(1752),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(1752),
[anon_sym_LF] = ACTIONS(1752),
[anon_sym_AMP] = ACTIONS(1752),
},
[1394] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(3250),
[sym_comment] = ACTIONS(52),
},
[1395] = {
[anon_sym_RBRACE] = ACTIONS(3250),
[sym_comment] = ACTIONS(52),
},
[1396] = {
[anon_sym_RBRACK] = ACTIONS(3252),
[sym_comment] = ACTIONS(52),
},
[1397] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(3254),
[sym_comment] = ACTIONS(52),
},
[1398] = {
[anon_sym_RBRACE] = ACTIONS(3254),
[sym_comment] = ACTIONS(52),
},
[1399] = {
[anon_sym_RBRACK] = ACTIONS(3256),
[sym_comment] = ACTIONS(52),
},
[1400] = {
[anon_sym_RBRACK] = ACTIONS(3258),
[sym_comment] = ACTIONS(52),
},
[1401] = {
[anon_sym_RBRACE] = ACTIONS(3260),
[sym_comment] = ACTIONS(52),
},
[1402] = {
[sym_file_descriptor] = ACTIONS(2389),
[sym__concat] = ACTIONS(2389),
[anon_sym_PIPE] = ACTIONS(2391),
[anon_sym_RPAREN] = ACTIONS(2391),
[anon_sym_SEMI_SEMI] = ACTIONS(2391),
[anon_sym_PIPE_AMP] = ACTIONS(2391),
[anon_sym_AMP_AMP] = ACTIONS(2391),
[anon_sym_PIPE_PIPE] = ACTIONS(2391),
[anon_sym_LT] = ACTIONS(2391),
[anon_sym_GT] = ACTIONS(2391),
[anon_sym_GT_GT] = ACTIONS(2391),
[anon_sym_AMP_GT] = ACTIONS(2391),
[anon_sym_AMP_GT_GT] = ACTIONS(2391),
[anon_sym_LT_AMP] = ACTIONS(2391),
[anon_sym_GT_AMP] = ACTIONS(2391),
[anon_sym_LT_LT] = ACTIONS(2391),
[anon_sym_LT_LT_DASH] = ACTIONS(2391),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2391),
[anon_sym_LF] = ACTIONS(2391),
[anon_sym_AMP] = ACTIONS(2391),
},
[1403] = {
[anon_sym_RBRACE] = ACTIONS(3262),
[sym_comment] = ACTIONS(52),
},
[1404] = {
[sym_file_descriptor] = ACTIONS(2395),
[sym__concat] = ACTIONS(2395),
[anon_sym_PIPE] = ACTIONS(2397),
[anon_sym_RPAREN] = ACTIONS(2397),
[anon_sym_SEMI_SEMI] = ACTIONS(2397),
[anon_sym_PIPE_AMP] = ACTIONS(2397),
[anon_sym_AMP_AMP] = ACTIONS(2397),
[anon_sym_PIPE_PIPE] = ACTIONS(2397),
[anon_sym_LT] = ACTIONS(2397),
[anon_sym_GT] = ACTIONS(2397),
[anon_sym_GT_GT] = ACTIONS(2397),
[anon_sym_AMP_GT] = ACTIONS(2397),
[anon_sym_AMP_GT_GT] = ACTIONS(2397),
[anon_sym_LT_AMP] = ACTIONS(2397),
[anon_sym_GT_AMP] = ACTIONS(2397),
[anon_sym_LT_LT] = ACTIONS(2397),
[anon_sym_LT_LT_DASH] = ACTIONS(2397),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2397),
[anon_sym_LF] = ACTIONS(2397),
[anon_sym_AMP] = ACTIONS(2397),
},
[1405] = {
[sym__heredoc_middle] = ACTIONS(1736),
[sym__heredoc_end] = ACTIONS(1736),
[anon_sym_DOLLAR] = ACTIONS(2299),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1736),
[sym_comment] = ACTIONS(52),
},
[1406] = {
[anon_sym_AT] = ACTIONS(3264),
[sym_comment] = ACTIONS(52),
},
[1407] = {
[sym__heredoc_middle] = ACTIONS(1742),
[sym__heredoc_end] = ACTIONS(1742),
[anon_sym_DOLLAR] = ACTIONS(2303),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1742),
[sym_comment] = ACTIONS(52),
},
[1408] = {
[anon_sym_AT] = ACTIONS(3266),
[sym_comment] = ACTIONS(52),
},
[1409] = {
[anon_sym_RBRACK] = ACTIONS(3268),
[sym_comment] = ACTIONS(52),
},
[1410] = {
[sym__heredoc_middle] = ACTIONS(1750),
[sym__heredoc_end] = ACTIONS(1750),
[anon_sym_DOLLAR] = ACTIONS(2309),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(1750),
[sym_comment] = ACTIONS(52),
},
[1411] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(3270),
[sym_comment] = ACTIONS(52),
},
[1412] = {
[anon_sym_RBRACE] = ACTIONS(3270),
[sym_comment] = ACTIONS(52),
},
[1413] = {
[anon_sym_RBRACK] = ACTIONS(3272),
[sym_comment] = ACTIONS(52),
},
[1414] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(3274),
[sym_comment] = ACTIONS(52),
},
[1415] = {
[anon_sym_RBRACE] = ACTIONS(3274),
[sym_comment] = ACTIONS(52),
},
[1416] = {
[anon_sym_RBRACE] = ACTIONS(3276),
[sym_comment] = ACTIONS(52),
},
[1417] = {
[anon_sym_RBRACE] = ACTIONS(3278),
[sym_comment] = ACTIONS(52),
},
[1418] = {
[sym__concat] = ACTIONS(2832),
[anon_sym_PIPE] = ACTIONS(2832),
[anon_sym_RPAREN] = ACTIONS(2832),
[anon_sym_RBRACK] = ACTIONS(2832),
[sym_comment] = ACTIONS(52),
},
[1419] = {
[sym__concat] = ACTIONS(2836),
[anon_sym_PIPE] = ACTIONS(2836),
[anon_sym_RPAREN] = ACTIONS(2836),
[anon_sym_RBRACK] = ACTIONS(2836),
[sym_comment] = ACTIONS(52),
},
[1420] = {
[anon_sym_RBRACK] = ACTIONS(3280),
[sym_comment] = ACTIONS(52),
},
[1421] = {
[anon_sym_RBRACK] = ACTIONS(3282),
[sym_comment] = ACTIONS(52),
},
[1422] = {
[anon_sym_RBRACE] = ACTIONS(3284),
[sym_comment] = ACTIONS(52),
},
[1423] = {
[sym__concat] = ACTIONS(2389),
[anon_sym_RPAREN] = ACTIONS(2389),
[anon_sym_DQUOTE] = ACTIONS(2389),
[sym_raw_string] = ACTIONS(2389),
[anon_sym_DOLLAR] = ACTIONS(2773),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2389),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2389),
[anon_sym_BQUOTE] = ACTIONS(2389),
[anon_sym_LT_LPAREN] = ACTIONS(2389),
[anon_sym_GT_LPAREN] = ACTIONS(2389),
[sym_word] = ACTIONS(2773),
[sym_comment] = ACTIONS(52),
},
[1424] = {
[anon_sym_RBRACE] = ACTIONS(3286),
[sym_comment] = ACTIONS(52),
},
[1425] = {
[sym__concat] = ACTIONS(2395),
[anon_sym_RPAREN] = ACTIONS(2395),
[anon_sym_DQUOTE] = ACTIONS(2395),
[sym_raw_string] = ACTIONS(2395),
[anon_sym_DOLLAR] = ACTIONS(2777),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2395),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2395),
[anon_sym_BQUOTE] = ACTIONS(2395),
[anon_sym_LT_LPAREN] = ACTIONS(2395),
[anon_sym_GT_LPAREN] = ACTIONS(2395),
[sym_word] = ACTIONS(2777),
[sym_comment] = ACTIONS(52),
},
[1426] = {
[anon_sym_RBRACE] = ACTIONS(3288),
[sym_comment] = ACTIONS(52),
},
[1427] = {
[anon_sym_RBRACE] = ACTIONS(3290),
[sym_comment] = ACTIONS(52),
},
[1428] = {
[sym_file_descriptor] = ACTIONS(2832),
[sym__concat] = ACTIONS(2832),
[sym_variable_name] = ACTIONS(2832),
[anon_sym_PIPE] = ACTIONS(2834),
[anon_sym_RPAREN] = ACTIONS(2834),
[anon_sym_SEMI_SEMI] = ACTIONS(2834),
[anon_sym_PIPE_AMP] = ACTIONS(2834),
[anon_sym_AMP_AMP] = ACTIONS(2834),
[anon_sym_PIPE_PIPE] = ACTIONS(2834),
[anon_sym_LT] = ACTIONS(2834),
[anon_sym_GT] = ACTIONS(2834),
[anon_sym_GT_GT] = ACTIONS(2834),
[anon_sym_AMP_GT] = ACTIONS(2834),
[anon_sym_AMP_GT_GT] = ACTIONS(2834),
[anon_sym_LT_AMP] = ACTIONS(2834),
[anon_sym_GT_AMP] = ACTIONS(2834),
[anon_sym_DQUOTE] = ACTIONS(2834),
[sym_raw_string] = ACTIONS(2834),
[anon_sym_DOLLAR] = ACTIONS(2834),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2834),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2834),
[anon_sym_BQUOTE] = ACTIONS(2834),
[anon_sym_LT_LPAREN] = ACTIONS(2834),
[anon_sym_GT_LPAREN] = ACTIONS(2834),
[sym_word] = ACTIONS(2834),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2834),
[anon_sym_LF] = ACTIONS(2834),
[anon_sym_AMP] = ACTIONS(2834),
},
[1429] = {
[sym_file_descriptor] = ACTIONS(2836),
[sym__concat] = ACTIONS(2836),
[sym_variable_name] = ACTIONS(2836),
[anon_sym_PIPE] = ACTIONS(2838),
[anon_sym_RPAREN] = ACTIONS(2838),
[anon_sym_SEMI_SEMI] = ACTIONS(2838),
[anon_sym_PIPE_AMP] = ACTIONS(2838),
[anon_sym_AMP_AMP] = ACTIONS(2838),
[anon_sym_PIPE_PIPE] = ACTIONS(2838),
[anon_sym_LT] = ACTIONS(2838),
[anon_sym_GT] = ACTIONS(2838),
[anon_sym_GT_GT] = ACTIONS(2838),
[anon_sym_AMP_GT] = ACTIONS(2838),
[anon_sym_AMP_GT_GT] = ACTIONS(2838),
[anon_sym_LT_AMP] = ACTIONS(2838),
[anon_sym_GT_AMP] = ACTIONS(2838),
[anon_sym_DQUOTE] = ACTIONS(2838),
[sym_raw_string] = ACTIONS(2838),
[anon_sym_DOLLAR] = ACTIONS(2838),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2838),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2838),
[anon_sym_BQUOTE] = ACTIONS(2838),
[anon_sym_LT_LPAREN] = ACTIONS(2838),
[anon_sym_GT_LPAREN] = ACTIONS(2838),
[sym_word] = ACTIONS(2838),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2838),
[anon_sym_LF] = ACTIONS(2838),
[anon_sym_AMP] = ACTIONS(2838),
},
[1430] = {
[anon_sym_RBRACK] = ACTIONS(3292),
[sym_comment] = ACTIONS(52),
},
[1431] = {
[anon_sym_RBRACK] = ACTIONS(3294),
[sym_comment] = ACTIONS(52),
},
[1432] = {
[anon_sym_RBRACE] = ACTIONS(3296),
[sym_comment] = ACTIONS(52),
},
[1433] = {
[sym__concat] = ACTIONS(2389),
[anon_sym_SEMI_SEMI] = ACTIONS(2391),
[anon_sym_DQUOTE] = ACTIONS(2391),
[sym_raw_string] = ACTIONS(2391),
[anon_sym_DOLLAR] = ACTIONS(2391),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2391),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2391),
[anon_sym_BQUOTE] = ACTIONS(2391),
[anon_sym_LT_LPAREN] = ACTIONS(2391),
[anon_sym_GT_LPAREN] = ACTIONS(2391),
[sym_word] = ACTIONS(2391),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2391),
[anon_sym_LF] = ACTIONS(2391),
[anon_sym_AMP] = ACTIONS(2391),
},
[1434] = {
[anon_sym_RBRACE] = ACTIONS(3298),
[sym_comment] = ACTIONS(52),
},
[1435] = {
[sym__concat] = ACTIONS(2395),
[anon_sym_SEMI_SEMI] = ACTIONS(2397),
[anon_sym_DQUOTE] = ACTIONS(2397),
[sym_raw_string] = ACTIONS(2397),
[anon_sym_DOLLAR] = ACTIONS(2397),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2397),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2397),
[anon_sym_BQUOTE] = ACTIONS(2397),
[anon_sym_LT_LPAREN] = ACTIONS(2397),
[anon_sym_GT_LPAREN] = ACTIONS(2397),
[sym_word] = ACTIONS(2397),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2397),
[anon_sym_LF] = ACTIONS(2397),
[anon_sym_AMP] = ACTIONS(2397),
},
[1436] = {
[anon_sym_esac] = ACTIONS(3300),
[anon_sym_DQUOTE] = ACTIONS(3302),
[sym_raw_string] = ACTIONS(3302),
[anon_sym_DOLLAR] = ACTIONS(3300),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(3302),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(3302),
[anon_sym_BQUOTE] = ACTIONS(3302),
[anon_sym_LT_LPAREN] = ACTIONS(3302),
[anon_sym_GT_LPAREN] = ACTIONS(3302),
[sym_word] = ACTIONS(3304),
[sym_comment] = ACTIONS(52),
},
[1437] = {
[sym__terminated_statement] = STATE(23),
[sym_for_statement] = STATE(24),
[sym_while_statement] = STATE(24),
[sym_if_statement] = STATE(24),
[sym_case_statement] = STATE(24),
[sym_function_definition] = STATE(24),
[sym_subshell] = STATE(24),
[sym_pipeline] = STATE(24),
[sym_list] = STATE(24),
[sym_bracket_command] = STATE(24),
[sym_command] = STATE(24),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(26),
[sym_declaration_command] = STATE(24),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(1437),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(652),
[sym_variable_name] = ACTIONS(655),
[anon_sym_for] = ACTIONS(660),
[anon_sym_while] = ACTIONS(663),
[anon_sym_if] = ACTIONS(666),
[anon_sym_case] = ACTIONS(669),
[anon_sym_SEMI_SEMI] = ACTIONS(658),
[anon_sym_function] = ACTIONS(672),
[anon_sym_LPAREN] = ACTIONS(675),
[anon_sym_LBRACK] = ACTIONS(678),
[anon_sym_LBRACK_LBRACK] = ACTIONS(681),
[anon_sym_declare] = ACTIONS(684),
[anon_sym_typeset] = ACTIONS(684),
[anon_sym_export] = ACTIONS(684),
[anon_sym_readonly] = ACTIONS(684),
[anon_sym_local] = ACTIONS(684),
[anon_sym_LT] = ACTIONS(687),
[anon_sym_GT] = ACTIONS(687),
[anon_sym_GT_GT] = ACTIONS(690),
[anon_sym_AMP_GT] = ACTIONS(687),
[anon_sym_AMP_GT_GT] = ACTIONS(690),
[anon_sym_LT_AMP] = ACTIONS(690),
[anon_sym_GT_AMP] = ACTIONS(690),
[anon_sym_DQUOTE] = ACTIONS(693),
[sym_raw_string] = ACTIONS(696),
[anon_sym_DOLLAR] = ACTIONS(699),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(702),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(705),
[anon_sym_BQUOTE] = ACTIONS(708),
[anon_sym_LT_LPAREN] = ACTIONS(711),
[anon_sym_GT_LPAREN] = ACTIONS(711),
[sym_word] = ACTIONS(714),
[sym_comment] = ACTIONS(52),
},
[1438] = {
[sym__terminated_statement] = STATE(23),
[sym_for_statement] = STATE(24),
[sym_while_statement] = STATE(24),
[sym_if_statement] = STATE(24),
[sym_case_statement] = STATE(24),
[sym_function_definition] = STATE(24),
[sym_subshell] = STATE(24),
[sym_pipeline] = STATE(24),
[sym_list] = STATE(24),
[sym_bracket_command] = STATE(24),
[sym_command] = STATE(24),
[sym_command_name] = STATE(25),
[sym_variable_assignment] = STATE(26),
[sym_declaration_command] = STATE(24),
[sym_subscript] = STATE(27),
[sym_file_redirect] = STATE(28),
[sym_concatenation] = STATE(29),
[sym_string] = STATE(15),
[sym_simple_expansion] = STATE(15),
[sym_expansion] = STATE(15),
[sym_command_substitution] = STATE(15),
[sym_process_substitution] = STATE(15),
[aux_sym_program_repeat1] = STATE(1437),
[aux_sym_command_repeat1] = STATE(31),
[sym_file_descriptor] = ACTIONS(8),
[sym_variable_name] = ACTIONS(10),
[anon_sym_for] = ACTIONS(14),
[anon_sym_while] = ACTIONS(16),
[anon_sym_if] = ACTIONS(18),
[anon_sym_case] = ACTIONS(20),
[anon_sym_SEMI_SEMI] = ACTIONS(3306),
[anon_sym_function] = ACTIONS(22),
[anon_sym_LPAREN] = ACTIONS(24),
[anon_sym_LBRACK] = ACTIONS(26),
[anon_sym_LBRACK_LBRACK] = ACTIONS(28),
[anon_sym_declare] = ACTIONS(30),
[anon_sym_typeset] = ACTIONS(30),
[anon_sym_export] = ACTIONS(30),
[anon_sym_readonly] = ACTIONS(30),
[anon_sym_local] = ACTIONS(30),
[anon_sym_LT] = ACTIONS(32),
[anon_sym_GT] = ACTIONS(32),
[anon_sym_GT_GT] = ACTIONS(34),
[anon_sym_AMP_GT] = ACTIONS(32),
[anon_sym_AMP_GT_GT] = ACTIONS(34),
[anon_sym_LT_AMP] = ACTIONS(34),
[anon_sym_GT_AMP] = ACTIONS(34),
[anon_sym_DQUOTE] = ACTIONS(36),
[sym_raw_string] = ACTIONS(38),
[anon_sym_DOLLAR] = ACTIONS(40),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(42),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(44),
[anon_sym_BQUOTE] = ACTIONS(46),
[anon_sym_LT_LPAREN] = ACTIONS(48),
[anon_sym_GT_LPAREN] = ACTIONS(48),
[sym_word] = ACTIONS(50),
[sym_comment] = ACTIONS(52),
},
[1439] = {
[sym__concat] = ACTIONS(3138),
[anon_sym_in] = ACTIONS(3140),
[anon_sym_SEMI_SEMI] = ACTIONS(3140),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(3140),
[anon_sym_LF] = ACTIONS(3140),
[anon_sym_AMP] = ACTIONS(3140),
},
[1440] = {
[sym__concat] = ACTIONS(3142),
[anon_sym_in] = ACTIONS(3144),
[anon_sym_SEMI_SEMI] = ACTIONS(3144),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(3144),
[anon_sym_LF] = ACTIONS(3144),
[anon_sym_AMP] = ACTIONS(3144),
},
[1441] = {
[sym__concat] = ACTIONS(3138),
[anon_sym_RBRACE] = ACTIONS(3138),
[anon_sym_RBRACK] = ACTIONS(3308),
[anon_sym_DQUOTE] = ACTIONS(3138),
[sym_raw_string] = ACTIONS(3138),
[anon_sym_DOLLAR] = ACTIONS(3308),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(3138),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(3138),
[anon_sym_BQUOTE] = ACTIONS(3138),
[anon_sym_LT_LPAREN] = ACTIONS(3138),
[anon_sym_GT_LPAREN] = ACTIONS(3138),
[sym_word] = ACTIONS(3140),
[sym_comment] = ACTIONS(52),
},
[1442] = {
[sym__concat] = ACTIONS(3142),
[anon_sym_RBRACE] = ACTIONS(3142),
[anon_sym_RBRACK] = ACTIONS(3310),
[anon_sym_DQUOTE] = ACTIONS(3142),
[sym_raw_string] = ACTIONS(3142),
[anon_sym_DOLLAR] = ACTIONS(3310),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(3142),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(3142),
[anon_sym_BQUOTE] = ACTIONS(3142),
[anon_sym_LT_LPAREN] = ACTIONS(3142),
[anon_sym_GT_LPAREN] = ACTIONS(3142),
[sym_word] = ACTIONS(3144),
[sym_comment] = ACTIONS(52),
},
[1443] = {
[sym__concat] = ACTIONS(3138),
[anon_sym_RBRACK_RBRACK] = ACTIONS(3308),
[anon_sym_DQUOTE] = ACTIONS(3138),
[sym_raw_string] = ACTIONS(3138),
[anon_sym_DOLLAR] = ACTIONS(3308),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(3138),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(3138),
[anon_sym_BQUOTE] = ACTIONS(3138),
[anon_sym_LT_LPAREN] = ACTIONS(3138),
[anon_sym_GT_LPAREN] = ACTIONS(3138),
[sym_word] = ACTIONS(3140),
[sym_comment] = ACTIONS(52),
},
[1444] = {
[sym__concat] = ACTIONS(3142),
[anon_sym_RBRACK_RBRACK] = ACTIONS(3310),
[anon_sym_DQUOTE] = ACTIONS(3142),
[sym_raw_string] = ACTIONS(3142),
[anon_sym_DOLLAR] = ACTIONS(3310),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(3142),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(3142),
[anon_sym_BQUOTE] = ACTIONS(3142),
[anon_sym_LT_LPAREN] = ACTIONS(3142),
[anon_sym_GT_LPAREN] = ACTIONS(3142),
[sym_word] = ACTIONS(3144),
[sym_comment] = ACTIONS(52),
},
[1445] = {
[anon_sym_RBRACK] = ACTIONS(3312),
[sym_comment] = ACTIONS(52),
},
[1446] = {
[anon_sym_RBRACK] = ACTIONS(3314),
[sym_comment] = ACTIONS(52),
},
[1447] = {
[anon_sym_RBRACE] = ACTIONS(3316),
[sym_comment] = ACTIONS(52),
},
[1448] = {
[sym__concat] = ACTIONS(2389),
[sym_variable_name] = ACTIONS(2389),
[anon_sym_PIPE] = ACTIONS(2391),
[anon_sym_RPAREN] = ACTIONS(2391),
[anon_sym_SEMI_SEMI] = ACTIONS(2391),
[anon_sym_PIPE_AMP] = ACTIONS(2391),
[anon_sym_AMP_AMP] = ACTIONS(2391),
[anon_sym_PIPE_PIPE] = ACTIONS(2391),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(2391),
[anon_sym_SEMI] = ACTIONS(2391),
[anon_sym_LF] = ACTIONS(2391),
[anon_sym_AMP] = ACTIONS(2391),
},
[1449] = {
[anon_sym_RBRACE] = ACTIONS(3318),
[sym_comment] = ACTIONS(52),
},
[1450] = {
[sym__concat] = ACTIONS(2395),
[sym_variable_name] = ACTIONS(2395),
[anon_sym_PIPE] = ACTIONS(2397),
[anon_sym_RPAREN] = ACTIONS(2397),
[anon_sym_SEMI_SEMI] = ACTIONS(2397),
[anon_sym_PIPE_AMP] = ACTIONS(2397),
[anon_sym_AMP_AMP] = ACTIONS(2397),
[anon_sym_PIPE_PIPE] = ACTIONS(2397),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(2397),
[anon_sym_SEMI] = ACTIONS(2397),
[anon_sym_LF] = ACTIONS(2397),
[anon_sym_AMP] = ACTIONS(2397),
},
[1451] = {
[sym_file_descriptor] = ACTIONS(3138),
[sym__concat] = ACTIONS(3138),
[sym_variable_name] = ACTIONS(3138),
[anon_sym_LT] = ACTIONS(3308),
[anon_sym_GT] = ACTIONS(3308),
[anon_sym_GT_GT] = ACTIONS(3138),
[anon_sym_AMP_GT] = ACTIONS(3308),
[anon_sym_AMP_GT_GT] = ACTIONS(3138),
[anon_sym_LT_AMP] = ACTIONS(3138),
[anon_sym_GT_AMP] = ACTIONS(3138),
[anon_sym_DQUOTE] = ACTIONS(3138),
[sym_raw_string] = ACTIONS(3138),
[anon_sym_DOLLAR] = ACTIONS(3308),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(3138),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(3138),
[anon_sym_BQUOTE] = ACTIONS(3138),
[anon_sym_LT_LPAREN] = ACTIONS(3138),
[anon_sym_GT_LPAREN] = ACTIONS(3138),
[sym_word] = ACTIONS(3308),
[sym_comment] = ACTIONS(52),
},
[1452] = {
[sym_file_descriptor] = ACTIONS(3142),
[sym__concat] = ACTIONS(3142),
[sym_variable_name] = ACTIONS(3142),
[anon_sym_LT] = ACTIONS(3310),
[anon_sym_GT] = ACTIONS(3310),
[anon_sym_GT_GT] = ACTIONS(3142),
[anon_sym_AMP_GT] = ACTIONS(3310),
[anon_sym_AMP_GT_GT] = ACTIONS(3142),
[anon_sym_LT_AMP] = ACTIONS(3142),
[anon_sym_GT_AMP] = ACTIONS(3142),
[anon_sym_DQUOTE] = ACTIONS(3142),
[sym_raw_string] = ACTIONS(3142),
[anon_sym_DOLLAR] = ACTIONS(3310),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(3142),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(3142),
[anon_sym_BQUOTE] = ACTIONS(3142),
[anon_sym_LT_LPAREN] = ACTIONS(3142),
[anon_sym_GT_LPAREN] = ACTIONS(3142),
[sym_word] = ACTIONS(3310),
[sym_comment] = ACTIONS(52),
},
[1453] = {
[anon_sym_DQUOTE] = ACTIONS(3140),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(3308),
[anon_sym_DOLLAR] = ACTIONS(3140),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(3140),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(3140),
[anon_sym_BQUOTE] = ACTIONS(3140),
[sym_comment] = ACTIONS(130),
},
[1454] = {
[anon_sym_DQUOTE] = ACTIONS(3144),
[aux_sym_SLASH_LBRACK_CARET_DQUOTE_BQUOTE_DOLLAR_RBRACK_PLUS_SLASH] = ACTIONS(3310),
[anon_sym_DOLLAR] = ACTIONS(3144),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(3144),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(3144),
[anon_sym_BQUOTE] = ACTIONS(3144),
[sym_comment] = ACTIONS(130),
},
[1455] = {
[anon_sym_RBRACK] = ACTIONS(3320),
[sym_comment] = ACTIONS(52),
},
[1456] = {
[anon_sym_RBRACK] = ACTIONS(3322),
[sym_comment] = ACTIONS(52),
},
[1457] = {
[anon_sym_RBRACE] = ACTIONS(3324),
[sym_comment] = ACTIONS(52),
},
[1458] = {
[sym_file_descriptor] = ACTIONS(2389),
[sym__concat] = ACTIONS(2389),
[sym_variable_name] = ACTIONS(2389),
[anon_sym_PIPE] = ACTIONS(2773),
[anon_sym_RPAREN] = ACTIONS(2389),
[anon_sym_PIPE_AMP] = ACTIONS(2389),
[anon_sym_AMP_AMP] = ACTIONS(2389),
[anon_sym_PIPE_PIPE] = ACTIONS(2773),
[anon_sym_LT] = ACTIONS(2773),
[anon_sym_GT] = ACTIONS(2773),
[anon_sym_GT_GT] = ACTIONS(2389),
[anon_sym_AMP_GT] = ACTIONS(2773),
[anon_sym_AMP_GT_GT] = ACTIONS(2389),
[anon_sym_LT_AMP] = ACTIONS(2389),
[anon_sym_GT_AMP] = ACTIONS(2389),
[anon_sym_DQUOTE] = ACTIONS(2389),
[sym_raw_string] = ACTIONS(2389),
[anon_sym_DOLLAR] = ACTIONS(2773),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2389),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2389),
[anon_sym_BQUOTE] = ACTIONS(2389),
[anon_sym_LT_LPAREN] = ACTIONS(2389),
[anon_sym_GT_LPAREN] = ACTIONS(2389),
[sym_word] = ACTIONS(2391),
[sym_comment] = ACTIONS(52),
},
[1459] = {
[anon_sym_RBRACE] = ACTIONS(3326),
[sym_comment] = ACTIONS(52),
},
[1460] = {
[sym_file_descriptor] = ACTIONS(2395),
[sym__concat] = ACTIONS(2395),
[sym_variable_name] = ACTIONS(2395),
[anon_sym_PIPE] = ACTIONS(2777),
[anon_sym_RPAREN] = ACTIONS(2395),
[anon_sym_PIPE_AMP] = ACTIONS(2395),
[anon_sym_AMP_AMP] = ACTIONS(2395),
[anon_sym_PIPE_PIPE] = ACTIONS(2777),
[anon_sym_LT] = ACTIONS(2777),
[anon_sym_GT] = ACTIONS(2777),
[anon_sym_GT_GT] = ACTIONS(2395),
[anon_sym_AMP_GT] = ACTIONS(2777),
[anon_sym_AMP_GT_GT] = ACTIONS(2395),
[anon_sym_LT_AMP] = ACTIONS(2395),
[anon_sym_GT_AMP] = ACTIONS(2395),
[anon_sym_DQUOTE] = ACTIONS(2395),
[sym_raw_string] = ACTIONS(2395),
[anon_sym_DOLLAR] = ACTIONS(2777),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2395),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2395),
[anon_sym_BQUOTE] = ACTIONS(2395),
[anon_sym_LT_LPAREN] = ACTIONS(2395),
[anon_sym_GT_LPAREN] = ACTIONS(2395),
[sym_word] = ACTIONS(2397),
[sym_comment] = ACTIONS(52),
},
[1461] = {
[anon_sym_PIPE] = ACTIONS(3328),
[anon_sym_RPAREN] = ACTIONS(3330),
[anon_sym_PIPE_AMP] = ACTIONS(3330),
[anon_sym_AMP_AMP] = ACTIONS(3330),
[anon_sym_PIPE_PIPE] = ACTIONS(3330),
[anon_sym_BQUOTE] = ACTIONS(3330),
[sym_comment] = ACTIONS(52),
},
[1462] = {
[anon_sym_PIPE] = ACTIONS(3332),
[anon_sym_RPAREN] = ACTIONS(3334),
[anon_sym_PIPE_AMP] = ACTIONS(3334),
[anon_sym_AMP_AMP] = ACTIONS(3334),
[anon_sym_PIPE_PIPE] = ACTIONS(3334),
[anon_sym_BQUOTE] = ACTIONS(3334),
[sym_comment] = ACTIONS(52),
},
[1463] = {
[sym__concat] = ACTIONS(1736),
[sym_variable_name] = ACTIONS(1736),
[anon_sym_PIPE] = ACTIONS(2299),
[anon_sym_RPAREN] = ACTIONS(1736),
[anon_sym_PIPE_AMP] = ACTIONS(1736),
[anon_sym_AMP_AMP] = ACTIONS(1736),
[anon_sym_PIPE_PIPE] = ACTIONS(1736),
[anon_sym_BQUOTE] = ACTIONS(1736),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(2299),
},
[1464] = {
[anon_sym_AT] = ACTIONS(3336),
[sym_comment] = ACTIONS(52),
},
[1465] = {
[sym__concat] = ACTIONS(1742),
[sym_variable_name] = ACTIONS(1742),
[anon_sym_PIPE] = ACTIONS(2303),
[anon_sym_RPAREN] = ACTIONS(1742),
[anon_sym_PIPE_AMP] = ACTIONS(1742),
[anon_sym_AMP_AMP] = ACTIONS(1742),
[anon_sym_PIPE_PIPE] = ACTIONS(1742),
[anon_sym_BQUOTE] = ACTIONS(1742),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(2303),
},
[1466] = {
[anon_sym_AT] = ACTIONS(3338),
[sym_comment] = ACTIONS(52),
},
[1467] = {
[anon_sym_RBRACK] = ACTIONS(3340),
[sym_comment] = ACTIONS(52),
},
[1468] = {
[sym__concat] = ACTIONS(1750),
[sym_variable_name] = ACTIONS(1750),
[anon_sym_PIPE] = ACTIONS(2309),
[anon_sym_RPAREN] = ACTIONS(1750),
[anon_sym_PIPE_AMP] = ACTIONS(1750),
[anon_sym_AMP_AMP] = ACTIONS(1750),
[anon_sym_PIPE_PIPE] = ACTIONS(1750),
[anon_sym_BQUOTE] = ACTIONS(1750),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(2309),
},
[1469] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(3342),
[sym_comment] = ACTIONS(52),
},
[1470] = {
[anon_sym_RBRACE] = ACTIONS(3342),
[sym_comment] = ACTIONS(52),
},
[1471] = {
[anon_sym_RBRACK] = ACTIONS(3344),
[sym_comment] = ACTIONS(52),
},
[1472] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(3346),
[sym_comment] = ACTIONS(52),
},
[1473] = {
[anon_sym_RBRACE] = ACTIONS(3346),
[sym_comment] = ACTIONS(52),
},
[1474] = {
[sym_file_descriptor] = ACTIONS(3138),
[sym__concat] = ACTIONS(3138),
[anon_sym_PIPE] = ACTIONS(3308),
[anon_sym_RPAREN] = ACTIONS(3138),
[anon_sym_PIPE_AMP] = ACTIONS(3138),
[anon_sym_AMP_AMP] = ACTIONS(3138),
[anon_sym_PIPE_PIPE] = ACTIONS(3308),
[anon_sym_LT] = ACTIONS(3308),
[anon_sym_GT] = ACTIONS(3308),
[anon_sym_GT_GT] = ACTIONS(3138),
[anon_sym_AMP_GT] = ACTIONS(3308),
[anon_sym_AMP_GT_GT] = ACTIONS(3138),
[anon_sym_LT_AMP] = ACTIONS(3138),
[anon_sym_GT_AMP] = ACTIONS(3138),
[anon_sym_LT_LT] = ACTIONS(3308),
[anon_sym_LT_LT_DASH] = ACTIONS(3138),
[anon_sym_DQUOTE] = ACTIONS(3138),
[sym_raw_string] = ACTIONS(3138),
[anon_sym_DOLLAR] = ACTIONS(3308),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(3138),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(3138),
[anon_sym_BQUOTE] = ACTIONS(3138),
[anon_sym_LT_LPAREN] = ACTIONS(3138),
[anon_sym_GT_LPAREN] = ACTIONS(3138),
[sym_word] = ACTIONS(3140),
[sym_comment] = ACTIONS(52),
},
[1475] = {
[sym_file_descriptor] = ACTIONS(3142),
[sym__concat] = ACTIONS(3142),
[anon_sym_PIPE] = ACTIONS(3310),
[anon_sym_RPAREN] = ACTIONS(3142),
[anon_sym_PIPE_AMP] = ACTIONS(3142),
[anon_sym_AMP_AMP] = ACTIONS(3142),
[anon_sym_PIPE_PIPE] = ACTIONS(3310),
[anon_sym_LT] = ACTIONS(3310),
[anon_sym_GT] = ACTIONS(3310),
[anon_sym_GT_GT] = ACTIONS(3142),
[anon_sym_AMP_GT] = ACTIONS(3310),
[anon_sym_AMP_GT_GT] = ACTIONS(3142),
[anon_sym_LT_AMP] = ACTIONS(3142),
[anon_sym_GT_AMP] = ACTIONS(3142),
[anon_sym_LT_LT] = ACTIONS(3310),
[anon_sym_LT_LT_DASH] = ACTIONS(3142),
[anon_sym_DQUOTE] = ACTIONS(3142),
[sym_raw_string] = ACTIONS(3142),
[anon_sym_DOLLAR] = ACTIONS(3310),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(3142),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(3142),
[anon_sym_BQUOTE] = ACTIONS(3142),
[anon_sym_LT_LPAREN] = ACTIONS(3142),
[anon_sym_GT_LPAREN] = ACTIONS(3142),
[sym_word] = ACTIONS(3144),
[sym_comment] = ACTIONS(52),
},
[1476] = {
[sym__concat] = ACTIONS(1736),
[anon_sym_PIPE] = ACTIONS(2299),
[anon_sym_RPAREN] = ACTIONS(1736),
[anon_sym_PIPE_AMP] = ACTIONS(1736),
[anon_sym_AMP_AMP] = ACTIONS(1736),
[anon_sym_PIPE_PIPE] = ACTIONS(1736),
[anon_sym_BQUOTE] = ACTIONS(1736),
[sym_comment] = ACTIONS(52),
},
[1477] = {
[anon_sym_AT] = ACTIONS(3348),
[sym_comment] = ACTIONS(52),
},
[1478] = {
[sym__concat] = ACTIONS(1742),
[anon_sym_PIPE] = ACTIONS(2303),
[anon_sym_RPAREN] = ACTIONS(1742),
[anon_sym_PIPE_AMP] = ACTIONS(1742),
[anon_sym_AMP_AMP] = ACTIONS(1742),
[anon_sym_PIPE_PIPE] = ACTIONS(1742),
[anon_sym_BQUOTE] = ACTIONS(1742),
[sym_comment] = ACTIONS(52),
},
[1479] = {
[anon_sym_AT] = ACTIONS(3350),
[sym_comment] = ACTIONS(52),
},
[1480] = {
[anon_sym_RBRACK] = ACTIONS(3352),
[sym_comment] = ACTIONS(52),
},
[1481] = {
[sym__concat] = ACTIONS(1750),
[anon_sym_PIPE] = ACTIONS(2309),
[anon_sym_RPAREN] = ACTIONS(1750),
[anon_sym_PIPE_AMP] = ACTIONS(1750),
[anon_sym_AMP_AMP] = ACTIONS(1750),
[anon_sym_PIPE_PIPE] = ACTIONS(1750),
[anon_sym_BQUOTE] = ACTIONS(1750),
[sym_comment] = ACTIONS(52),
},
[1482] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(3354),
[sym_comment] = ACTIONS(52),
},
[1483] = {
[anon_sym_RBRACE] = ACTIONS(3354),
[sym_comment] = ACTIONS(52),
},
[1484] = {
[anon_sym_RBRACK] = ACTIONS(3356),
[sym_comment] = ACTIONS(52),
},
[1485] = {
[aux_sym_concatenation_repeat1] = STATE(874),
[sym__concat] = ACTIONS(380),
[anon_sym_RBRACE] = ACTIONS(3358),
[sym_comment] = ACTIONS(52),
},
[1486] = {
[anon_sym_RBRACE] = ACTIONS(3358),
[sym_comment] = ACTIONS(52),
},
[1487] = {
[anon_sym_RBRACK] = ACTIONS(3360),
[sym_comment] = ACTIONS(52),
},
[1488] = {
[anon_sym_RBRACK] = ACTIONS(3362),
[sym_comment] = ACTIONS(52),
},
[1489] = {
[anon_sym_RBRACE] = ACTIONS(3364),
[sym_comment] = ACTIONS(52),
},
[1490] = {
[sym_file_descriptor] = ACTIONS(2389),
[sym__concat] = ACTIONS(2389),
[anon_sym_PIPE] = ACTIONS(2773),
[anon_sym_RPAREN] = ACTIONS(2389),
[anon_sym_PIPE_AMP] = ACTIONS(2389),
[anon_sym_AMP_AMP] = ACTIONS(2389),
[anon_sym_PIPE_PIPE] = ACTIONS(2389),
[anon_sym_LT] = ACTIONS(2773),
[anon_sym_GT] = ACTIONS(2773),
[anon_sym_GT_GT] = ACTIONS(2389),
[anon_sym_AMP_GT] = ACTIONS(2773),
[anon_sym_AMP_GT_GT] = ACTIONS(2389),
[anon_sym_LT_AMP] = ACTIONS(2389),
[anon_sym_GT_AMP] = ACTIONS(2389),
[anon_sym_LT_LT] = ACTIONS(2773),
[anon_sym_LT_LT_DASH] = ACTIONS(2389),
[anon_sym_BQUOTE] = ACTIONS(2389),
[sym_comment] = ACTIONS(52),
},
[1491] = {
[anon_sym_RBRACE] = ACTIONS(3366),
[sym_comment] = ACTIONS(52),
},
[1492] = {
[sym_file_descriptor] = ACTIONS(2395),
[sym__concat] = ACTIONS(2395),
[anon_sym_PIPE] = ACTIONS(2777),
[anon_sym_RPAREN] = ACTIONS(2395),
[anon_sym_PIPE_AMP] = ACTIONS(2395),
[anon_sym_AMP_AMP] = ACTIONS(2395),
[anon_sym_PIPE_PIPE] = ACTIONS(2395),
[anon_sym_LT] = ACTIONS(2777),
[anon_sym_GT] = ACTIONS(2777),
[anon_sym_GT_GT] = ACTIONS(2395),
[anon_sym_AMP_GT] = ACTIONS(2777),
[anon_sym_AMP_GT_GT] = ACTIONS(2395),
[anon_sym_LT_AMP] = ACTIONS(2395),
[anon_sym_GT_AMP] = ACTIONS(2395),
[anon_sym_LT_LT] = ACTIONS(2777),
[anon_sym_LT_LT_DASH] = ACTIONS(2395),
[anon_sym_BQUOTE] = ACTIONS(2395),
[sym_comment] = ACTIONS(52),
},
[1493] = {
[anon_sym_RBRACK] = ACTIONS(3368),
[sym_comment] = ACTIONS(52),
},
[1494] = {
[anon_sym_RBRACK] = ACTIONS(3370),
[sym_comment] = ACTIONS(52),
},
[1495] = {
[anon_sym_RBRACE] = ACTIONS(3372),
[sym_comment] = ACTIONS(52),
},
[1496] = {
[sym__concat] = ACTIONS(2389),
[anon_sym_PIPE] = ACTIONS(2391),
[anon_sym_RPAREN] = ACTIONS(2391),
[anon_sym_SEMI_SEMI] = ACTIONS(2391),
[anon_sym_PIPE_AMP] = ACTIONS(2391),
[anon_sym_AMP_AMP] = ACTIONS(2391),
[anon_sym_PIPE_PIPE] = ACTIONS(2391),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2391),
[anon_sym_LF] = ACTIONS(2391),
[anon_sym_AMP] = ACTIONS(2391),
},
[1497] = {
[anon_sym_RBRACE] = ACTIONS(3374),
[sym_comment] = ACTIONS(52),
},
[1498] = {
[sym__concat] = ACTIONS(2395),
[anon_sym_PIPE] = ACTIONS(2397),
[anon_sym_RPAREN] = ACTIONS(2397),
[anon_sym_SEMI_SEMI] = ACTIONS(2397),
[anon_sym_PIPE_AMP] = ACTIONS(2397),
[anon_sym_AMP_AMP] = ACTIONS(2397),
[anon_sym_PIPE_PIPE] = ACTIONS(2397),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2397),
[anon_sym_LF] = ACTIONS(2397),
[anon_sym_AMP] = ACTIONS(2397),
},
[1499] = {
[anon_sym_RBRACE] = ACTIONS(3376),
[sym_comment] = ACTIONS(52),
},
[1500] = {
[anon_sym_RBRACE] = ACTIONS(3378),
[sym_comment] = ACTIONS(52),
},
[1501] = {
[sym_file_descriptor] = ACTIONS(2832),
[sym__concat] = ACTIONS(2832),
[anon_sym_PIPE] = ACTIONS(2834),
[anon_sym_RPAREN] = ACTIONS(2834),
[anon_sym_SEMI_SEMI] = ACTIONS(2834),
[anon_sym_PIPE_AMP] = ACTIONS(2834),
[anon_sym_AMP_AMP] = ACTIONS(2834),
[anon_sym_PIPE_PIPE] = ACTIONS(2834),
[anon_sym_LT] = ACTIONS(2834),
[anon_sym_GT] = ACTIONS(2834),
[anon_sym_GT_GT] = ACTIONS(2834),
[anon_sym_AMP_GT] = ACTIONS(2834),
[anon_sym_AMP_GT_GT] = ACTIONS(2834),
[anon_sym_LT_AMP] = ACTIONS(2834),
[anon_sym_GT_AMP] = ACTIONS(2834),
[anon_sym_LT_LT] = ACTIONS(2834),
[anon_sym_LT_LT_DASH] = ACTIONS(2834),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2834),
[anon_sym_LF] = ACTIONS(2834),
[anon_sym_AMP] = ACTIONS(2834),
},
[1502] = {
[sym_file_descriptor] = ACTIONS(2836),
[sym__concat] = ACTIONS(2836),
[anon_sym_PIPE] = ACTIONS(2838),
[anon_sym_RPAREN] = ACTIONS(2838),
[anon_sym_SEMI_SEMI] = ACTIONS(2838),
[anon_sym_PIPE_AMP] = ACTIONS(2838),
[anon_sym_AMP_AMP] = ACTIONS(2838),
[anon_sym_PIPE_PIPE] = ACTIONS(2838),
[anon_sym_LT] = ACTIONS(2838),
[anon_sym_GT] = ACTIONS(2838),
[anon_sym_GT_GT] = ACTIONS(2838),
[anon_sym_AMP_GT] = ACTIONS(2838),
[anon_sym_AMP_GT_GT] = ACTIONS(2838),
[anon_sym_LT_AMP] = ACTIONS(2838),
[anon_sym_GT_AMP] = ACTIONS(2838),
[anon_sym_LT_LT] = ACTIONS(2838),
[anon_sym_LT_LT_DASH] = ACTIONS(2838),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2838),
[anon_sym_LF] = ACTIONS(2838),
[anon_sym_AMP] = ACTIONS(2838),
},
[1503] = {
[anon_sym_RBRACK] = ACTIONS(3380),
[sym_comment] = ACTIONS(52),
},
[1504] = {
[anon_sym_RBRACK] = ACTIONS(3382),
[sym_comment] = ACTIONS(52),
},
[1505] = {
[anon_sym_RBRACE] = ACTIONS(3384),
[sym_comment] = ACTIONS(52),
},
[1506] = {
[sym__heredoc_middle] = ACTIONS(2389),
[sym__heredoc_end] = ACTIONS(2389),
[anon_sym_DOLLAR] = ACTIONS(2773),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2389),
[sym_comment] = ACTIONS(52),
},
[1507] = {
[anon_sym_RBRACE] = ACTIONS(3386),
[sym_comment] = ACTIONS(52),
},
[1508] = {
[sym__heredoc_middle] = ACTIONS(2395),
[sym__heredoc_end] = ACTIONS(2395),
[anon_sym_DOLLAR] = ACTIONS(2777),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2395),
[sym_comment] = ACTIONS(52),
},
[1509] = {
[sym__concat] = ACTIONS(3138),
[anon_sym_PIPE] = ACTIONS(3138),
[anon_sym_RPAREN] = ACTIONS(3138),
[anon_sym_RBRACK] = ACTIONS(3138),
[sym_comment] = ACTIONS(52),
},
[1510] = {
[sym__concat] = ACTIONS(3142),
[anon_sym_PIPE] = ACTIONS(3142),
[anon_sym_RPAREN] = ACTIONS(3142),
[anon_sym_RBRACK] = ACTIONS(3142),
[sym_comment] = ACTIONS(52),
},
[1511] = {
[anon_sym_RBRACE] = ACTIONS(3388),
[sym_comment] = ACTIONS(52),
},
[1512] = {
[anon_sym_RBRACE] = ACTIONS(3390),
[sym_comment] = ACTIONS(52),
},
[1513] = {
[sym__concat] = ACTIONS(2832),
[anon_sym_RPAREN] = ACTIONS(2832),
[anon_sym_DQUOTE] = ACTIONS(2832),
[sym_raw_string] = ACTIONS(2832),
[anon_sym_DOLLAR] = ACTIONS(3110),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2832),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2832),
[anon_sym_BQUOTE] = ACTIONS(2832),
[anon_sym_LT_LPAREN] = ACTIONS(2832),
[anon_sym_GT_LPAREN] = ACTIONS(2832),
[sym_word] = ACTIONS(3110),
[sym_comment] = ACTIONS(52),
},
[1514] = {
[sym__concat] = ACTIONS(2836),
[anon_sym_RPAREN] = ACTIONS(2836),
[anon_sym_DQUOTE] = ACTIONS(2836),
[sym_raw_string] = ACTIONS(2836),
[anon_sym_DOLLAR] = ACTIONS(3112),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2836),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2836),
[anon_sym_BQUOTE] = ACTIONS(2836),
[anon_sym_LT_LPAREN] = ACTIONS(2836),
[anon_sym_GT_LPAREN] = ACTIONS(2836),
[sym_word] = ACTIONS(3112),
[sym_comment] = ACTIONS(52),
},
[1515] = {
[sym_file_descriptor] = ACTIONS(3138),
[sym__concat] = ACTIONS(3138),
[sym_variable_name] = ACTIONS(3138),
[anon_sym_PIPE] = ACTIONS(3140),
[anon_sym_RPAREN] = ACTIONS(3140),
[anon_sym_SEMI_SEMI] = ACTIONS(3140),
[anon_sym_PIPE_AMP] = ACTIONS(3140),
[anon_sym_AMP_AMP] = ACTIONS(3140),
[anon_sym_PIPE_PIPE] = ACTIONS(3140),
[anon_sym_LT] = ACTIONS(3140),
[anon_sym_GT] = ACTIONS(3140),
[anon_sym_GT_GT] = ACTIONS(3140),
[anon_sym_AMP_GT] = ACTIONS(3140),
[anon_sym_AMP_GT_GT] = ACTIONS(3140),
[anon_sym_LT_AMP] = ACTIONS(3140),
[anon_sym_GT_AMP] = ACTIONS(3140),
[anon_sym_DQUOTE] = ACTIONS(3140),
[sym_raw_string] = ACTIONS(3140),
[anon_sym_DOLLAR] = ACTIONS(3140),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(3140),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(3140),
[anon_sym_BQUOTE] = ACTIONS(3140),
[anon_sym_LT_LPAREN] = ACTIONS(3140),
[anon_sym_GT_LPAREN] = ACTIONS(3140),
[sym_word] = ACTIONS(3140),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(3140),
[anon_sym_LF] = ACTIONS(3140),
[anon_sym_AMP] = ACTIONS(3140),
},
[1516] = {
[sym_file_descriptor] = ACTIONS(3142),
[sym__concat] = ACTIONS(3142),
[sym_variable_name] = ACTIONS(3142),
[anon_sym_PIPE] = ACTIONS(3144),
[anon_sym_RPAREN] = ACTIONS(3144),
[anon_sym_SEMI_SEMI] = ACTIONS(3144),
[anon_sym_PIPE_AMP] = ACTIONS(3144),
[anon_sym_AMP_AMP] = ACTIONS(3144),
[anon_sym_PIPE_PIPE] = ACTIONS(3144),
[anon_sym_LT] = ACTIONS(3144),
[anon_sym_GT] = ACTIONS(3144),
[anon_sym_GT_GT] = ACTIONS(3144),
[anon_sym_AMP_GT] = ACTIONS(3144),
[anon_sym_AMP_GT_GT] = ACTIONS(3144),
[anon_sym_LT_AMP] = ACTIONS(3144),
[anon_sym_GT_AMP] = ACTIONS(3144),
[anon_sym_DQUOTE] = ACTIONS(3144),
[sym_raw_string] = ACTIONS(3144),
[anon_sym_DOLLAR] = ACTIONS(3144),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(3144),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(3144),
[anon_sym_BQUOTE] = ACTIONS(3144),
[anon_sym_LT_LPAREN] = ACTIONS(3144),
[anon_sym_GT_LPAREN] = ACTIONS(3144),
[sym_word] = ACTIONS(3144),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(3144),
[anon_sym_LF] = ACTIONS(3144),
[anon_sym_AMP] = ACTIONS(3144),
},
[1517] = {
[anon_sym_RBRACE] = ACTIONS(3392),
[sym_comment] = ACTIONS(52),
},
[1518] = {
[anon_sym_RBRACE] = ACTIONS(3394),
[sym_comment] = ACTIONS(52),
},
[1519] = {
[sym__concat] = ACTIONS(2832),
[anon_sym_SEMI_SEMI] = ACTIONS(2834),
[anon_sym_DQUOTE] = ACTIONS(2834),
[sym_raw_string] = ACTIONS(2834),
[anon_sym_DOLLAR] = ACTIONS(2834),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2834),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2834),
[anon_sym_BQUOTE] = ACTIONS(2834),
[anon_sym_LT_LPAREN] = ACTIONS(2834),
[anon_sym_GT_LPAREN] = ACTIONS(2834),
[sym_word] = ACTIONS(2834),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2834),
[anon_sym_LF] = ACTIONS(2834),
[anon_sym_AMP] = ACTIONS(2834),
},
[1520] = {
[sym__concat] = ACTIONS(2836),
[anon_sym_SEMI_SEMI] = ACTIONS(2838),
[anon_sym_DQUOTE] = ACTIONS(2838),
[sym_raw_string] = ACTIONS(2838),
[anon_sym_DOLLAR] = ACTIONS(2838),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2838),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2838),
[anon_sym_BQUOTE] = ACTIONS(2838),
[anon_sym_LT_LPAREN] = ACTIONS(2838),
[anon_sym_GT_LPAREN] = ACTIONS(2838),
[sym_word] = ACTIONS(2838),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2838),
[anon_sym_LF] = ACTIONS(2838),
[anon_sym_AMP] = ACTIONS(2838),
},
[1521] = {
[anon_sym_esac] = ACTIONS(3396),
[anon_sym_DQUOTE] = ACTIONS(3398),
[sym_raw_string] = ACTIONS(3398),
[anon_sym_DOLLAR] = ACTIONS(3396),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(3398),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(3398),
[anon_sym_BQUOTE] = ACTIONS(3398),
[anon_sym_LT_LPAREN] = ACTIONS(3398),
[anon_sym_GT_LPAREN] = ACTIONS(3398),
[sym_word] = ACTIONS(3400),
[sym_comment] = ACTIONS(52),
},
[1522] = {
[anon_sym_RBRACE] = ACTIONS(3402),
[sym_comment] = ACTIONS(52),
},
[1523] = {
[anon_sym_RBRACE] = ACTIONS(3404),
[sym_comment] = ACTIONS(52),
},
[1524] = {
[sym__concat] = ACTIONS(2832),
[sym_variable_name] = ACTIONS(2832),
[anon_sym_PIPE] = ACTIONS(2834),
[anon_sym_RPAREN] = ACTIONS(2834),
[anon_sym_SEMI_SEMI] = ACTIONS(2834),
[anon_sym_PIPE_AMP] = ACTIONS(2834),
[anon_sym_AMP_AMP] = ACTIONS(2834),
[anon_sym_PIPE_PIPE] = ACTIONS(2834),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(2834),
[anon_sym_SEMI] = ACTIONS(2834),
[anon_sym_LF] = ACTIONS(2834),
[anon_sym_AMP] = ACTIONS(2834),
},
[1525] = {
[sym__concat] = ACTIONS(2836),
[sym_variable_name] = ACTIONS(2836),
[anon_sym_PIPE] = ACTIONS(2838),
[anon_sym_RPAREN] = ACTIONS(2838),
[anon_sym_SEMI_SEMI] = ACTIONS(2838),
[anon_sym_PIPE_AMP] = ACTIONS(2838),
[anon_sym_AMP_AMP] = ACTIONS(2838),
[anon_sym_PIPE_PIPE] = ACTIONS(2838),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(2838),
[anon_sym_SEMI] = ACTIONS(2838),
[anon_sym_LF] = ACTIONS(2838),
[anon_sym_AMP] = ACTIONS(2838),
},
[1526] = {
[anon_sym_RBRACE] = ACTIONS(3406),
[sym_comment] = ACTIONS(52),
},
[1527] = {
[anon_sym_RBRACE] = ACTIONS(3408),
[sym_comment] = ACTIONS(52),
},
[1528] = {
[sym_file_descriptor] = ACTIONS(2832),
[sym__concat] = ACTIONS(2832),
[sym_variable_name] = ACTIONS(2832),
[anon_sym_PIPE] = ACTIONS(3110),
[anon_sym_RPAREN] = ACTIONS(2832),
[anon_sym_PIPE_AMP] = ACTIONS(2832),
[anon_sym_AMP_AMP] = ACTIONS(2832),
[anon_sym_PIPE_PIPE] = ACTIONS(3110),
[anon_sym_LT] = ACTIONS(3110),
[anon_sym_GT] = ACTIONS(3110),
[anon_sym_GT_GT] = ACTIONS(2832),
[anon_sym_AMP_GT] = ACTIONS(3110),
[anon_sym_AMP_GT_GT] = ACTIONS(2832),
[anon_sym_LT_AMP] = ACTIONS(2832),
[anon_sym_GT_AMP] = ACTIONS(2832),
[anon_sym_DQUOTE] = ACTIONS(2832),
[sym_raw_string] = ACTIONS(2832),
[anon_sym_DOLLAR] = ACTIONS(3110),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2832),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2832),
[anon_sym_BQUOTE] = ACTIONS(2832),
[anon_sym_LT_LPAREN] = ACTIONS(2832),
[anon_sym_GT_LPAREN] = ACTIONS(2832),
[sym_word] = ACTIONS(2834),
[sym_comment] = ACTIONS(52),
},
[1529] = {
[sym_file_descriptor] = ACTIONS(2836),
[sym__concat] = ACTIONS(2836),
[sym_variable_name] = ACTIONS(2836),
[anon_sym_PIPE] = ACTIONS(3112),
[anon_sym_RPAREN] = ACTIONS(2836),
[anon_sym_PIPE_AMP] = ACTIONS(2836),
[anon_sym_AMP_AMP] = ACTIONS(2836),
[anon_sym_PIPE_PIPE] = ACTIONS(3112),
[anon_sym_LT] = ACTIONS(3112),
[anon_sym_GT] = ACTIONS(3112),
[anon_sym_GT_GT] = ACTIONS(2836),
[anon_sym_AMP_GT] = ACTIONS(3112),
[anon_sym_AMP_GT_GT] = ACTIONS(2836),
[anon_sym_LT_AMP] = ACTIONS(2836),
[anon_sym_GT_AMP] = ACTIONS(2836),
[anon_sym_DQUOTE] = ACTIONS(2836),
[sym_raw_string] = ACTIONS(2836),
[anon_sym_DOLLAR] = ACTIONS(3112),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2836),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(2836),
[anon_sym_BQUOTE] = ACTIONS(2836),
[anon_sym_LT_LPAREN] = ACTIONS(2836),
[anon_sym_GT_LPAREN] = ACTIONS(2836),
[sym_word] = ACTIONS(2838),
[sym_comment] = ACTIONS(52),
},
[1530] = {
[anon_sym_RBRACK] = ACTIONS(3410),
[sym_comment] = ACTIONS(52),
},
[1531] = {
[anon_sym_RBRACK] = ACTIONS(3412),
[sym_comment] = ACTIONS(52),
},
[1532] = {
[anon_sym_RBRACE] = ACTIONS(3414),
[sym_comment] = ACTIONS(52),
},
[1533] = {
[sym__concat] = ACTIONS(2389),
[sym_variable_name] = ACTIONS(2389),
[anon_sym_PIPE] = ACTIONS(2773),
[anon_sym_RPAREN] = ACTIONS(2389),
[anon_sym_PIPE_AMP] = ACTIONS(2389),
[anon_sym_AMP_AMP] = ACTIONS(2389),
[anon_sym_PIPE_PIPE] = ACTIONS(2389),
[anon_sym_BQUOTE] = ACTIONS(2389),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(2773),
},
[1534] = {
[anon_sym_RBRACE] = ACTIONS(3416),
[sym_comment] = ACTIONS(52),
},
[1535] = {
[sym__concat] = ACTIONS(2395),
[sym_variable_name] = ACTIONS(2395),
[anon_sym_PIPE] = ACTIONS(2777),
[anon_sym_RPAREN] = ACTIONS(2395),
[anon_sym_PIPE_AMP] = ACTIONS(2395),
[anon_sym_AMP_AMP] = ACTIONS(2395),
[anon_sym_PIPE_PIPE] = ACTIONS(2395),
[anon_sym_BQUOTE] = ACTIONS(2395),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(2777),
},
[1536] = {
[anon_sym_RBRACK] = ACTIONS(3418),
[sym_comment] = ACTIONS(52),
},
[1537] = {
[anon_sym_RBRACK] = ACTIONS(3420),
[sym_comment] = ACTIONS(52),
},
[1538] = {
[anon_sym_RBRACE] = ACTIONS(3422),
[sym_comment] = ACTIONS(52),
},
[1539] = {
[sym__concat] = ACTIONS(2389),
[anon_sym_PIPE] = ACTIONS(2773),
[anon_sym_RPAREN] = ACTIONS(2389),
[anon_sym_PIPE_AMP] = ACTIONS(2389),
[anon_sym_AMP_AMP] = ACTIONS(2389),
[anon_sym_PIPE_PIPE] = ACTIONS(2389),
[anon_sym_BQUOTE] = ACTIONS(2389),
[sym_comment] = ACTIONS(52),
},
[1540] = {
[anon_sym_RBRACE] = ACTIONS(3424),
[sym_comment] = ACTIONS(52),
},
[1541] = {
[sym__concat] = ACTIONS(2395),
[anon_sym_PIPE] = ACTIONS(2777),
[anon_sym_RPAREN] = ACTIONS(2395),
[anon_sym_PIPE_AMP] = ACTIONS(2395),
[anon_sym_AMP_AMP] = ACTIONS(2395),
[anon_sym_PIPE_PIPE] = ACTIONS(2395),
[anon_sym_BQUOTE] = ACTIONS(2395),
[sym_comment] = ACTIONS(52),
},
[1542] = {
[anon_sym_RBRACE] = ACTIONS(3426),
[sym_comment] = ACTIONS(52),
},
[1543] = {
[anon_sym_RBRACE] = ACTIONS(3428),
[sym_comment] = ACTIONS(52),
},
[1544] = {
[sym_file_descriptor] = ACTIONS(2832),
[sym__concat] = ACTIONS(2832),
[anon_sym_PIPE] = ACTIONS(3110),
[anon_sym_RPAREN] = ACTIONS(2832),
[anon_sym_PIPE_AMP] = ACTIONS(2832),
[anon_sym_AMP_AMP] = ACTIONS(2832),
[anon_sym_PIPE_PIPE] = ACTIONS(2832),
[anon_sym_LT] = ACTIONS(3110),
[anon_sym_GT] = ACTIONS(3110),
[anon_sym_GT_GT] = ACTIONS(2832),
[anon_sym_AMP_GT] = ACTIONS(3110),
[anon_sym_AMP_GT_GT] = ACTIONS(2832),
[anon_sym_LT_AMP] = ACTIONS(2832),
[anon_sym_GT_AMP] = ACTIONS(2832),
[anon_sym_LT_LT] = ACTIONS(3110),
[anon_sym_LT_LT_DASH] = ACTIONS(2832),
[anon_sym_BQUOTE] = ACTIONS(2832),
[sym_comment] = ACTIONS(52),
},
[1545] = {
[sym_file_descriptor] = ACTIONS(2836),
[sym__concat] = ACTIONS(2836),
[anon_sym_PIPE] = ACTIONS(3112),
[anon_sym_RPAREN] = ACTIONS(2836),
[anon_sym_PIPE_AMP] = ACTIONS(2836),
[anon_sym_AMP_AMP] = ACTIONS(2836),
[anon_sym_PIPE_PIPE] = ACTIONS(2836),
[anon_sym_LT] = ACTIONS(3112),
[anon_sym_GT] = ACTIONS(3112),
[anon_sym_GT_GT] = ACTIONS(2836),
[anon_sym_AMP_GT] = ACTIONS(3112),
[anon_sym_AMP_GT_GT] = ACTIONS(2836),
[anon_sym_LT_AMP] = ACTIONS(2836),
[anon_sym_GT_AMP] = ACTIONS(2836),
[anon_sym_LT_LT] = ACTIONS(3112),
[anon_sym_LT_LT_DASH] = ACTIONS(2836),
[anon_sym_BQUOTE] = ACTIONS(2836),
[sym_comment] = ACTIONS(52),
},
[1546] = {
[anon_sym_RBRACE] = ACTIONS(3430),
[sym_comment] = ACTIONS(52),
},
[1547] = {
[anon_sym_RBRACE] = ACTIONS(3432),
[sym_comment] = ACTIONS(52),
},
[1548] = {
[sym__concat] = ACTIONS(2832),
[anon_sym_PIPE] = ACTIONS(2834),
[anon_sym_RPAREN] = ACTIONS(2834),
[anon_sym_SEMI_SEMI] = ACTIONS(2834),
[anon_sym_PIPE_AMP] = ACTIONS(2834),
[anon_sym_AMP_AMP] = ACTIONS(2834),
[anon_sym_PIPE_PIPE] = ACTIONS(2834),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2834),
[anon_sym_LF] = ACTIONS(2834),
[anon_sym_AMP] = ACTIONS(2834),
},
[1549] = {
[sym__concat] = ACTIONS(2836),
[anon_sym_PIPE] = ACTIONS(2838),
[anon_sym_RPAREN] = ACTIONS(2838),
[anon_sym_SEMI_SEMI] = ACTIONS(2838),
[anon_sym_PIPE_AMP] = ACTIONS(2838),
[anon_sym_AMP_AMP] = ACTIONS(2838),
[anon_sym_PIPE_PIPE] = ACTIONS(2838),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(2838),
[anon_sym_LF] = ACTIONS(2838),
[anon_sym_AMP] = ACTIONS(2838),
},
[1550] = {
[sym_file_descriptor] = ACTIONS(3138),
[sym__concat] = ACTIONS(3138),
[anon_sym_PIPE] = ACTIONS(3140),
[anon_sym_RPAREN] = ACTIONS(3140),
[anon_sym_SEMI_SEMI] = ACTIONS(3140),
[anon_sym_PIPE_AMP] = ACTIONS(3140),
[anon_sym_AMP_AMP] = ACTIONS(3140),
[anon_sym_PIPE_PIPE] = ACTIONS(3140),
[anon_sym_LT] = ACTIONS(3140),
[anon_sym_GT] = ACTIONS(3140),
[anon_sym_GT_GT] = ACTIONS(3140),
[anon_sym_AMP_GT] = ACTIONS(3140),
[anon_sym_AMP_GT_GT] = ACTIONS(3140),
[anon_sym_LT_AMP] = ACTIONS(3140),
[anon_sym_GT_AMP] = ACTIONS(3140),
[anon_sym_LT_LT] = ACTIONS(3140),
[anon_sym_LT_LT_DASH] = ACTIONS(3140),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(3140),
[anon_sym_LF] = ACTIONS(3140),
[anon_sym_AMP] = ACTIONS(3140),
},
[1551] = {
[sym_file_descriptor] = ACTIONS(3142),
[sym__concat] = ACTIONS(3142),
[anon_sym_PIPE] = ACTIONS(3144),
[anon_sym_RPAREN] = ACTIONS(3144),
[anon_sym_SEMI_SEMI] = ACTIONS(3144),
[anon_sym_PIPE_AMP] = ACTIONS(3144),
[anon_sym_AMP_AMP] = ACTIONS(3144),
[anon_sym_PIPE_PIPE] = ACTIONS(3144),
[anon_sym_LT] = ACTIONS(3144),
[anon_sym_GT] = ACTIONS(3144),
[anon_sym_GT_GT] = ACTIONS(3144),
[anon_sym_AMP_GT] = ACTIONS(3144),
[anon_sym_AMP_GT_GT] = ACTIONS(3144),
[anon_sym_LT_AMP] = ACTIONS(3144),
[anon_sym_GT_AMP] = ACTIONS(3144),
[anon_sym_LT_LT] = ACTIONS(3144),
[anon_sym_LT_LT_DASH] = ACTIONS(3144),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(3144),
[anon_sym_LF] = ACTIONS(3144),
[anon_sym_AMP] = ACTIONS(3144),
},
[1552] = {
[anon_sym_RBRACE] = ACTIONS(3434),
[sym_comment] = ACTIONS(52),
},
[1553] = {
[anon_sym_RBRACE] = ACTIONS(3436),
[sym_comment] = ACTIONS(52),
},
[1554] = {
[sym__heredoc_middle] = ACTIONS(2832),
[sym__heredoc_end] = ACTIONS(2832),
[anon_sym_DOLLAR] = ACTIONS(3110),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2832),
[sym_comment] = ACTIONS(52),
},
[1555] = {
[sym__heredoc_middle] = ACTIONS(2836),
[sym__heredoc_end] = ACTIONS(2836),
[anon_sym_DOLLAR] = ACTIONS(3112),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(2836),
[sym_comment] = ACTIONS(52),
},
[1556] = {
[sym__concat] = ACTIONS(3138),
[anon_sym_RPAREN] = ACTIONS(3138),
[anon_sym_DQUOTE] = ACTIONS(3138),
[sym_raw_string] = ACTIONS(3138),
[anon_sym_DOLLAR] = ACTIONS(3308),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(3138),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(3138),
[anon_sym_BQUOTE] = ACTIONS(3138),
[anon_sym_LT_LPAREN] = ACTIONS(3138),
[anon_sym_GT_LPAREN] = ACTIONS(3138),
[sym_word] = ACTIONS(3308),
[sym_comment] = ACTIONS(52),
},
[1557] = {
[sym__concat] = ACTIONS(3142),
[anon_sym_RPAREN] = ACTIONS(3142),
[anon_sym_DQUOTE] = ACTIONS(3142),
[sym_raw_string] = ACTIONS(3142),
[anon_sym_DOLLAR] = ACTIONS(3310),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(3142),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(3142),
[anon_sym_BQUOTE] = ACTIONS(3142),
[anon_sym_LT_LPAREN] = ACTIONS(3142),
[anon_sym_GT_LPAREN] = ACTIONS(3142),
[sym_word] = ACTIONS(3310),
[sym_comment] = ACTIONS(52),
},
[1558] = {
[sym__concat] = ACTIONS(3138),
[anon_sym_SEMI_SEMI] = ACTIONS(3140),
[anon_sym_DQUOTE] = ACTIONS(3140),
[sym_raw_string] = ACTIONS(3140),
[anon_sym_DOLLAR] = ACTIONS(3140),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(3140),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(3140),
[anon_sym_BQUOTE] = ACTIONS(3140),
[anon_sym_LT_LPAREN] = ACTIONS(3140),
[anon_sym_GT_LPAREN] = ACTIONS(3140),
[sym_word] = ACTIONS(3140),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(3140),
[anon_sym_LF] = ACTIONS(3140),
[anon_sym_AMP] = ACTIONS(3140),
},
[1559] = {
[sym__concat] = ACTIONS(3142),
[anon_sym_SEMI_SEMI] = ACTIONS(3144),
[anon_sym_DQUOTE] = ACTIONS(3144),
[sym_raw_string] = ACTIONS(3144),
[anon_sym_DOLLAR] = ACTIONS(3144),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(3144),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(3144),
[anon_sym_BQUOTE] = ACTIONS(3144),
[anon_sym_LT_LPAREN] = ACTIONS(3144),
[anon_sym_GT_LPAREN] = ACTIONS(3144),
[sym_word] = ACTIONS(3144),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(3144),
[anon_sym_LF] = ACTIONS(3144),
[anon_sym_AMP] = ACTIONS(3144),
},
[1560] = {
[sym__concat] = ACTIONS(3138),
[sym_variable_name] = ACTIONS(3138),
[anon_sym_PIPE] = ACTIONS(3140),
[anon_sym_RPAREN] = ACTIONS(3140),
[anon_sym_SEMI_SEMI] = ACTIONS(3140),
[anon_sym_PIPE_AMP] = ACTIONS(3140),
[anon_sym_AMP_AMP] = ACTIONS(3140),
[anon_sym_PIPE_PIPE] = ACTIONS(3140),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(3140),
[anon_sym_SEMI] = ACTIONS(3140),
[anon_sym_LF] = ACTIONS(3140),
[anon_sym_AMP] = ACTIONS(3140),
},
[1561] = {
[sym__concat] = ACTIONS(3142),
[sym_variable_name] = ACTIONS(3142),
[anon_sym_PIPE] = ACTIONS(3144),
[anon_sym_RPAREN] = ACTIONS(3144),
[anon_sym_SEMI_SEMI] = ACTIONS(3144),
[anon_sym_PIPE_AMP] = ACTIONS(3144),
[anon_sym_AMP_AMP] = ACTIONS(3144),
[anon_sym_PIPE_PIPE] = ACTIONS(3144),
[sym_comment] = ACTIONS(130),
[sym_simple_variable_name] = ACTIONS(3144),
[anon_sym_SEMI] = ACTIONS(3144),
[anon_sym_LF] = ACTIONS(3144),
[anon_sym_AMP] = ACTIONS(3144),
},
[1562] = {
[sym_file_descriptor] = ACTIONS(3138),
[sym__concat] = ACTIONS(3138),
[sym_variable_name] = ACTIONS(3138),
[anon_sym_PIPE] = ACTIONS(3308),
[anon_sym_RPAREN] = ACTIONS(3138),
[anon_sym_PIPE_AMP] = ACTIONS(3138),
[anon_sym_AMP_AMP] = ACTIONS(3138),
[anon_sym_PIPE_PIPE] = ACTIONS(3308),
[anon_sym_LT] = ACTIONS(3308),
[anon_sym_GT] = ACTIONS(3308),
[anon_sym_GT_GT] = ACTIONS(3138),
[anon_sym_AMP_GT] = ACTIONS(3308),
[anon_sym_AMP_GT_GT] = ACTIONS(3138),
[anon_sym_LT_AMP] = ACTIONS(3138),
[anon_sym_GT_AMP] = ACTIONS(3138),
[anon_sym_DQUOTE] = ACTIONS(3138),
[sym_raw_string] = ACTIONS(3138),
[anon_sym_DOLLAR] = ACTIONS(3308),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(3138),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(3138),
[anon_sym_BQUOTE] = ACTIONS(3138),
[anon_sym_LT_LPAREN] = ACTIONS(3138),
[anon_sym_GT_LPAREN] = ACTIONS(3138),
[sym_word] = ACTIONS(3140),
[sym_comment] = ACTIONS(52),
},
[1563] = {
[sym_file_descriptor] = ACTIONS(3142),
[sym__concat] = ACTIONS(3142),
[sym_variable_name] = ACTIONS(3142),
[anon_sym_PIPE] = ACTIONS(3310),
[anon_sym_RPAREN] = ACTIONS(3142),
[anon_sym_PIPE_AMP] = ACTIONS(3142),
[anon_sym_AMP_AMP] = ACTIONS(3142),
[anon_sym_PIPE_PIPE] = ACTIONS(3310),
[anon_sym_LT] = ACTIONS(3310),
[anon_sym_GT] = ACTIONS(3310),
[anon_sym_GT_GT] = ACTIONS(3142),
[anon_sym_AMP_GT] = ACTIONS(3310),
[anon_sym_AMP_GT_GT] = ACTIONS(3142),
[anon_sym_LT_AMP] = ACTIONS(3142),
[anon_sym_GT_AMP] = ACTIONS(3142),
[anon_sym_DQUOTE] = ACTIONS(3142),
[sym_raw_string] = ACTIONS(3142),
[anon_sym_DOLLAR] = ACTIONS(3310),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(3142),
[anon_sym_DOLLAR_LPAREN] = ACTIONS(3142),
[anon_sym_BQUOTE] = ACTIONS(3142),
[anon_sym_LT_LPAREN] = ACTIONS(3142),
[anon_sym_GT_LPAREN] = ACTIONS(3142),
[sym_word] = ACTIONS(3144),
[sym_comment] = ACTIONS(52),
},
[1564] = {
[anon_sym_RBRACE] = ACTIONS(3438),
[sym_comment] = ACTIONS(52),
},
[1565] = {
[anon_sym_RBRACE] = ACTIONS(3440),
[sym_comment] = ACTIONS(52),
},
[1566] = {
[sym__concat] = ACTIONS(2832),
[sym_variable_name] = ACTIONS(2832),
[anon_sym_PIPE] = ACTIONS(3110),
[anon_sym_RPAREN] = ACTIONS(2832),
[anon_sym_PIPE_AMP] = ACTIONS(2832),
[anon_sym_AMP_AMP] = ACTIONS(2832),
[anon_sym_PIPE_PIPE] = ACTIONS(2832),
[anon_sym_BQUOTE] = ACTIONS(2832),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(3110),
},
[1567] = {
[sym__concat] = ACTIONS(2836),
[sym_variable_name] = ACTIONS(2836),
[anon_sym_PIPE] = ACTIONS(3112),
[anon_sym_RPAREN] = ACTIONS(2836),
[anon_sym_PIPE_AMP] = ACTIONS(2836),
[anon_sym_AMP_AMP] = ACTIONS(2836),
[anon_sym_PIPE_PIPE] = ACTIONS(2836),
[anon_sym_BQUOTE] = ACTIONS(2836),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(3112),
},
[1568] = {
[anon_sym_RBRACE] = ACTIONS(3442),
[sym_comment] = ACTIONS(52),
},
[1569] = {
[anon_sym_RBRACE] = ACTIONS(3444),
[sym_comment] = ACTIONS(52),
},
[1570] = {
[sym__concat] = ACTIONS(2832),
[anon_sym_PIPE] = ACTIONS(3110),
[anon_sym_RPAREN] = ACTIONS(2832),
[anon_sym_PIPE_AMP] = ACTIONS(2832),
[anon_sym_AMP_AMP] = ACTIONS(2832),
[anon_sym_PIPE_PIPE] = ACTIONS(2832),
[anon_sym_BQUOTE] = ACTIONS(2832),
[sym_comment] = ACTIONS(52),
},
[1571] = {
[sym__concat] = ACTIONS(2836),
[anon_sym_PIPE] = ACTIONS(3112),
[anon_sym_RPAREN] = ACTIONS(2836),
[anon_sym_PIPE_AMP] = ACTIONS(2836),
[anon_sym_AMP_AMP] = ACTIONS(2836),
[anon_sym_PIPE_PIPE] = ACTIONS(2836),
[anon_sym_BQUOTE] = ACTIONS(2836),
[sym_comment] = ACTIONS(52),
},
[1572] = {
[sym_file_descriptor] = ACTIONS(3138),
[sym__concat] = ACTIONS(3138),
[anon_sym_PIPE] = ACTIONS(3308),
[anon_sym_RPAREN] = ACTIONS(3138),
[anon_sym_PIPE_AMP] = ACTIONS(3138),
[anon_sym_AMP_AMP] = ACTIONS(3138),
[anon_sym_PIPE_PIPE] = ACTIONS(3138),
[anon_sym_LT] = ACTIONS(3308),
[anon_sym_GT] = ACTIONS(3308),
[anon_sym_GT_GT] = ACTIONS(3138),
[anon_sym_AMP_GT] = ACTIONS(3308),
[anon_sym_AMP_GT_GT] = ACTIONS(3138),
[anon_sym_LT_AMP] = ACTIONS(3138),
[anon_sym_GT_AMP] = ACTIONS(3138),
[anon_sym_LT_LT] = ACTIONS(3308),
[anon_sym_LT_LT_DASH] = ACTIONS(3138),
[anon_sym_BQUOTE] = ACTIONS(3138),
[sym_comment] = ACTIONS(52),
},
[1573] = {
[sym_file_descriptor] = ACTIONS(3142),
[sym__concat] = ACTIONS(3142),
[anon_sym_PIPE] = ACTIONS(3310),
[anon_sym_RPAREN] = ACTIONS(3142),
[anon_sym_PIPE_AMP] = ACTIONS(3142),
[anon_sym_AMP_AMP] = ACTIONS(3142),
[anon_sym_PIPE_PIPE] = ACTIONS(3142),
[anon_sym_LT] = ACTIONS(3310),
[anon_sym_GT] = ACTIONS(3310),
[anon_sym_GT_GT] = ACTIONS(3142),
[anon_sym_AMP_GT] = ACTIONS(3310),
[anon_sym_AMP_GT_GT] = ACTIONS(3142),
[anon_sym_LT_AMP] = ACTIONS(3142),
[anon_sym_GT_AMP] = ACTIONS(3142),
[anon_sym_LT_LT] = ACTIONS(3310),
[anon_sym_LT_LT_DASH] = ACTIONS(3142),
[anon_sym_BQUOTE] = ACTIONS(3142),
[sym_comment] = ACTIONS(52),
},
[1574] = {
[sym__concat] = ACTIONS(3138),
[anon_sym_PIPE] = ACTIONS(3140),
[anon_sym_RPAREN] = ACTIONS(3140),
[anon_sym_SEMI_SEMI] = ACTIONS(3140),
[anon_sym_PIPE_AMP] = ACTIONS(3140),
[anon_sym_AMP_AMP] = ACTIONS(3140),
[anon_sym_PIPE_PIPE] = ACTIONS(3140),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(3140),
[anon_sym_LF] = ACTIONS(3140),
[anon_sym_AMP] = ACTIONS(3140),
},
[1575] = {
[sym__concat] = ACTIONS(3142),
[anon_sym_PIPE] = ACTIONS(3144),
[anon_sym_RPAREN] = ACTIONS(3144),
[anon_sym_SEMI_SEMI] = ACTIONS(3144),
[anon_sym_PIPE_AMP] = ACTIONS(3144),
[anon_sym_AMP_AMP] = ACTIONS(3144),
[anon_sym_PIPE_PIPE] = ACTIONS(3144),
[sym_comment] = ACTIONS(130),
[anon_sym_SEMI] = ACTIONS(3144),
[anon_sym_LF] = ACTIONS(3144),
[anon_sym_AMP] = ACTIONS(3144),
},
[1576] = {
[sym__heredoc_middle] = ACTIONS(3138),
[sym__heredoc_end] = ACTIONS(3138),
[anon_sym_DOLLAR] = ACTIONS(3308),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(3138),
[sym_comment] = ACTIONS(52),
},
[1577] = {
[sym__heredoc_middle] = ACTIONS(3142),
[sym__heredoc_end] = ACTIONS(3142),
[anon_sym_DOLLAR] = ACTIONS(3310),
[anon_sym_DOLLAR_LBRACE] = ACTIONS(3142),
[sym_comment] = ACTIONS(52),
},
[1578] = {
[sym__concat] = ACTIONS(3138),
[sym_variable_name] = ACTIONS(3138),
[anon_sym_PIPE] = ACTIONS(3308),
[anon_sym_RPAREN] = ACTIONS(3138),
[anon_sym_PIPE_AMP] = ACTIONS(3138),
[anon_sym_AMP_AMP] = ACTIONS(3138),
[anon_sym_PIPE_PIPE] = ACTIONS(3138),
[anon_sym_BQUOTE] = ACTIONS(3138),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(3308),
},
[1579] = {
[sym__concat] = ACTIONS(3142),
[sym_variable_name] = ACTIONS(3142),
[anon_sym_PIPE] = ACTIONS(3310),
[anon_sym_RPAREN] = ACTIONS(3142),
[anon_sym_PIPE_AMP] = ACTIONS(3142),
[anon_sym_AMP_AMP] = ACTIONS(3142),
[anon_sym_PIPE_PIPE] = ACTIONS(3142),
[anon_sym_BQUOTE] = ACTIONS(3142),
[sym_comment] = ACTIONS(52),
[sym_simple_variable_name] = ACTIONS(3310),
},
[1580] = {
[sym__concat] = ACTIONS(3138),
[anon_sym_PIPE] = ACTIONS(3308),
[anon_sym_RPAREN] = ACTIONS(3138),
[anon_sym_PIPE_AMP] = ACTIONS(3138),
[anon_sym_AMP_AMP] = ACTIONS(3138),
[anon_sym_PIPE_PIPE] = ACTIONS(3138),
[anon_sym_BQUOTE] = ACTIONS(3138),
[sym_comment] = ACTIONS(52),
},
[1581] = {
[sym__concat] = ACTIONS(3142),
[anon_sym_PIPE] = ACTIONS(3310),
[anon_sym_RPAREN] = ACTIONS(3142),
[anon_sym_PIPE_AMP] = ACTIONS(3142),
[anon_sym_AMP_AMP] = ACTIONS(3142),
[anon_sym_PIPE_PIPE] = ACTIONS(3142),
[anon_sym_BQUOTE] = ACTIONS(3142),
[sym_comment] = ACTIONS(52),
},
};
static TSParseActionEntry ts_parse_actions[] = {
[0] = {.count = 0, .reusable = false, .depends_on_lookahead = false},
[1] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(),
[3] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, RECOVER(),
[5] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, SHIFT_EXTRA(), RECOVER(),
[8] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2),
[10] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3),
[12] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_program, 0),
[14] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4),
[16] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(5),
[18] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(6),
[20] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(7),
[22] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(8),
[24] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(9),
[26] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(10),
[28] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(11),
[30] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(12),
[32] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(13),
[34] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(13),
[36] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(14),
[38] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(15),
[40] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(16),
[42] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(17),
[44] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(18),
[46] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(19),
[48] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(20),
[50] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(21),
[52] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT_EXTRA(),
[54] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(32),
[56] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(32),
[58] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(33),
[60] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(34),
[62] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(36),
[64] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(41),
[66] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(42),
[68] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(43),
[70] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(44),
[72] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(45),
[74] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(46),
[76] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(47),
[78] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(42),
[80] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(49),
[82] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(50),
[84] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(51),
[86] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(52),
[88] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(53),
[90] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(54),
[92] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(61),
[94] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(62),
[96] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(63),
[98] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(64),
[100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(65),
[102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(66),
[104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(67),
[106] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(62),
[108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(70),
[110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(71),
[112] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(72),
[114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(73),
[116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(74),
[118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(75),
[120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(76),
[122] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(71),
[124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(79),
[126] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 1),
[128] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(80),
[130] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT_EXTRA(),
[132] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(81),
[134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(85),
[136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(86),
[138] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(87),
[140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(88),
[142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(89),
[144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(90),
[146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(91),
[148] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(86),
[150] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(93),
[152] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(94),
[154] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(95),
[156] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(96),
[158] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(97),
[160] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(98),
[162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1),
[164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(100),
[166] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1),
[168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(102),
[170] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(103),
[172] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(102),
[174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(105),
[176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(106),
[178] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(107),
[180] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(105),
[182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(109),
[184] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(110),
[186] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(111),
[188] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(112),
[190] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(113),
[192] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(114),
[194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(115),
[196] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(116),
[198] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(117),
[200] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(118),
[202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(119),
[204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(120),
[206] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(121),
[208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(122),
[210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(123),
[212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(124),
[214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(125),
[216] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(126),
[218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(133),
[220] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(134),
[222] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(135),
[224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(136),
[226] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(137),
[228] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(145),
[230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(146),
[232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, ACCEPT_INPUT(),
[234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1),
[236] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 1),
[238] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1),
[240] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(148),
[242] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(149),
[244] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(150),
[246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(151),
[248] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 1),
[250] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(152),
[252] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(153),
[254] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(14),
[256] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(154),
[258] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(16),
[260] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(17),
[262] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(18),
[264] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(19),
[266] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(20),
[268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true),
[270] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true),
[272] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true),
[274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_program, 1),
[276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(160),
[278] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(15),
[280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(164),
[282] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(164),
[284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(166),
[286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(167),
[288] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(168),
[290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(169),
[292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(170),
[294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(171),
[296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(172),
[298] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(167),
[300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(174),
[302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(175),
[304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(176),
[306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(177),
[308] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(178),
[310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(179),
[312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(180),
[314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(181),
[316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(182),
[318] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(177),
[320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_variable_assignment, 2),
[322] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_variable_assignment, 2),
[324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(183),
[326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(184),
[328] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(186),
[330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(187),
[332] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(188),
[334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(190),
[336] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(191),
[338] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(192),
[340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(194),
[342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(195),
[344] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(194),
[346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(197),
[348] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(198),
[350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(206),
[352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(146),
[354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(208),
[356] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(209),
[358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(210),
[360] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(215),
[362] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(217),
[364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(218),
[366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(219),
[368] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(220),
[370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(221),
[372] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(222),
[374] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(223),
[376] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(53),
[378] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(230),
[380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(232),
[382] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 1),
[384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1),
[386] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1),
[388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(234),
[390] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(235),
[392] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(234),
[394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(237),
[396] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(238),
[398] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(246),
[400] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(62),
[402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(248),
[404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(250),
[406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(252),
[408] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(253),
[410] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(252),
[412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(255),
[414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(256),
[416] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(71),
[418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(265),
[420] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(267),
[422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat2, 1),
[424] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat2, 1),
[426] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 2),
[428] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(271),
[430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2),
[432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(273),
[434] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 2),
[436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(275),
[438] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(276),
[440] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(275),
[442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(278),
[444] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(279),
[446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 2),
[448] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 2),
[450] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 1),
[452] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 1),
[454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(287),
[456] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(288),
[458] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(287),
[460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(290),
[462] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(291),
[464] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(297),
[466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(299),
[468] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(299),
[470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2),
[472] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2),
[474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_special_variable_name, 1),
[476] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_special_variable_name, 1),
[478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 1),
[480] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 1),
[482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2),
[484] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2),
[486] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_special_variable_name, 1),
[488] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(301),
[490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(303),
[492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(304),
[494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(305),
[496] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(305),
[498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(306),
[500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(307),
[502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(308),
[504] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(308),
[506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(309),
[508] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(311),
[510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(314),
[512] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(314),
[514] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(316),
[516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(322),
[518] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 1),
[520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 1),
[522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(323),
[524] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(324),
[526] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(328),
[528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(330),
[530] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_name, 1),
[532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(332),
[534] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(333),
[536] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(332),
[538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(335),
[540] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(336),
[542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(344),
[544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(345),
[546] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(347),
[548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(348),
[550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(347),
[552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(349),
[554] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(350),
[556] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 1),
[558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 1),
[560] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(351),
[562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(351),
[564] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(352),
[566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(352),
[568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(353),
[570] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(353),
[572] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(349),
[574] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(120),
[576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(359),
[578] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(360),
[580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(361),
[582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(366),
[584] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(368),
[586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(368),
[588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(369),
[590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(370),
[592] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(371),
[594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(371),
[596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(372),
[598] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(372),
[600] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(369),
[602] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(136),
[604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(376),
[606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(377),
[608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(378),
[610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(380),
[612] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 2),
[614] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(381),
[616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2),
[618] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__terminated_statement, 2),
[620] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2),
[622] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(387),
[624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(387),
[626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(388),
[628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(389),
[630] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(390),
[632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(391),
[634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(392),
[636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(393),
[638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(394),
[640] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(389),
[642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(396),
[644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(397),
[646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1),
[648] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1),
[650] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 2),
[652] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2),
[655] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3),
[658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2),
[660] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4),
[663] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5),
[666] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6),
[669] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7),
[672] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(8),
[675] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(9),
[678] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(10),
[681] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11),
[684] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(12),
[687] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(13),
[690] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(13),
[693] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14),
[696] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15),
[699] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(16),
[702] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17),
[705] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(18),
[708] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(19),
[711] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(20),
[714] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(21),
[717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(402),
[719] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2),
[722] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(160),
[725] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(13),
[728] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(13),
[731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2),
[733] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2),
[735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3),
[737] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3),
[739] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(405),
[741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(407),
[743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(408),
[745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(410),
[747] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(411),
[749] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(410),
[751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(413),
[753] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(414),
[755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2),
[757] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2),
[759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(422),
[761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(423),
[763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(424),
[765] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(425),
[767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(426),
[769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(427),
[771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(428),
[773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(429),
[775] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(424),
[777] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(432),
[779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(434),
[781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(436),
[783] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(437),
[785] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(436),
[787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(439),
[789] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(440),
[791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(448),
[793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(449),
[795] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(450),
[797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(451),
[799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(452),
[801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(453),
[803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(454),
[805] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(449),
[807] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(457),
[809] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3),
[811] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(462),
[813] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(463),
[815] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(464),
[817] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(472),
[819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(473),
[821] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(473),
[823] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(474),
[825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(475),
[827] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(477),
[829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(479),
[831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(480),
[833] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(481),
[835] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(481),
[837] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(482),
[839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(483),
[841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(484),
[843] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(484),
[845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(485),
[847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(486),
[849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(487),
[851] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3),
[853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(489),
[855] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(489),
[857] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(490),
[859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(492),
[861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(497),
[863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(498),
[865] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(499),
[867] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3),
[869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(500),
[871] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(503),
[873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(503),
[875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(504),
[877] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(504),
[879] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(500),
[881] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(508),
[883] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 2),
[885] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(510),
[887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(511),
[889] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(511),
[891] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_concatenation, 2),
[893] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 1),
[895] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2),
[897] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(513),
[899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(515),
[901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(516),
[903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(517),
[905] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(517),
[907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(518),
[909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(519),
[911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(520),
[913] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(520),
[915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(521),
[917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(522),
[919] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3),
[921] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2),
[923] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(61),
[926] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(62),
[929] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(63),
[932] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(64),
[935] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(65),
[938] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(66),
[941] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(67),
[944] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(62),
[947] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(523),
[949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(524),
[951] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(524),
[953] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(526),
[955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(528),
[957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(529),
[959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(530),
[961] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(530),
[963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(531),
[965] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(532),
[967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(533),
[969] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(533),
[971] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(534),
[973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(535),
[975] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(70),
[978] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(71),
[981] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(72),
[984] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(73),
[987] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(74),
[990] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(75),
[993] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(76),
[996] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(71),
[999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(536),
[1001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(537),
[1003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(538),
[1005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(539),
[1007] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(540),
[1009] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(541),
[1011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(542),
[1013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(543),
[1015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(544),
[1017] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(539),
[1019] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2, .alias_sequence_id = 2),
[1021] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2, .alias_sequence_id = 2),
[1023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2),
[1025] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2),
[1027] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(80),
[1030] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 3),
[1032] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat2, 2), SHIFT_REPEAT(79),
[1035] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat2, 2),
[1037] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat2, 2), SHIFT_REPEAT(81),
[1040] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(545),
[1042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(546),
[1044] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(546),
[1046] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(548),
[1048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(550),
[1050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(551),
[1052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(552),
[1054] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(552),
[1056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(553),
[1058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(554),
[1060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(555),
[1062] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(555),
[1064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(556),
[1066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(557),
[1068] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(558),
[1070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(560),
[1072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(561),
[1074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(562),
[1076] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(562),
[1078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(563),
[1080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(564),
[1082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(565),
[1084] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(565),
[1086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(566),
[1088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 3),
[1090] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 3),
[1092] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2),
[1094] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(94),
[1097] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(95),
[1100] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(96),
[1103] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(97),
[1106] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(98),
[1109] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2),
[1111] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2),
[1113] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(100),
[1116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(567),
[1118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(568),
[1120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(569),
[1122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(570),
[1124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 1),
[1126] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 1),
[1128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(571),
[1130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(572),
[1132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(573),
[1134] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(573),
[1136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3),
[1138] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3),
[1140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(575),
[1142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(576),
[1144] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(576),
[1146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(578),
[1148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(579),
[1150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(580),
[1152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(581),
[1154] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(582),
[1156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(583),
[1158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(584),
[1160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(585),
[1162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(586),
[1164] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(581),
[1166] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_variable_assignment, 2),
[1168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(587),
[1170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(588),
[1172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(590),
[1174] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(591),
[1176] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(592),
[1178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(593),
[1180] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(595),
[1182] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(596),
[1184] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(599),
[1186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(600),
[1188] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(602),
[1190] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat2, 1),
[1192] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 2),
[1194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 2),
[1196] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(606),
[1198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(607),
[1200] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(607),
[1202] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(609),
[1204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(611),
[1206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(612),
[1208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(613),
[1210] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(613),
[1212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(614),
[1214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(615),
[1216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(616),
[1218] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(616),
[1220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(617),
[1222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(618),
[1224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(619),
[1226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(620),
[1228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(622),
[1230] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 2),
[1232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 2),
[1234] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(623),
[1236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(623),
[1238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3),
[1240] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3),
[1242] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(629),
[1244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(629),
[1246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(630),
[1248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(631),
[1250] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(632),
[1252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(633),
[1254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(634),
[1256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(635),
[1258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(636),
[1260] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(631),
[1262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(638),
[1264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(639),
[1266] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 1),
[1268] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 2),
[1270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 2),
[1272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(645),
[1274] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(645),
[1276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(646),
[1278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(648),
[1280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(653),
[1282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(654),
[1284] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(655),
[1286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(655),
[1288] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(659),
[1290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(659),
[1292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(660),
[1294] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(660),
[1296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3),
[1298] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3),
[1300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2),
[1302] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2),
[1304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(666),
[1306] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(668),
[1308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(668),
[1310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(669),
[1312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(670),
[1314] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(671),
[1316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(672),
[1318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(673),
[1320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(674),
[1322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(675),
[1324] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(670),
[1326] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3),
[1328] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true),
[1330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(677),
[1332] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(677),
[1334] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(679),
[1336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(681),
[1338] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2),
[1340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(683),
[1342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(684),
[1344] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(683),
[1346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(686),
[1348] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(687),
[1350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1),
[1352] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1),
[1354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(695),
[1356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(696),
[1358] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(697),
[1360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(698),
[1362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2),
[1364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2),
[1366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2),
[1368] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2),
[1370] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(14),
[1373] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(154),
[1376] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(16),
[1379] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(17),
[1382] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(18),
[1385] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(19),
[1388] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(20),
[1391] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3),
[1393] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(151),
[1396] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2),
[1398] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(152),
[1401] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(153),
[1404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(700),
[1406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(701),
[1408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(702),
[1410] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(702),
[1412] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(704),
[1414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(705),
[1416] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(705),
[1418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4),
[1420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(707),
[1422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(709),
[1424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(710),
[1426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(711),
[1428] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(711),
[1430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(712),
[1432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(713),
[1434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(714),
[1436] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(714),
[1438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(715),
[1440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(716),
[1442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 2),
[1444] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 2),
[1446] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(717),
[1448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(719),
[1450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(721),
[1452] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(722),
[1454] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(721),
[1456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(724),
[1458] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(725),
[1460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(733),
[1462] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(735),
[1464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(736),
[1466] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(736),
[1468] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(738),
[1470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(740),
[1472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(741),
[1474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(742),
[1476] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(742),
[1478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(743),
[1480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(744),
[1482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(745),
[1484] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(745),
[1486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(746),
[1488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(747),
[1490] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(748),
[1492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(750),
[1494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(752),
[1496] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(753),
[1498] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(752),
[1500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(755),
[1502] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(756),
[1504] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(764),
[1506] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(448),
[1508] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(449),
[1510] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(450),
[1512] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(451),
[1514] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(452),
[1516] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(453),
[1518] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(454),
[1520] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2),
[1522] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(766),
[1524] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(767),
[1526] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4),
[1528] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 1),
[1530] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(774),
[1532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1),
[1534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(775),
[1536] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(775),
[1538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(463),
[1540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(464),
[1542] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(780),
[1544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(781),
[1546] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(781),
[1548] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(785),
[1550] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(190),
[1553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(786),
[1555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(787),
[1557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(788),
[1559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(789),
[1561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(790),
[1563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(791),
[1565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(792),
[1567] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(792),
[1569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(794),
[1571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(795),
[1573] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(795),
[1575] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4),
[1577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(799),
[1579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(800),
[1581] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(800),
[1583] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat2, 2), SHIFT_REPEAT(210),
[1586] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(802),
[1588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(802),
[1590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(803),
[1592] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(803),
[1594] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4),
[1596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(804),
[1598] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(804),
[1600] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(223),
[1603] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(221),
[1606] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(222),
[1609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(806),
[1611] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 3),
[1613] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 2),
[1615] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(232),
[1618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(808),
[1620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(809),
[1622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(810),
[1624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(811),
[1626] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 1),
[1628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(812),
[1630] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(813),
[1632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(814),
[1634] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(814),
[1636] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3),
[1638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(816),
[1640] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(817),
[1642] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(817),
[1644] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_substitution, 3),
[1646] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_process_substitution, 3),
[1648] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(250),
[1651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(819),
[1653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(820),
[1655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(821),
[1657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(822),
[1659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(823),
[1661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(824),
[1663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(825),
[1665] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(825),
[1667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(827),
[1669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(828),
[1671] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(828),
[1673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(830),
[1675] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(832),
[1677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(834),
[1679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(836),
[1681] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(837),
[1683] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(836),
[1685] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(839),
[1687] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(840),
[1689] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(273),
[1692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(848),
[1694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(849),
[1696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(850),
[1698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(851),
[1700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(852),
[1702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(853),
[1704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(854),
[1706] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(854),
[1708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(856),
[1710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(857),
[1712] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(857),
[1714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(859),
[1716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(860),
[1718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(861),
[1720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(862),
[1722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(863),
[1724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(864),
[1726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(865),
[1728] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(865),
[1730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(867),
[1732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(868),
[1734] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(868),
[1736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 3),
[1738] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 3),
[1740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(870),
[1742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4),
[1744] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4),
[1746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(871),
[1748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(872),
[1750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 1),
[1752] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 1),
[1754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(873),
[1756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(875),
[1758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(876),
[1760] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__assignment, 2),
[1762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(877),
[1764] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(879),
[1766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(881),
[1768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(883),
[1770] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(884),
[1772] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(883),
[1774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(886),
[1776] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(887),
[1778] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(896),
[1780] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 3),
[1782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3),
[1784] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(898),
[1786] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(902),
[1788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(903),
[1790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(904),
[1792] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3),
[1794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3),
[1796] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 3),
[1798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3),
[1800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(906),
[1802] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(906),
[1804] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(907),
[1806] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bracket_command, 3),
[1808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3),
[1810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(908),
[1812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(909),
[1814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(910),
[1816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(911),
[1818] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(912),
[1820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(913),
[1822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(914),
[1824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(915),
[1826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(916),
[1828] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(911),
[1830] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2, .alias_sequence_id = 2),
[1832] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2),
[1834] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(323),
[1837] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 3),
[1839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 3),
[1841] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat2, 2), SHIFT_REPEAT(322),
[1844] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat2, 2),
[1846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat2, 2),
[1848] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat2, 2), SHIFT_REPEAT(324),
[1851] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(330),
[1854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(917),
[1856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(918),
[1858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(919),
[1860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(920),
[1862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(921),
[1864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(922),
[1866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(923),
[1868] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(923),
[1870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(925),
[1872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(926),
[1874] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(926),
[1876] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2),
[1878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(929),
[1880] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(930),
[1882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(930),
[1884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(931),
[1886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(932),
[1888] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(933),
[1890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(934),
[1892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(935),
[1894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(936),
[1896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(937),
[1898] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(932),
[1900] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pipeline, 3),
[1902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3),
[1904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true),
[1906] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_list, 3, .fragile = true),
[1908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(939),
[1910] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(939),
[1912] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(941),
[1914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(943),
[1916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(945),
[1918] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(946),
[1920] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(945),
[1922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(948),
[1924] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(949),
[1926] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 1),
[1928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(957),
[1930] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc_redirect, 2),
[1932] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(119),
[1935] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(353),
[1938] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(121),
[1941] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(122),
[1944] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(123),
[1947] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(124),
[1950] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(125),
[1953] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(353),
[1956] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 3),
[1958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 3),
[1960] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(350),
[1963] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2),
[1965] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2),
[1967] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(351),
[1970] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(351),
[1973] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(352),
[1976] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(352),
[1979] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(961),
[1981] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(962),
[1983] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(962),
[1985] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat2, 2), SHIFT_REPEAT(361),
[1988] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(964),
[1990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(964),
[1992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(965),
[1994] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(965),
[1996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(966),
[1998] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(966),
[2000] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(372),
[2003] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(372),
[2006] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(370),
[2009] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(371),
[2012] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(371),
[2015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3),
[2017] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3),
[2019] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(970),
[2021] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(970),
[2023] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(972),
[2025] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(974),
[2027] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(976),
[2029] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(977),
[2031] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(976),
[2033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(979),
[2035] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(980),
[2037] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3),
[2039] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(988),
[2041] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(989),
[2043] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(989),
[2045] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(991),
[2047] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(993),
[2049] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(994),
[2051] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(995),
[2053] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(995),
[2055] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(996),
[2057] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(997),
[2059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(998),
[2061] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(998),
[2063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(999),
[2065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1000),
[2067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 1),
[2069] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 1),
[2071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2),
[2073] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2),
[2075] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1001),
[2077] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1002),
[2079] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1001),
[2081] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1004),
[2083] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1005),
[2085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1007),
[2087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1009),
[2089] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4),
[2091] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(407),
[2094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1011),
[2096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1012),
[2098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1013),
[2100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1014),
[2102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1015),
[2104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1016),
[2106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1017),
[2108] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1017),
[2110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1019),
[2112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1020),
[2114] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1020),
[2116] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1022),
[2118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1023),
[2120] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1023),
[2122] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1025),
[2124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1027),
[2126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1028),
[2128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1029),
[2130] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1029),
[2132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1030),
[2134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1031),
[2136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1032),
[2138] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1032),
[2140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1033),
[2142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1034),
[2144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 3),
[2146] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 3),
[2148] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(423),
[2151] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(424),
[2154] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(425),
[2157] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(426),
[2160] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(427),
[2163] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(428),
[2166] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(429),
[2169] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(424),
[2172] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(434),
[2175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1035),
[2177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1036),
[2179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1037),
[2181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1038),
[2183] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1039),
[2185] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1040),
[2187] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1041),
[2189] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1041),
[2191] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1043),
[2193] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1044),
[2195] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1044),
[2197] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1046),
[2199] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1047),
[2201] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1047),
[2203] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1049),
[2205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1051),
[2207] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1052),
[2209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1053),
[2211] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1053),
[2213] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1054),
[2215] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1055),
[2217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1056),
[2219] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1056),
[2221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1057),
[2223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1058),
[2225] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(448),
[2228] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(449),
[2231] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(450),
[2234] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(451),
[2237] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(452),
[2240] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(453),
[2243] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(454),
[2246] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3),
[2248] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2),
[2250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1060),
[2252] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1061),
[2254] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 2),
[2256] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5),
[2258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1063),
[2260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2),
[2262] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(463),
[2265] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5),
[2267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1065),
[2269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1066),
[2271] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 1),
[2273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1),
[2275] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1),
[2277] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1069),
[2279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1072),
[2281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1073),
[2283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1074),
[2285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1075),
[2287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1076),
[2289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1077),
[2291] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5),
[2293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1082),
[2295] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1082),
[2297] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5),
[2299] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 3),
[2301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1085),
[2303] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4),
[2305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1086),
[2307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1087),
[2309] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 1),
[2311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1088),
[2313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1089),
[2315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1090),
[2317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1091),
[2319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1092),
[2321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1093),
[2323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1094),
[2325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1095),
[2327] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1096),
[2329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1097),
[2331] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1098),
[2333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1099),
[2335] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1099),
[2337] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1101),
[2339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1103),
[2341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1104),
[2343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1105),
[2345] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1105),
[2347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1106),
[2349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1107),
[2351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1108),
[2353] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1108),
[2355] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1109),
[2357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1110),
[2359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1111),
[2361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1112),
[2363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1113),
[2365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1114),
[2367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1115),
[2369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1116),
[2371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1117),
[2373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1118),
[2375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1119),
[2377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1120),
[2379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1121),
[2381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1122),
[2383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1123),
[2385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1124),
[2387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1125),
[2389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 1),
[2391] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 1),
[2393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1127),
[2395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5),
[2397] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5),
[2399] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 2),
[2401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1128),
[2403] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1129),
[2405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1130),
[2407] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1130),
[2409] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1132),
[2411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1134),
[2413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1135),
[2415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1136),
[2417] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1136),
[2419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1137),
[2421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1138),
[2423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1139),
[2425] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1139),
[2427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1140),
[2429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1141),
[2431] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1142),
[2433] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 2),
[2435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2),
[2437] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1143),
[2439] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 4),
[2441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4),
[2443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1144),
[2445] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1144),
[2447] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1147),
[2449] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1149),
[2451] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4),
[2453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4),
[2455] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 4),
[2457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4),
[2459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1151),
[2461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1152),
[2463] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1154),
[2465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1156),
[2467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1158),
[2469] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1159),
[2471] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1158),
[2473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1161),
[2475] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1162),
[2477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1170),
[2479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1171),
[2481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1172),
[2483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1173),
[2485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1174),
[2487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1175),
[2489] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3),
[2491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1177),
[2493] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1177),
[2495] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1179),
[2497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1181),
[2499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1183),
[2501] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1184),
[2503] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1183),
[2505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1186),
[2507] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1187),
[2509] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1195),
[2511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1196),
[2513] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1196),
[2515] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1198),
[2517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1200),
[2519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1201),
[2521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1202),
[2523] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1202),
[2525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1203),
[2527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1204),
[2529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1205),
[2531] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1205),
[2533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1206),
[2535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1207),
[2537] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 2),
[2539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1208),
[2541] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 4),
[2543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 4),
[2545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1212),
[2547] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1212),
[2549] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1215),
[2551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1216),
[2553] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1216),
[2555] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1218),
[2557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1220),
[2559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1221),
[2561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1222),
[2563] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1222),
[2565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1223),
[2567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1224),
[2569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1225),
[2571] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1225),
[2573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1226),
[2575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1227),
[2577] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(681),
[2580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1228),
[2582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1229),
[2584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1230),
[2586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1231),
[2588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1232),
[2590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1233),
[2592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1234),
[2594] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1234),
[2596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1236),
[2598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1237),
[2600] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1237),
[2602] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1239),
[2604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1241),
[2606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1242),
[2608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1243),
[2610] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1243),
[2612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1244),
[2614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1245),
[2616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1246),
[2618] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1246),
[2620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3),
[2622] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3),
[2624] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(695),
[2627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2),
[2629] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(697),
[2632] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(698),
[2635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1247),
[2637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1248),
[2639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1249),
[2641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1250),
[2643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1251),
[2645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1252),
[2647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1253),
[2649] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(719),
[2652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1254),
[2654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1255),
[2656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1256),
[2658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1257),
[2660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1258),
[2662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1259),
[2664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1260),
[2666] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1260),
[2668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1262),
[2670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1263),
[2672] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1263),
[2674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1265),
[2676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1266),
[2678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1267),
[2680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1268),
[2682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1269),
[2684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1270),
[2686] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(750),
[2689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1271),
[2691] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1272),
[2693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1273),
[2695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1274),
[2697] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1275),
[2699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1276),
[2701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1277),
[2703] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1277),
[2705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1279),
[2707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1280),
[2709] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1280),
[2711] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6),
[2713] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3),
[2715] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6),
[2717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1283),
[2719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1284),
[2721] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1284),
[2723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1286),
[2725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1288),
[2727] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6),
[2729] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2),
[2731] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(166),
[2734] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(781),
[2737] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(168),
[2740] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(169),
[2743] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(170),
[2746] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(171),
[2749] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(172),
[2752] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(781),
[2755] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1291),
[2757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1292),
[2759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1293),
[2761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1294),
[2763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1295),
[2765] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6),
[2767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1298),
[2769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1299),
[2771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1300),
[2773] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 1),
[2775] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1301),
[2777] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5),
[2779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1302),
[2781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1303),
[2783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1304),
[2785] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1305),
[2787] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(834),
[2790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1306),
[2792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1307),
[2794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1308),
[2796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1309),
[2798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1310),
[2800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1311),
[2802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1312),
[2804] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1312),
[2806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1314),
[2808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1315),
[2810] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1315),
[2812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1317),
[2814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1318),
[2816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1319),
[2818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1320),
[2820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1321),
[2822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1322),
[2824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1323),
[2826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1324),
[2828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1325),
[2830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1326),
[2832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 1),
[2834] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 1),
[2836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6),
[2838] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6),
[2840] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 3),
[2842] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(881),
[2845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1327),
[2847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1328),
[2849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1329),
[2851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1330),
[2853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1331),
[2855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1332),
[2857] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1333),
[2859] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1333),
[2861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1335),
[2863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1336),
[2865] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1336),
[2867] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 3),
[2869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3),
[2871] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5),
[2873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5),
[2875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1339),
[2877] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5),
[2879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5),
[2881] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1341),
[2883] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 5),
[2885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5),
[2887] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 5),
[2889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5),
[2891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1344),
[2893] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1345),
[2895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1346),
[2897] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1346),
[2899] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1348),
[2901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1350),
[2903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1351),
[2905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1352),
[2907] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1352),
[2909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1353),
[2911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1354),
[2913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1355),
[2915] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1355),
[2917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1356),
[2919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1357),
[2921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1358),
[2923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1359),
[2925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1360),
[2927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1361),
[2929] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1362),
[2931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1363),
[2933] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1363),
[2935] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1365),
[2937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1367),
[2939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1368),
[2941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1369),
[2943] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1369),
[2945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1370),
[2947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1371),
[2949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1372),
[2951] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1372),
[2953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1373),
[2955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1374),
[2957] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(943),
[2960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1375),
[2962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1376),
[2964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1377),
[2966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1378),
[2968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1379),
[2970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1380),
[2972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1381),
[2974] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1381),
[2976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1383),
[2978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1384),
[2980] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1384),
[2982] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 3),
[2984] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(974),
[2987] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1388),
[2989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1389),
[2991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1390),
[2993] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1391),
[2995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1392),
[2997] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1393),
[2999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1394),
[3001] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1394),
[3003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1396),
[3005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1397),
[3007] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1397),
[3009] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1399),
[3011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1400),
[3013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1401),
[3015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1402),
[3017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1403),
[3019] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1404),
[3021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1405),
[3023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1406),
[3025] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1407),
[3027] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1408),
[3029] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1409),
[3031] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1410),
[3033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1411),
[3035] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1411),
[3037] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1413),
[3039] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1414),
[3041] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1414),
[3043] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1416),
[3045] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1417),
[3047] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1418),
[3049] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1419),
[3051] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1420),
[3053] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1421),
[3055] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1422),
[3057] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1423),
[3059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1424),
[3061] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1425),
[3063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1426),
[3065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1427),
[3067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1428),
[3069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1429),
[3071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1430),
[3073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1431),
[3075] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1432),
[3077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1433),
[3079] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1434),
[3081] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1435),
[3083] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4),
[3085] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7),
[3087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2),
[3089] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3),
[3091] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3),
[3093] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3),
[3095] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1436),
[3097] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1065),
[3100] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7),
[3102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1439),
[3104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1440),
[3106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1441),
[3108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1442),
[3110] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 1),
[3112] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6),
[3114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1443),
[3116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1444),
[3118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1445),
[3120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1446),
[3122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1447),
[3124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1448),
[3126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1449),
[3128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1450),
[3130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1451),
[3132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1452),
[3134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1453),
[3136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1454),
[3138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 3),
[3140] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 3),
[3142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7),
[3144] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7),
[3146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1455),
[3148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1456),
[3150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1457),
[3152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1458),
[3154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1459),
[3156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1460),
[3158] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6),
[3160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6),
[3162] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 6),
[3164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6),
[3166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1461),
[3168] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6),
[3170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6),
[3172] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1462),
[3174] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 6),
[3176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6),
[3178] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1156),
[3181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1463),
[3183] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1464),
[3185] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1465),
[3187] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1466),
[3189] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1467),
[3191] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1468),
[3193] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1469),
[3195] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1469),
[3197] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1471),
[3199] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1472),
[3201] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1472),
[3203] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1474),
[3205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1475),
[3207] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1181),
[3210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1476),
[3212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1477),
[3214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1478),
[3216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1479),
[3218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1480),
[3220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1481),
[3222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1482),
[3224] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1482),
[3226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1484),
[3228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1485),
[3230] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1485),
[3232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1487),
[3234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1488),
[3236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1489),
[3238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1490),
[3240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1491),
[3242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1492),
[3244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1493),
[3246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1494),
[3248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1495),
[3250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1496),
[3252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1497),
[3254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1498),
[3256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1499),
[3258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1500),
[3260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1501),
[3262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1502),
[3264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1503),
[3266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1504),
[3268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1505),
[3270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1506),
[3272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1507),
[3274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1508),
[3276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1509),
[3278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1510),
[3280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1511),
[3282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1512),
[3284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1513),
[3286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1514),
[3288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1515),
[3290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1516),
[3292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1517),
[3294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1518),
[3296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1519),
[3298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1520),
[3300] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4),
[3302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4),
[3304] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4),
[3306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1521),
[3308] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 3),
[3310] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7),
[3312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1522),
[3314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1523),
[3316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1524),
[3318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1525),
[3320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1526),
[3322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1527),
[3324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1528),
[3326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1529),
[3328] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7),
[3330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7),
[3332] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7),
[3334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7),
[3336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1530),
[3338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1531),
[3340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1532),
[3342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1533),
[3344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1534),
[3346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1535),
[3348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1536),
[3350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1537),
[3352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1538),
[3354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1539),
[3356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1540),
[3358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1541),
[3360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1542),
[3362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1543),
[3364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1544),
[3366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1545),
[3368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1546),
[3370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1547),
[3372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1548),
[3374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1549),
[3376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1550),
[3378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1551),
[3380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1552),
[3382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1553),
[3384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1554),
[3386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1555),
[3388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1556),
[3390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1557),
[3392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1558),
[3394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1559),
[3396] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5),
[3398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5),
[3400] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5),
[3402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1560),
[3404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1561),
[3406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1562),
[3408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1563),
[3410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1564),
[3412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1565),
[3414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1566),
[3416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1567),
[3418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1568),
[3420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1569),
[3422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1570),
[3424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1571),
[3426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1572),
[3428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1573),
[3430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1574),
[3432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1575),
[3434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1576),
[3436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1577),
[3438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1578),
[3440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1579),
[3442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1580),
[3444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1581),
};
void *tree_sitter_bash_external_scanner_create();
void tree_sitter_bash_external_scanner_destroy(void *);
bool tree_sitter_bash_external_scanner_scan(void *, TSLexer *, const bool *);
unsigned tree_sitter_bash_external_scanner_serialize(void *, char *);
void tree_sitter_bash_external_scanner_deserialize(void *, const char *, unsigned);
#ifdef _WIN32
#define extern __declspec(dllexport)
#endif
extern const TSLanguage *tree_sitter_bash() {
static TSLanguage language = {
.version = LANGUAGE_VERSION,
.symbol_count = SYMBOL_COUNT,
.alias_count = ALIAS_COUNT,
.token_count = TOKEN_COUNT,
.symbol_metadata = ts_symbol_metadata,
.parse_table = (const unsigned short *)ts_parse_table,
.parse_actions = ts_parse_actions,
.lex_modes = ts_lex_modes,
.symbol_names = ts_symbol_names,
.alias_sequences = (const TSSymbol *)ts_alias_sequences,
.max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH,
.lex_fn = ts_lex,
.external_token_count = EXTERNAL_TOKEN_COUNT,
.external_scanner = {
(const bool *)ts_external_scanner_states,
ts_external_scanner_symbol_map,
tree_sitter_bash_external_scanner_create,
tree_sitter_bash_external_scanner_destroy,
tree_sitter_bash_external_scanner_scan,
tree_sitter_bash_external_scanner_serialize,
tree_sitter_bash_external_scanner_deserialize,
},
};
return &language;
}