diff --git a/corpus/control_flow.txt b/corpus/control_flow.txt index edf2411..f6a67af 100644 --- a/corpus/control_flow.txt +++ b/corpus/control_flow.txt @@ -137,12 +137,12 @@ function do_yet_another_thing { (program (function_definition - (word) + (variable_name) (compound_statement (command (command_name (word)) (word)))) (function_definition - (word) + (variable_name) (compound_statement (command (command_name (word)) (word)))) (function_definition - (word) + (variable_name) (compound_statement (command (command_name (word)) (word))) (file_redirect (file_descriptor) (word)))) diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 3b7afa3..7726373 100644 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -11,6 +11,23 @@ echo a b (command (command_name (word)) (word)) (command (command_name (word)) (word) (word))) +============================= +Words with special characters +============================= + +echo }}} +echo ]]] === +[[ "35d8b" =~ ^[0-9a-fA-F] ]] || echo {nomatch} + +--- + +(program + (command (command_name (word)) (word)) + (command (command_name (word)) (word) (word)) + (list + (bracket_command (string) (word) (word)) + (command (command_name (word)) (word)))) + ============================= Simple variable expansions ============================= @@ -153,8 +170,8 @@ typeset -i -r var2=42 var3=10 --- (program - (declaration_command (simple_variable_name)) - (declaration_command (argument) (argument) + (declaration_command (variable_name)) + (declaration_command (word) (word) (variable_assignment (variable_name) (word)) (variable_assignment (variable_name) (word)))) @@ -168,7 +185,7 @@ readonly var2=42 --- (program - (declaration_command (simple_variable_name)) + (declaration_command (variable_name)) (declaration_command (variable_assignment (variable_name) (word)))) ========================================= @@ -183,8 +200,10 @@ local -r c (program (declaration_command (variable_assignment (variable_name) (word)) - (simple_variable_name)) - (declaration_command (argument) (simple_variable_name))) + (variable_name)) + (declaration_command + (word) + (variable_name))) ========================================= Variable declaration: export @@ -196,9 +215,9 @@ export FOOBAR PATH="$PATH:/usr/foobar/bin" --- (program - (declaration_command (simple_variable_name)) + (declaration_command (variable_name)) (declaration_command - (simple_variable_name) + (variable_name) (variable_assignment (variable_name) (string (simple_expansion (variable_name)))))) ========================================= diff --git a/grammar.js b/grammar.js index a92d9c3..b39f3c5 100644 --- a/grammar.js +++ b/grammar.js @@ -1,14 +1,3 @@ -const SPECIAL_CHARACTERS = [ - "'", '"', - '<', '>', - '{', '}', - '(', ')', - '`', '$', - '&', ';', - '\\', - '\\s', -]; - module.exports = grammar({ name: 'bash', @@ -18,6 +7,8 @@ module.exports = grammar({ $._expression, $._primary_expression, $._variable_name, + $._simple_variable_name, + $._simple_word, ], externals: $ => [ @@ -26,10 +17,14 @@ module.exports = grammar({ $._heredoc_middle, $._heredoc_end, $.file_descriptor, + $.word, $._empty_value, $._concat, $.variable_name, // Variable name followed by an operator like '=' or '+=' '\n', + ']', + ']]', + '}', ], extras: $ => [ @@ -64,7 +59,7 @@ module.exports = grammar({ for_statement: $ => seq( 'for', - $._variable_name, + $._simple_variable_name, 'in', repeat1($._expression), $._terminator, @@ -125,8 +120,8 @@ module.exports = grammar({ function_definition: $ => seq( choice( - seq('function', $.word, optional(seq('(', ')'))), - seq($.word, '(', ')') + seq('function', $._simple_variable_name, optional(seq('(', ')'))), + seq($._simple_variable_name, '(', ')') ), $.compound_statement, optional($.file_redirect) @@ -190,9 +185,9 @@ module.exports = grammar({ declaration_command: $ => seq( choice('declare', 'typeset', 'export', 'readonly', 'local'), - repeat(alias(seq('-', $.word), 'argument')), repeat(choice( - $.simple_variable_name, + $.word, + $._simple_variable_name, $.variable_assignment )) ), @@ -249,6 +244,7 @@ module.exports = grammar({ _primary_expression: $ => choice( $.word, + $._simple_word, $.string, $.raw_string, $.expansion, @@ -298,14 +294,14 @@ module.exports = grammar({ seq( $._variable_name, choice(':', ':?', '=', ':-', '%', '/'), - optional($._expression) + optional(seq($._expression, optional($._concat))) ) ), '}' ), _variable_name: $ => choice( - alias($.simple_variable_name, $.variable_name), + $._simple_variable_name, $.special_variable_name ), @@ -320,22 +316,16 @@ module.exports = grammar({ ')' ), - word: $ => token(repeat1(choice( - noneOf('#', ...SPECIAL_CHARACTERS), - seq('\\', noneOf('\\s')) - ))), - comment: $ => token(prec(-1, /#.*/)), - simple_variable_name: $ => /\w+/, + _simple_variable_name: $ => alias($.identifier, $.variable_name), + + _simple_word: $ => alias($.identifier, $.word), + + identifier: $ => /\w+/, special_variable_name: $ => choice('*', '@', '#', '?', '-', '$', '!', '0', '_'), _terminator: $ => choice(';', ';;', '\n', '&') } }); - -function noneOf(...characters) { - const negatedString = characters.map(c => c == '\\' ? '\\\\' : c).join('') - return new RegExp('[^' + negatedString + ']') -} diff --git a/src/grammar.json b/src/grammar.json index 6aded22..45888e2 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -83,7 +83,7 @@ }, { "type": "SYMBOL", - "name": "_variable_name" + "name": "_simple_variable_name" }, { "type": "STRING", @@ -329,7 +329,7 @@ }, { "type": "SYMBOL", - "name": "word" + "name": "_simple_variable_name" }, { "type": "CHOICE", @@ -359,7 +359,7 @@ "members": [ { "type": "SYMBOL", - "name": "word" + "name": "_simple_variable_name" }, { "type": "STRING", @@ -658,27 +658,6 @@ } ] }, - { - "type": "REPEAT", - "content": { - "type": "ALIAS", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "-" - }, - { - "type": "SYMBOL", - "name": "word" - } - ] - }, - "named": false, - "value": "argument" - } - }, { "type": "REPEAT", "content": { @@ -686,7 +665,11 @@ "members": [ { "type": "SYMBOL", - "name": "simple_variable_name" + "name": "word" + }, + { + "type": "SYMBOL", + "name": "_simple_variable_name" }, { "type": "SYMBOL", @@ -895,6 +878,10 @@ "type": "SYMBOL", "name": "word" }, + { + "type": "SYMBOL", + "name": "_simple_word" + }, { "type": "SYMBOL", "name": "string" @@ -1141,8 +1128,25 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_expression" + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_concat" + }, + { + "type": "BLANK" + } + ] + } + ] }, { "type": "BLANK" @@ -1163,13 +1167,8 @@ "type": "CHOICE", "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "simple_variable_name" - }, - "named": true, - "value": "variable_name" + "type": "SYMBOL", + "name": "_simple_variable_name" }, { "type": "SYMBOL", @@ -1246,34 +1245,6 @@ } ] }, - "word": { - "type": "TOKEN", - "content": { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[^#'\"<>{}()`$&;\\\\\\s]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\\" - }, - { - "type": "PATTERN", - "value": "[^\\s]" - } - ] - } - ] - } - } - }, "comment": { "type": "TOKEN", "content": { @@ -1285,7 +1256,25 @@ } } }, - "simple_variable_name": { + "_simple_variable_name": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "variable_name" + }, + "_simple_word": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "word" + }, + "identifier": { "type": "PATTERN", "value": "\\w+" }, @@ -1396,6 +1385,10 @@ "type": "SYMBOL", "name": "file_descriptor" }, + { + "type": "SYMBOL", + "name": "word" + }, { "type": "SYMBOL", "name": "_empty_value" @@ -1411,6 +1404,18 @@ { "type": "STRING", "value": "\n" + }, + { + "type": "STRING", + "value": "]" + }, + { + "type": "STRING", + "value": "]]" + }, + { + "type": "STRING", + "value": "}" } ], "inline": [ @@ -1418,6 +1423,8 @@ "_terminator", "_expression", "_primary_expression", - "_variable_name" + "_variable_name", + "_simple_variable_name", + "_simple_word" ] } \ No newline at end of file diff --git a/src/parser.c b/src/parser.c index e384dda..b30df9c 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,11 +6,11 @@ #endif #define LANGUAGE_VERSION 5 -#define STATE_COUNT 1586 -#define SYMBOL_COUNT 124 +#define STATE_COUNT 1662 +#define SYMBOL_COUNT 123 #define ALIAS_COUNT 2 #define TOKEN_COUNT 79 -#define EXTERNAL_TOKEN_COUNT 9 +#define EXTERNAL_TOKEN_COUNT 13 #define MAX_ALIAS_SEQUENCE_LENGTH 7 enum { @@ -19,41 +19,41 @@ enum { 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, + sym_word = 6, + sym__empty_value = 7, + sym__concat = 8, + sym_variable_name = 9, + anon_sym_for = 10, + anon_sym_in = 11, + anon_sym_while = 12, + anon_sym_do = 13, + anon_sym_done = 14, + anon_sym_if = 15, + anon_sym_then = 16, + anon_sym_fi = 17, + anon_sym_elif = 18, + anon_sym_else = 19, + anon_sym_case = 20, + anon_sym_esac = 21, + anon_sym_PIPE = 22, + anon_sym_RPAREN = 23, + anon_sym_SEMI_SEMI = 24, + anon_sym_function = 25, + anon_sym_LPAREN = 26, + anon_sym_LBRACE = 27, + anon_sym_RBRACE = 28, + anon_sym_PIPE_AMP = 29, + anon_sym_AMP_AMP = 30, + anon_sym_PIPE_PIPE = 31, + anon_sym_LBRACK = 32, + anon_sym_RBRACK = 33, + anon_sym_LBRACK_LBRACK = 34, + anon_sym_RBRACK_RBRACK = 35, + anon_sym_declare = 36, + anon_sym_typeset = 37, + anon_sym_export = 38, + anon_sym_readonly = 39, + anon_sym_local = 40, anon_sym_EQ = 41, anon_sym_PLUS_EQ = 42, anon_sym_LT = 43, @@ -81,11 +81,11 @@ enum { 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, + sym_comment = 68, + sym_identifier = 69, + anon_sym_STAR = 70, + anon_sym_QMARK = 71, + anon_sym_DASH = 72, anon_sym_BANG = 73, anon_sym_0 = 74, anon_sym__ = 75, @@ -133,12 +133,11 @@ enum { 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, + aux_sym_heredoc_repeat1 = 120, + aux_sym_concatenation_repeat1 = 121, + aux_sym_string_repeat1 = 122, + alias_sym_variable_name = 123, + alias_sym_word = 124, }; static const char *ts_symbol_names[] = { @@ -147,6 +146,7 @@ static const char *ts_symbol_names[] = { [sym__heredoc_middle] = "_heredoc_middle", [sym__heredoc_end] = "_heredoc_end", [sym_file_descriptor] = "file_descriptor", + [sym_word] = "word", [sym__empty_value] = "_empty_value", [sym__concat] = "_concat", [sym_variable_name] = "variable_name", @@ -182,7 +182,6 @@ static const char *ts_symbol_names[] = { [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] = "<", @@ -210,11 +209,11 @@ static const char *ts_symbol_names[] = { [anon_sym_BQUOTE] = "`", [anon_sym_LT_LPAREN] = "<(", [anon_sym_GT_LPAREN] = ">(", - [sym_word] = "word", [sym_comment] = "comment", - [sym_simple_variable_name] = "simple_variable_name", + [sym_identifier] = "identifier", [anon_sym_STAR] = "*", [anon_sym_QMARK] = "?", + [anon_sym_DASH] = "-", [anon_sym_BANG] = "!", [anon_sym_0] = "0", [anon_sym__] = "_", @@ -262,12 +261,11 @@ static const char *ts_symbol_names[] = { [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", + [alias_sym_word] = "word", }; static const TSSymbolMetadata ts_symbol_metadata[] = { @@ -291,6 +289,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_word] = { + .visible = true, + .named = true, + }, [sym__empty_value] = { .visible = false, .named = true, @@ -431,10 +433,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_DASH] = { - .visible = true, - .named = false, - }, [anon_sym_EQ] = { .visible = true, .named = false, @@ -543,15 +541,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym_word] = { - .visible = true, - .named = true, - }, [sym_comment] = { .visible = true, .named = true, }, - [sym_simple_variable_name] = { + [sym_identifier] = { .visible = true, .named = true, }, @@ -563,6 +557,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_DASH] = { + .visible = true, + .named = false, + }, [anon_sym_BANG] = { .visible = true, .named = false, @@ -751,10 +749,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_declaration_command_repeat2] = { - .visible = false, - .named = false, - }, [aux_sym_heredoc_repeat1] = { .visible = false, .named = false, @@ -767,27 +761,42 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [anon_alias_sym_argument] = { - .visible = true, - .named = false, - }, [alias_sym_variable_name] = { .visible = true, .named = true, }, + [alias_sym_word] = { + .visible = true, + .named = true, + }, }; -static TSSymbol ts_alias_sequences[4][MAX_ALIAS_SEQUENCE_LENGTH] = { +static TSSymbol ts_alias_sequences[9][MAX_ALIAS_SEQUENCE_LENGTH] = { [1] = { - [1] = alias_sym_variable_name, + [0] = alias_sym_word, }, [2] = { - [0] = anon_alias_sym_argument, - [1] = anon_alias_sym_argument, + [0] = alias_sym_variable_name, }, [3] = { + [1] = alias_sym_word, + }, + [4] = { + [1] = alias_sym_variable_name, + }, + [5] = { + [2] = alias_sym_word, + }, + [6] = { [2] = alias_sym_variable_name, }, + [7] = { + [1] = alias_sym_variable_name, + [3] = alias_sym_word, + }, + [8] = { + [3] = alias_sym_word, + }, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -850,12 +859,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(47); if (lookahead == '`') ADVANCE(48); - if (lookahead == '{') + if (lookahead == 'c') ADVANCE(49); - if (lookahead == '|') - ADVANCE(50); - if (lookahead == '}') + if (lookahead == 'd') ADVANCE(53); + if (lookahead == 'e') + ADVANCE(63); + if (lookahead == 'f') + ADVANCE(77); + if (lookahead == 'i') + ADVANCE(88); + if (lookahead == 'l') + ADVANCE(90); + if (lookahead == 'r') + ADVANCE(95); + if (lookahead == 't') + ADVANCE(103); + if (lookahead == 'w') + ADVANCE(110); + if (lookahead == '{') + ADVANCE(115); + if (lookahead == '|') + ADVANCE(116); + if (lookahead == '}') + ADVANCE(119); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') @@ -953,7 +980,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(24); END_STATE(); case 24: - ACCEPT_TOKEN(sym_simple_variable_name); + ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -1063,1300 +1090,817 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); case 49: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') + ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(24); END_STATE(); case 50: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(51); - if (lookahead == '|') - ADVANCE(52); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); END_STATE(); case 51: - ACCEPT_TOKEN(anon_sym_PIPE_AMP); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') + ADVANCE(52); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); END_STATE(); case 52: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_case); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); END_STATE(); case 53: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') + ADVANCE(54); + if (lookahead == 'o') + ADVANCE(60); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); END_STATE(); case 54: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') + ADVANCE(55); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 55: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') + ADVANCE(56); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 56: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') + ADVANCE(57); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 57: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') + ADVANCE(58); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 58: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') + ADVANCE(59); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 59: + ACCEPT_TOKEN(anon_sym_declare); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 60: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') + ADVANCE(61); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 61: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') + ADVANCE(62); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 62: + ACCEPT_TOKEN(anon_sym_done); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 63: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') + ADVANCE(64); + if (lookahead == 's') + ADVANCE(69); + if (lookahead == 'x') + ADVANCE(72); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 64: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') + ADVANCE(65); + if (lookahead == 's') + ADVANCE(67); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 65: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'f') + ADVANCE(66); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 66: + ACCEPT_TOKEN(anon_sym_elif); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 67: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') + ADVANCE(68); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 68: + ACCEPT_TOKEN(anon_sym_else); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 69: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') + ADVANCE(70); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 70: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') + ADVANCE(71); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 71: + ACCEPT_TOKEN(anon_sym_esac); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 72: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') + ADVANCE(73); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 73: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') + ADVANCE(74); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 74: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') + ADVANCE(75); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 75: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') + ADVANCE(76); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 76: + ACCEPT_TOKEN(anon_sym_export); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 77: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') + ADVANCE(78); + if (lookahead == 'o') + ADVANCE(79); + if (lookahead == 'u') + ADVANCE(81); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 78: + ACCEPT_TOKEN(anon_sym_fi); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 79: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') + ADVANCE(80); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 80: + ACCEPT_TOKEN(anon_sym_for); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 81: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') + ADVANCE(82); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 82: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') + ADVANCE(83); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 83: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') + ADVANCE(84); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 84: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') + ADVANCE(85); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 85: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') + ADVANCE(86); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 86: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') + ADVANCE(87); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 87: + ACCEPT_TOKEN(anon_sym_function); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 88: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'f') + ADVANCE(89); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 89: + ACCEPT_TOKEN(anon_sym_if); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 90: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') + ADVANCE(91); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 91: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') + ADVANCE(92); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 92: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') + ADVANCE(93); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 93: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') + ADVANCE(94); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 94: + ACCEPT_TOKEN(anon_sym_local); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 95: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') + ADVANCE(96); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 96: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') + ADVANCE(97); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 97: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'd') + ADVANCE(98); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 98: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') + ADVANCE(99); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 99: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') + ADVANCE(100); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 100: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') + ADVANCE(101); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 101: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') + ADVANCE(102); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 102: + ACCEPT_TOKEN(anon_sym_readonly); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 103: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') + ADVANCE(104); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 104: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') + ADVANCE(105); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 105: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') + ADVANCE(106); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 106: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') + ADVANCE(107); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 107: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') + ADVANCE(108); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 108: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') + ADVANCE(109); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 109: + ACCEPT_TOKEN(anon_sym_typeset); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 110: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') + ADVANCE(111); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 111: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') + ADVANCE(112); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 112: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') + ADVANCE(113); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 113: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') + ADVANCE(114); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 114: + ACCEPT_TOKEN(anon_sym_while); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 115: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 116: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '&') + ADVANCE(117); + if (lookahead == '|') + ADVANCE(118); + END_STATE(); + case 117: + ACCEPT_TOKEN(anon_sym_PIPE_AMP); + END_STATE(); + case 118: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 119: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 120: if (lookahead == 0) ADVANCE(1); if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '$') ADVANCE(6); if (lookahead == '&') - ADVANCE(56); + ADVANCE(122); if (lookahead == '\'') ADVANCE(14); if (lookahead == '(') ADVANCE(16); if (lookahead == '<') - ADVANCE(57); + ADVANCE(123); if (lookahead == '>') ADVANCE(36); if (lookahead == '[') - ADVANCE(58); + ADVANCE(42); if (lookahead == '\\') - ADVANCE(62); + SKIP(124); if (lookahead == '`') ADVANCE(48); if (lookahead == 'c') - ADVANCE(63); + ADVANCE(49); if (lookahead == 'd') - ADVANCE(67); + ADVANCE(125); if (lookahead == 'e') - ADVANCE(74); + ADVANCE(126); if (lookahead == 'f') - ADVANCE(80); + ADVANCE(127); if (lookahead == 'i') - ADVANCE(90); + ADVANCE(88); if (lookahead == 'l') - ADVANCE(92); + ADVANCE(90); if (lookahead == 'r') - ADVANCE(97); + ADVANCE(95); if (lookahead == 't') - ADVANCE(105); + ADVANCE(103); if (lookahead == 'w') - ADVANCE(112); + ADVANCE(110); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(54); - if ((lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '{' && - lookahead != '}') - ADVANCE(61); + SKIP(120); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); END_STATE(); - case 55: + case 121: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n') - ADVANCE(55); + ADVANCE(121); END_STATE(); - case 56: + case 122: if (lookahead == '>') ADVANCE(12); END_STATE(); - case 57: + case 123: 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: + case 124: if (lookahead == '\n') - SKIP(54); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(61); + SKIP(120); 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); + case 125: + ACCEPT_TOKEN(sym_identifier); 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); + ADVANCE(54); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); 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); + case 126: + ACCEPT_TOKEN(sym_identifier); 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); + ADVANCE(72); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); 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); + case 127: + ACCEPT_TOKEN(sym_identifier); 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); + ADVANCE(81); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); 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: + case 128: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(4); if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); + 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 == '\\') + SKIP(129); + if (lookahead == '`') + ADVANCE(48); + if (lookahead == '|') + ADVANCE(116); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(128); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 129: + if (lookahead == '\n') + SKIP(128); + END_STATE(); + case 130: + if (lookahead == '#') + ADVANCE(121); if (lookahead == '%') ADVANCE(9); if (lookahead == '&') - ADVANCE(118); + ADVANCE(131); if (lookahead == '(') ADVANCE(16); if (lookahead == ')') @@ -2372,116 +1916,250 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '@') ADVANCE(41); if (lookahead == '[') - ADVANCE(119); + ADVANCE(132); if (lookahead == '\\') - SKIP(120); + SKIP(133); if (lookahead == ']') - ADVANCE(121); + ADVANCE(134); if (lookahead == '`') ADVANCE(48); if (lookahead == 'd') - ADVANCE(122); + ADVANCE(135); if (lookahead == 'e') - ADVANCE(124); + ADVANCE(137); if (lookahead == 'f') - ADVANCE(130); + ADVANCE(143); if (lookahead == 'i') - ADVANCE(132); + ADVANCE(145); if (lookahead == 't') - ADVANCE(134); + ADVANCE(147); if (lookahead == '{') - ADVANCE(49); + ADVANCE(115); if (lookahead == '|') - ADVANCE(50); + ADVANCE(116); if (lookahead == '}') - ADVANCE(53); + ADVANCE(119); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(117); + SKIP(130); END_STATE(); - case 118: + case 131: if (lookahead == '&') ADVANCE(11); END_STATE(); - case 119: + case 132: 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); + if (lookahead == '\n') + SKIP(130); END_STATE(); case 134: - if (lookahead == 'h') - ADVANCE(135); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 135: - if (lookahead == 'e') + if (lookahead == 'o') ADVANCE(136); END_STATE(); case 136: - if (lookahead == 'n') - ADVANCE(137); + ACCEPT_TOKEN(anon_sym_do); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_then); + if (lookahead == 'l') + ADVANCE(138); END_STATE(); case 138: + if (lookahead == 'i') + ADVANCE(139); + if (lookahead == 's') + ADVANCE(141); + END_STATE(); + case 139: + if (lookahead == 'f') + ADVANCE(140); + END_STATE(); + case 140: + ACCEPT_TOKEN(anon_sym_elif); + END_STATE(); + case 141: + if (lookahead == 'e') + ADVANCE(142); + END_STATE(); + case 142: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 143: + if (lookahead == 'i') + ADVANCE(144); + END_STATE(); + case 144: + ACCEPT_TOKEN(anon_sym_fi); + END_STATE(); + case 145: + if (lookahead == 'n') + ADVANCE(146); + END_STATE(); + case 146: + ACCEPT_TOKEN(anon_sym_in); + END_STATE(); + case 147: + if (lookahead == 'h') + ADVANCE(148); + END_STATE(); + case 148: + if (lookahead == 'e') + ADVANCE(149); + END_STATE(); + case 149: + if (lookahead == 'n') + ADVANCE(150); + END_STATE(); + case 150: + ACCEPT_TOKEN(anon_sym_then); + END_STATE(); + case 151: + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '#') + ADVANCE(121); + if (lookahead == '$') + ADVANCE(6); + if (lookahead == '\'') + ADVANCE(14); + if (lookahead == '<') + ADVANCE(152); + if (lookahead == '>') + ADVANCE(153); + if (lookahead == '\\') + SKIP(154); + if (lookahead == '`') + ADVANCE(48); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(151); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 152: + if (lookahead == '(') + ADVANCE(32); + END_STATE(); + case 153: + if (lookahead == '(') + ADVANCE(38); + END_STATE(); + case 154: + if (lookahead == '\n') + SKIP(151); + END_STATE(); + case 155: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(121); + if (lookahead == '&') + ADVANCE(156); + if (lookahead == ';') + ADVANCE(28); + if (lookahead == '\\') + SKIP(157); + if (lookahead == '|') + ADVANCE(116); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(155); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 156: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') + ADVANCE(11); + END_STATE(); + case 157: + if (lookahead == '\n') + SKIP(155); + END_STATE(); + case 158: + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '#') + ADVANCE(159); + if (lookahead == '$') + ADVANCE(6); + if (lookahead == '\\') + ADVANCE(161); + if (lookahead == '`') + ADVANCE(48); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(162); + if (lookahead != 0) + ADVANCE(160); + END_STATE(); + case 159: + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\n') + ADVANCE(160); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '$' && + lookahead != '`') + ADVANCE(159); + END_STATE(); + case 160: + ACCEPT_TOKEN(sym__string_content); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '$' && + lookahead != '`') + ADVANCE(160); + END_STATE(); + case 161: + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\n') + ADVANCE(162); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '$' && + lookahead != '`') + ADVANCE(160); + END_STATE(); + case 162: + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '#') + ADVANCE(159); + if (lookahead == '\\') + ADVANCE(161); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(162); + if (lookahead != 0 && + (lookahead < '\"' || lookahead > '$') && + lookahead != '`') + ADVANCE(160); + END_STATE(); + case 163: if (lookahead == '!') ADVANCE(3); if (lookahead == '#') ADVANCE(5); if (lookahead == '$') - ADVANCE(139); + ADVANCE(164); if (lookahead == '%') ADVANCE(9); if (lookahead == '*') @@ -2501,261 +2179,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '@') ADVANCE(41); if (lookahead == '[') - ADVANCE(119); + ADVANCE(132); if (lookahead == '\\') - SKIP(140); + SKIP(165); if (lookahead == '_') ADVANCE(47); if (lookahead == '}') - ADVANCE(53); + ADVANCE(119); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(138); + SKIP(163); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(24); END_STATE(); - case 139: + case 164: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 140: + case 165: if (lookahead == '\n') - SKIP(138); + SKIP(163); END_STATE(); - case 141: - 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(142); - if (lookahead == '`') - ADVANCE(48); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(141); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '{' && - lookahead != '}') - ADVANCE(61); - END_STATE(); - case 142: - if (lookahead == '\n') - SKIP(141); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(61); - END_STATE(); - case 143: - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(55); - if (lookahead == '&') - ADVANCE(144); - if (lookahead == '-') - ADVANCE(21); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '\\') - SKIP(145); - if (lookahead == '|') - ADVANCE(50); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(143); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 144: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') - ADVANCE(11); - END_STATE(); - case 145: - if (lookahead == '\n') - SKIP(143); - END_STATE(); - case 146: - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(147); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '\\') - ADVANCE(149); - if (lookahead == '`') - ADVANCE(48); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(150); - if (lookahead != 0) - ADVANCE(148); - END_STATE(); - case 147: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') - ADVANCE(148); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '$' && - lookahead != '`') - ADVANCE(147); - END_STATE(); - case 148: - ACCEPT_TOKEN(sym__string_content); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '$' && - lookahead != '`') - ADVANCE(148); - END_STATE(); - case 149: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') - ADVANCE(150); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '$' && - lookahead != '`') - ADVANCE(148); - END_STATE(); - case 150: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '#') - ADVANCE(147); - if (lookahead == '\\') - ADVANCE(149); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(150); - if (lookahead != 0 && - (lookahead < '\"' || lookahead > '$') && - lookahead != '`') - ADVANCE(148); - END_STATE(); - case 151: + case 166: 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(152); - if (lookahead == '`') - ADVANCE(48); - if (lookahead == '|') - ADVANCE(153); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(151); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - (lookahead < '{' || lookahead > '}')) - ADVANCE(61); - END_STATE(); - case 152: - if (lookahead == '\n') - SKIP(151); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(61); - END_STATE(); - case 153: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') - ADVANCE(51); - if (lookahead == '\\') - ADVANCE(60); - if (lookahead == '|') - ADVANCE(154); - 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 154: - 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 155: - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '$') ADVANCE(6); if (lookahead == '&') @@ -2771,107 +2225,96 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(36); if (lookahead == '\\') - ADVANCE(156); + SKIP(167); if (lookahead == '`') ADVANCE(48); if (lookahead == '|') - ADVANCE(153); + ADVANCE(116); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(155); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - (lookahead < '{' || lookahead > '}')) - ADVANCE(61); + SKIP(166); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); END_STATE(); - case 156: + case 167: if (lookahead == '\n') - SKIP(155); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(61); + SKIP(166); END_STATE(); - case 157: + case 168: if (lookahead == 0) ADVANCE(1); if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '$') ADVANCE(6); if (lookahead == '&') - ADVANCE(56); + ADVANCE(122); if (lookahead == '\'') ADVANCE(14); if (lookahead == '(') ADVANCE(16); if (lookahead == ';') - ADVANCE(158); + ADVANCE(169); if (lookahead == '<') - ADVANCE(57); + ADVANCE(123); if (lookahead == '>') ADVANCE(36); if (lookahead == '[') - ADVANCE(58); + ADVANCE(42); if (lookahead == '\\') - ADVANCE(159); + SKIP(170); if (lookahead == '`') ADVANCE(48); if (lookahead == 'c') - ADVANCE(63); + ADVANCE(49); if (lookahead == 'd') - ADVANCE(67); + ADVANCE(125); if (lookahead == 'e') - ADVANCE(74); + ADVANCE(126); if (lookahead == 'f') - ADVANCE(80); + ADVANCE(127); if (lookahead == 'i') - ADVANCE(90); + ADVANCE(88); if (lookahead == 'l') - ADVANCE(92); + ADVANCE(90); if (lookahead == 'r') - ADVANCE(97); + ADVANCE(95); if (lookahead == 't') - ADVANCE(105); + ADVANCE(103); if (lookahead == 'w') - ADVANCE(112); + ADVANCE(110); if (lookahead == '}') - ADVANCE(53); + ADVANCE(119); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(157); - if ((lookahead < '&' || lookahead > ')') && - lookahead != '{') - ADVANCE(61); + SKIP(168); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); END_STATE(); - case 158: + case 169: if (lookahead == ';') ADVANCE(29); END_STATE(); - case 159: + case 170: if (lookahead == '\n') - SKIP(157); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(61); + SKIP(168); END_STATE(); - case 160: + case 171: if (lookahead == '\n') ADVANCE(2); if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '$') ADVANCE(6); if (lookahead == '&') @@ -2881,226 +2324,55 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(57); + ADVANCE(123); if (lookahead == '>') ADVANCE(36); if (lookahead == '\\') - ADVANCE(161); + SKIP(172); if (lookahead == '`') ADVANCE(48); if (lookahead == '|') - ADVANCE(153); + ADVANCE(116); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(160); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - (lookahead < '{' || lookahead > '}')) - ADVANCE(61); + SKIP(171); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); END_STATE(); - case 161: + case 172: if (lookahead == '\n') - SKIP(160); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(61); + SKIP(171); END_STATE(); - case 162: - if (lookahead == '\n') - ADVANCE(2); + case 173: if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '$') ADVANCE(6); if (lookahead == '&') - ADVANCE(10); + ADVANCE(122); if (lookahead == '\'') ADVANCE(14); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == ';') - ADVANCE(28); if (lookahead == '<') - ADVANCE(30); + ADVANCE(123); if (lookahead == '>') ADVANCE(36); if (lookahead == '\\') - ADVANCE(163); - if (lookahead == '`') - ADVANCE(48); - if (lookahead == '|') - ADVANCE(153); - 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); + SKIP(174); 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(153); - 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(144); - 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')) + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(24); END_STATE(); case 174: @@ -3113,15 +2385,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '$') ADVANCE(6); if (lookahead == '&') ADVANCE(10); if (lookahead == '\'') ADVANCE(14); - if (lookahead == '(') - ADVANCE(16); if (lookahead == ')') ADVANCE(17); if (lookahead == ';') @@ -3131,46 +2401,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(36); if (lookahead == '\\') - ADVANCE(176); + SKIP(176); if (lookahead == '`') ADVANCE(48); if (lookahead == '|') - ADVANCE(153); + ADVANCE(116); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(175); - if (lookahead != 0 && - (lookahead < '{' || lookahead > '}')) - ADVANCE(61); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); 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); + ADVANCE(121); if (lookahead == '$') ADVANCE(6); if (lookahead == '\'') ADVANCE(14); + if (lookahead == '(') + ADVANCE(16); if (lookahead == '<') - ADVANCE(165); + ADVANCE(152); if (lookahead == '>') - ADVANCE(166); + ADVANCE(153); if (lookahead == '\\') - ADVANCE(178); - if (lookahead == ']') - ADVANCE(179); + SKIP(178); if (lookahead == '`') ADVANCE(48); if (lookahead == '\t' || @@ -3178,132 +2443,87 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(177); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '{' && - lookahead != '}') - ADVANCE(61); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); 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 == '\n') + ADVANCE(2); if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '$') ADVANCE(6); + if (lookahead == '&') + ADVANCE(10); if (lookahead == '\'') ADVANCE(14); + if (lookahead == ')') + ADVANCE(17); + if (lookahead == ';') + ADVANCE(28); if (lookahead == '<') - ADVANCE(165); + ADVANCE(123); if (lookahead == '>') - ADVANCE(166); + ADVANCE(36); if (lookahead == '\\') - ADVANCE(181); - if (lookahead == ']') - ADVANCE(182); + SKIP(180); if (lookahead == '`') ADVANCE(48); + if (lookahead == '|') + ADVANCE(116); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(180); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '{' && - lookahead != '}') - ADVANCE(61); + SKIP(179); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 180: + if (lookahead == '\n') + SKIP(179); END_STATE(); case 181: if (lookahead == '\n') - SKIP(180); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(61); + ADVANCE(2); + if (lookahead == '#') + ADVANCE(121); + if (lookahead == '&') + ADVANCE(182); + if (lookahead == ';') + ADVANCE(28); + if (lookahead == '\\') + SKIP(183); + if (lookahead == 'i') + ADVANCE(145); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(181); 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); + ACCEPT_TOKEN(anon_sym_AMP); 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); + if (lookahead == '\n') + SKIP(181); END_STATE(); case 184: if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '&') - ADVANCE(144); + ADVANCE(156); if (lookahead == ')') ADVANCE(17); if (lookahead == ';') @@ -3311,7 +2531,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') SKIP(185); if (lookahead == '|') - ADVANCE(50); + ADVANCE(116); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') @@ -3329,24 +2549,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 186: if (lookahead == '\n') ADVANCE(2); + if (lookahead == '\"') + ADVANCE(4); if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); + if (lookahead == '$') + ADVANCE(6); if (lookahead == '&') - ADVANCE(144); + 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 == '\\') SKIP(187); + if (lookahead == '`') + ADVANCE(48); if (lookahead == '|') - ADVANCE(50); + ADVANCE(116); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(186); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(24); END_STATE(); case 187: @@ -3354,18 +2589,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(186); END_STATE(); case 188: + if (lookahead == '\"') + ADVANCE(4); if (lookahead == '#') - ADVANCE(55); - if (lookahead == '&') - ADVANCE(118); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == '-') - ADVANCE(21); + ADVANCE(121); + if (lookahead == '$') + ADVANCE(6); + if (lookahead == '\'') + ADVANCE(14); + if (lookahead == '<') + ADVANCE(152); + if (lookahead == '>') + ADVANCE(153); if (lookahead == '\\') SKIP(189); - if (lookahead == '|') - ADVANCE(50); + if (lookahead == ']') + ADVANCE(134); + if (lookahead == '`') + ADVANCE(48); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3373,8 +2614,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(188); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(24); END_STATE(); case 189: @@ -3385,180 +2625,228 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '$') ADVANCE(6); - if (lookahead == '&') - ADVANCE(191); if (lookahead == '\'') ADVANCE(14); if (lookahead == ')') ADVANCE(17); if (lookahead == '<') - ADVANCE(30); + ADVANCE(152); if (lookahead == '>') - ADVANCE(36); + ADVANCE(153); if (lookahead == '\\') - ADVANCE(192); + SKIP(191); + if (lookahead == ']') + ADVANCE(45); if (lookahead == '`') ADVANCE(48); - if (lookahead == '|') - ADVANCE(153); 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(153); - 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(153); - 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: + case 191: if (lookahead == '\n') - SKIP(197); + SKIP(190); END_STATE(); - case 199: + case 192: if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); + if (lookahead == '$') + ADVANCE(6); + if (lookahead == '\'') + ADVANCE(14); + if (lookahead == '<') + ADVANCE(152); + if (lookahead == '>') + ADVANCE(153); + if (lookahead == '\\') + SKIP(193); + if (lookahead == ']') + ADVANCE(194); + if (lookahead == '`') + ADVANCE(48); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(192); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 193: + if (lookahead == '\n') + SKIP(192); + END_STATE(); + case 194: + if (lookahead == ']') + ADVANCE(46); + END_STATE(); + case 195: + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '#') + ADVANCE(121); if (lookahead == '$') ADVANCE(6); if (lookahead == '&') - ADVANCE(191); + ADVANCE(196); + if (lookahead == '\'') + ADVANCE(14); + if (lookahead == ')') + ADVANCE(17); + if (lookahead == '<') + ADVANCE(30); + if (lookahead == '>') + ADVANCE(36); + if (lookahead == '\\') + SKIP(197); + if (lookahead == '`') + ADVANCE(48); + if (lookahead == '|') + ADVANCE(116); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(195); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 196: + if (lookahead == '&') + ADVANCE(11); + if (lookahead == '>') + ADVANCE(12); + END_STATE(); + case 197: + if (lookahead == '\n') + SKIP(195); + END_STATE(); + case 198: + if (lookahead == '#') + ADVANCE(121); + if (lookahead == '&') + ADVANCE(131); + if (lookahead == ')') + ADVANCE(17); + if (lookahead == '\\') + SKIP(199); + if (lookahead == '|') + ADVANCE(116); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(198); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 199: + if (lookahead == '\n') + SKIP(198); + END_STATE(); + case 200: + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '#') + ADVANCE(121); + if (lookahead == '$') + ADVANCE(6); + if (lookahead == '&') + ADVANCE(196); + if (lookahead == '\'') + ADVANCE(14); + if (lookahead == '(') + ADVANCE(16); + if (lookahead == ')') + ADVANCE(17); + if (lookahead == '<') + ADVANCE(30); + if (lookahead == '>') + ADVANCE(36); + if (lookahead == '\\') + SKIP(201); + if (lookahead == '`') + ADVANCE(48); + if (lookahead == '|') + ADVANCE(116); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(200); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 201: + if (lookahead == '\n') + SKIP(200); + END_STATE(); + case 202: + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '#') + ADVANCE(121); + if (lookahead == '$') + ADVANCE(6); + if (lookahead == '&') + ADVANCE(196); + if (lookahead == '\'') + ADVANCE(14); + if (lookahead == ')') + ADVANCE(17); + if (lookahead == '<') + ADVANCE(123); + if (lookahead == '>') + ADVANCE(36); + if (lookahead == '\\') + SKIP(203); + if (lookahead == '`') + ADVANCE(48); + if (lookahead == '|') + ADVANCE(116); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(202); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 203: + if (lookahead == '\n') + SKIP(202); + END_STATE(); + case 204: + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '#') + ADVANCE(121); + if (lookahead == '$') + ADVANCE(6); + if (lookahead == '&') + ADVANCE(196); if (lookahead == '\'') ADVANCE(14); if (lookahead == '<') @@ -3566,42 +2854,59 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(36); if (lookahead == '\\') - ADVANCE(200); + SKIP(205); if (lookahead == '`') ADVANCE(48); if (lookahead == '|') - ADVANCE(153); + ADVANCE(116); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(199); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(61); + SKIP(204); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); END_STATE(); - case 200: + case 205: if (lookahead == '\n') - SKIP(199); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(61); + SKIP(204); END_STATE(); - case 201: + case 206: + if (lookahead == '#') + ADVANCE(121); + if (lookahead == '&') + ADVANCE(131); + if (lookahead == '\\') + SKIP(207); + if (lookahead == '`') + ADVANCE(48); + if (lookahead == '|') + ADVANCE(116); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(206); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 207: + if (lookahead == '\n') + SKIP(206); + END_STATE(); + case 208: if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '$') ADVANCE(6); if (lookahead == '&') - ADVANCE(191); + ADVANCE(196); if (lookahead == '\'') ADVANCE(14); if (lookahead == '(') @@ -3611,96 +2916,80 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(36); if (lookahead == '\\') - ADVANCE(202); + SKIP(209); if (lookahead == '`') ADVANCE(48); if (lookahead == '|') - ADVANCE(153); + ADVANCE(116); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(201); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(61); + SKIP(208); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); END_STATE(); - case 202: + case 209: if (lookahead == '\n') - SKIP(201); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(61); + SKIP(208); END_STATE(); - case 203: + case 210: if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '$') ADVANCE(6); if (lookahead == '&') - ADVANCE(191); + ADVANCE(196); if (lookahead == '\'') ADVANCE(14); if (lookahead == '<') - ADVANCE(57); + ADVANCE(123); if (lookahead == '>') ADVANCE(36); if (lookahead == '\\') - ADVANCE(204); + SKIP(211); if (lookahead == '`') ADVANCE(48); if (lookahead == '|') - ADVANCE(153); + ADVANCE(116); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(203); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(61); + SKIP(210); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); END_STATE(); - case 204: + case 211: if (lookahead == '\n') - SKIP(203); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(61); + SKIP(210); END_STATE(); - case 205: + case 212: if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '\\') - SKIP(206); + SKIP(213); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(205); + SKIP(212); END_STATE(); - case 206: + case 213: if (lookahead == '\n') - SKIP(205); + SKIP(212); END_STATE(); - case 207: + case 214: if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '&') ADVANCE(10); if (lookahead == ')') @@ -3708,84 +2997,84 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(208); + ADVANCE(215); if (lookahead == '>') - ADVANCE(209); + ADVANCE(216); if (lookahead == '\\') - SKIP(210); + SKIP(217); if (lookahead == '|') - ADVANCE(50); + ADVANCE(116); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(207); + SKIP(214); END_STATE(); - case 208: + case 215: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') ADVANCE(31); if (lookahead == '<') ADVANCE(33); END_STATE(); - case 209: + case 216: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '&') ADVANCE(37); if (lookahead == '>') ADVANCE(39); END_STATE(); - case 210: + case 217: if (lookahead == '\n') - SKIP(207); + SKIP(214); END_STATE(); - case 211: + case 218: if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '&') ADVANCE(10); if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(208); + ADVANCE(215); if (lookahead == '>') - ADVANCE(209); + ADVANCE(216); if (lookahead == '\\') - SKIP(212); + SKIP(219); if (lookahead == '|') - ADVANCE(50); + ADVANCE(116); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(211); + SKIP(218); END_STATE(); - case 212: + case 219: if (lookahead == '\n') - SKIP(211); + SKIP(218); END_STATE(); - case 213: + case 220: if (lookahead == '#') - ADVANCE(55); - if (lookahead == '\\') - SKIP(214); - if (lookahead == ']') ADVANCE(121); + if (lookahead == '\\') + SKIP(221); + if (lookahead == ']') + ADVANCE(134); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(213); + SKIP(220); END_STATE(); - case 214: + case 221: if (lookahead == '\n') - SKIP(213); + SKIP(220); END_STATE(); - case 215: + case 222: if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '$') ADVANCE(6); if (lookahead == '\'') @@ -3793,524 +3082,246 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(17); if (lookahead == '<') - ADVANCE(165); + ADVANCE(152); if (lookahead == '>') - ADVANCE(166); + ADVANCE(153); if (lookahead == '\\') - ADVANCE(216); + SKIP(223); if (lookahead == '`') ADVANCE(48); - if (lookahead == '}') - ADVANCE(53); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(215); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '{') - ADVANCE(61); - END_STATE(); - case 216: - if (lookahead == '\n') - SKIP(215); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(61); - END_STATE(); - case 217: - 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(218); - if (lookahead == '`') - ADVANCE(48); - if (lookahead == 'c') - ADVANCE(63); - if (lookahead == 'd') - ADVANCE(219); - 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(217); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '{' && - lookahead != '}') - ADVANCE(61); - END_STATE(); - case 218: - if (lookahead == '\n') - SKIP(217); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(61); - END_STATE(); - case 219: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(60); - if (lookahead == 'e') - ADVANCE(68); - if (lookahead == 'o') - ADVANCE(220); - 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 220: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(60); - if (lookahead == 'n') - ADVANCE(221); - 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 221: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(60); - if (lookahead == 'e') - ADVANCE(222); - 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 222: - 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); + SKIP(222); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); END_STATE(); case 223: - 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(224); - if (lookahead == '`') - ADVANCE(48); - if (lookahead == 'c') - ADVANCE(63); - if (lookahead == 'd') - ADVANCE(67); - if (lookahead == 'e') - ADVANCE(225); - if (lookahead == 'f') - ADVANCE(231); - 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(223); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '{' && - lookahead != '}') - ADVANCE(61); + if (lookahead == '\n') + SKIP(222); END_STATE(); case 224: - if (lookahead == '\n') - SKIP(223); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(61); - END_STATE(); - case 225: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(60); - if (lookahead == 'l') - ADVANCE(226); - 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 226: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(60); - if (lookahead == 'i') - ADVANCE(227); - if (lookahead == 's') - ADVANCE(229); - 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(sym_word); - if (lookahead == '\\') - ADVANCE(60); - if (lookahead == 'f') - ADVANCE(228); - 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: - 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 229: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(60); - if (lookahead == 'e') - ADVANCE(230); - 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 230: - 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 231: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(60); - if (lookahead == 'i') - ADVANCE(232); - 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 232: - 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 233: if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '$') ADVANCE(6); if (lookahead == '&') - ADVANCE(56); + ADVANCE(122); if (lookahead == '\'') ADVANCE(14); if (lookahead == '(') ADVANCE(16); if (lookahead == '<') - ADVANCE(57); + ADVANCE(123); if (lookahead == '>') ADVANCE(36); if (lookahead == '[') - ADVANCE(58); + ADVANCE(42); if (lookahead == '\\') - ADVANCE(234); + SKIP(225); if (lookahead == '`') ADVANCE(48); if (lookahead == 'c') - ADVANCE(63); + ADVANCE(49); 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 == 'e') + ADVANCE(126); + if (lookahead == 'f') + ADVANCE(127); + if (lookahead == 'i') + ADVANCE(88); + if (lookahead == 'l') + ADVANCE(90); + if (lookahead == 'r') + ADVANCE(95); + if (lookahead == 't') + ADVANCE(103); + if (lookahead == 'w') + ADVANCE(110); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(233); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '{') - ADVANCE(61); + SKIP(224); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); END_STATE(); - case 234: + case 225: if (lookahead == '\n') - SKIP(233); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(61); + SKIP(224); END_STATE(); - case 235: + case 226: + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '#') + ADVANCE(121); + if (lookahead == '$') + ADVANCE(6); + if (lookahead == '&') + ADVANCE(122); + if (lookahead == '\'') + ADVANCE(14); + if (lookahead == '(') + ADVANCE(16); + if (lookahead == '<') + ADVANCE(123); + if (lookahead == '>') + ADVANCE(36); + if (lookahead == '[') + ADVANCE(42); + if (lookahead == '\\') + SKIP(227); + if (lookahead == '`') + ADVANCE(48); + if (lookahead == 'c') + ADVANCE(49); + if (lookahead == 'd') + ADVANCE(125); + if (lookahead == 'e') + ADVANCE(228); + if (lookahead == 'f') + ADVANCE(77); + if (lookahead == 'i') + ADVANCE(88); + if (lookahead == 'l') + ADVANCE(90); + if (lookahead == 'r') + ADVANCE(95); + if (lookahead == 't') + ADVANCE(103); + if (lookahead == 'w') + ADVANCE(110); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(226); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 227: + if (lookahead == '\n') + SKIP(226); + END_STATE(); + case 228: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') + ADVANCE(64); + if (lookahead == 'x') + ADVANCE(72); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 229: + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '#') + ADVANCE(121); + if (lookahead == '$') + ADVANCE(6); + if (lookahead == '&') + ADVANCE(122); + if (lookahead == '\'') + ADVANCE(14); + if (lookahead == '(') + ADVANCE(16); + if (lookahead == '<') + ADVANCE(123); + if (lookahead == '>') + ADVANCE(36); + if (lookahead == '[') + ADVANCE(42); + if (lookahead == '\\') + SKIP(230); + if (lookahead == '`') + ADVANCE(48); + if (lookahead == 'c') + ADVANCE(49); + if (lookahead == 'd') + ADVANCE(125); + if (lookahead == 'e') + ADVANCE(126); + if (lookahead == 'f') + ADVANCE(127); + if (lookahead == 'i') + ADVANCE(88); + if (lookahead == 'l') + ADVANCE(90); + if (lookahead == 'r') + ADVANCE(95); + if (lookahead == 't') + ADVANCE(103); + if (lookahead == 'w') + ADVANCE(110); + if (lookahead == '}') + ADVANCE(119); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(229); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 230: + if (lookahead == '\n') + SKIP(229); + END_STATE(); + case 231: if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '&') ADVANCE(10); if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(236); + ADVANCE(232); if (lookahead == '>') - ADVANCE(209); + ADVANCE(216); if (lookahead == '\\') - SKIP(237); + SKIP(233); if (lookahead == '|') - ADVANCE(50); + ADVANCE(116); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(235); + SKIP(231); END_STATE(); - case 236: + case 232: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') ADVANCE(31); END_STATE(); - case 237: + case 233: if (lookahead == '\n') - SKIP(235); + SKIP(231); END_STATE(); - case 238: + case 234: if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '$') ADVANCE(6); if (lookahead == '&') - ADVANCE(56); + ADVANCE(122); if (lookahead == '\'') ADVANCE(14); if (lookahead == '(') @@ -4318,120 +3329,154 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(17); if (lookahead == '<') - ADVANCE(57); + ADVANCE(123); if (lookahead == '>') ADVANCE(36); if (lookahead == '[') - ADVANCE(58); + ADVANCE(42); if (lookahead == '\\') - ADVANCE(239); + SKIP(235); if (lookahead == '`') ADVANCE(48); if (lookahead == 'c') - ADVANCE(63); + ADVANCE(49); if (lookahead == 'd') - ADVANCE(67); + ADVANCE(125); if (lookahead == 'e') - ADVANCE(74); + ADVANCE(126); if (lookahead == 'f') - ADVANCE(80); + ADVANCE(127); if (lookahead == 'i') - ADVANCE(90); + ADVANCE(88); if (lookahead == 'l') - ADVANCE(92); + ADVANCE(90); if (lookahead == 'r') - ADVANCE(97); + ADVANCE(95); if (lookahead == 't') - ADVANCE(105); + ADVANCE(103); if (lookahead == 'w') - ADVANCE(112); + ADVANCE(110); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(238); - if (lookahead != 0 && - lookahead != ';' && - lookahead != '<' && - lookahead != '{' && - lookahead != '}') - ADVANCE(61); + SKIP(234); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); END_STATE(); - case 239: + case 235: if (lookahead == '\n') - SKIP(238); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(61); + SKIP(234); END_STATE(); - case 240: + case 236: if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '$') ADVANCE(6); if (lookahead == '\'') ADVANCE(14); if (lookahead == '<') - ADVANCE(165); + ADVANCE(152); if (lookahead == '>') - ADVANCE(166); + ADVANCE(153); if (lookahead == '\\') - ADVANCE(241); - if (lookahead == ']') - ADVANCE(179); + SKIP(237); if (lookahead == '`') ADVANCE(48); if (lookahead == '}') - ADVANCE(53); + ADVANCE(119); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(236); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 237: + if (lookahead == '\n') + SKIP(236); + END_STATE(); + case 238: + if (lookahead == '#') + ADVANCE(121); + if (lookahead == '&') + ADVANCE(131); + if (lookahead == ')') + ADVANCE(17); + if (lookahead == '\\') + SKIP(239); + if (lookahead == '`') + ADVANCE(48); + if (lookahead == '|') + ADVANCE(116); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(238); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 239: + if (lookahead == '\n') + SKIP(238); + END_STATE(); + case 240: + if (lookahead == '#') + ADVANCE(121); + if (lookahead == '&') + ADVANCE(196); + if (lookahead == ')') + ADVANCE(17); + if (lookahead == '<') + ADVANCE(215); + if (lookahead == '>') + ADVANCE(216); + if (lookahead == '\\') + SKIP(241); + if (lookahead == '`') + ADVANCE(48); + if (lookahead == '|') + ADVANCE(116); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(240); - if (lookahead != 0 && - (lookahead < '&' || 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(55); + ADVANCE(121); if (lookahead == '&') - ADVANCE(118); + ADVANCE(196); if (lookahead == ')') ADVANCE(17); + if (lookahead == '<') + ADVANCE(215); + if (lookahead == '>') + ADVANCE(216); if (lookahead == '\\') SKIP(243); - if (lookahead == '`') - ADVANCE(48); if (lookahead == '|') - ADVANCE(50); + ADVANCE(116); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(242); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); END_STATE(); case 243: if (lookahead == '\n') @@ -4439,25 +3484,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 244: if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '&') - ADVANCE(118); - if (lookahead == ')') - ADVANCE(17); + ADVANCE(196); + if (lookahead == '<') + ADVANCE(215); + if (lookahead == '>') + ADVANCE(216); if (lookahead == '\\') SKIP(245); + if (lookahead == '`') + ADVANCE(48); if (lookahead == '|') - ADVANCE(50); + ADVANCE(116); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(244); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); END_STATE(); case 245: if (lookahead == '\n') @@ -4465,21 +3509,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 246: if (lookahead == '#') - ADVANCE(55); - if (lookahead == '&') - ADVANCE(191); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == '<') - ADVANCE(208); - if (lookahead == '>') - ADVANCE(209); + ADVANCE(121); + if (lookahead == '$') + ADVANCE(247); if (lookahead == '\\') - SKIP(247); - if (lookahead == '`') - ADVANCE(48); - if (lookahead == '|') - ADVANCE(50); + SKIP(248); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4487,409 +3521,179 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(246); END_STATE(); case 247: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '{') + ADVANCE(8); + END_STATE(); + case 248: if (lookahead == '\n') SKIP(246); END_STATE(); - case 248: + case 249: if (lookahead == '#') - ADVANCE(55); - if (lookahead == '&') - ADVANCE(191); + ADVANCE(121); if (lookahead == ')') ADVANCE(17); - if (lookahead == '<') - ADVANCE(208); - if (lookahead == '>') - ADVANCE(209); if (lookahead == '\\') - SKIP(249); + SKIP(250); + if (lookahead == ']') + ADVANCE(134); if (lookahead == '|') - ADVANCE(50); + ADVANCE(251); + if (lookahead == '}') + ADVANCE(119); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(248); - END_STATE(); - case 249: - if (lookahead == '\n') - SKIP(248); + SKIP(249); END_STATE(); case 250: - if (lookahead == '#') - ADVANCE(55); - if (lookahead == '&') - ADVANCE(118); - if (lookahead == '\\') - SKIP(251); - if (lookahead == '`') - ADVANCE(48); - if (lookahead == '|') - ADVANCE(50); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(250); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + if (lookahead == '\n') + SKIP(249); END_STATE(); case 251: - if (lookahead == '\n') - SKIP(250); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 252: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(4); if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); + if (lookahead == '$') + ADVANCE(6); if (lookahead == '&') - ADVANCE(191); + ADVANCE(182); + if (lookahead == '\'') + ADVANCE(14); + if (lookahead == ';') + ADVANCE(28); if (lookahead == '<') - ADVANCE(208); + ADVANCE(152); if (lookahead == '>') - ADVANCE(209); + ADVANCE(153); if (lookahead == '\\') SKIP(253); if (lookahead == '`') ADVANCE(48); - if (lookahead == '|') - ADVANCE(50); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(252); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); END_STATE(); case 253: if (lookahead == '\n') SKIP(252); END_STATE(); case 254: + if (lookahead == '\"') + ADVANCE(4); if (lookahead == '#') - ADVANCE(55); - if (lookahead == '$') - ADVANCE(255); - if (lookahead == '\\') - SKIP(256); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(254); - END_STATE(); - case 255: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '{') - ADVANCE(8); - END_STATE(); - case 256: - if (lookahead == '\n') - SKIP(254); - END_STATE(); - case 257: - if (lookahead == '#') - ADVANCE(55); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == '\\') - SKIP(258); - if (lookahead == ']') ADVANCE(121); - if (lookahead == '|') - ADVANCE(259); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(257); - END_STATE(); - case 258: - if (lookahead == '\n') - SKIP(257); - END_STATE(); - case 259: - ACCEPT_TOKEN(anon_sym_PIPE); - END_STATE(); - case 260: - 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(261); - if (lookahead == '`') - ADVANCE(48); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(260); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '{' && - lookahead != '}') - ADVANCE(61); - END_STATE(); - case 261: - if (lookahead == '\n') - SKIP(260); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(61); - END_STATE(); - case 262: - 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(263); - if (lookahead == '`') - ADVANCE(48); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(262); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != '{' && - lookahead != '}') - ADVANCE(61); - END_STATE(); - case 263: - if (lookahead == '\n') - SKIP(262); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(61); - END_STATE(); - case 264: - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(55); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(56); + ADVANCE(122); if (lookahead == '\'') ADVANCE(14); if (lookahead == '(') ADVANCE(16); if (lookahead == '<') - ADVANCE(57); + ADVANCE(123); if (lookahead == '>') ADVANCE(36); if (lookahead == '[') - ADVANCE(58); + ADVANCE(42); if (lookahead == '\\') - ADVANCE(265); + SKIP(255); if (lookahead == '`') ADVANCE(48); if (lookahead == 'c') - ADVANCE(63); + ADVANCE(49); if (lookahead == 'd') - ADVANCE(67); + ADVANCE(125); if (lookahead == 'e') - ADVANCE(74); + ADVANCE(126); if (lookahead == 'f') - ADVANCE(231); + ADVANCE(77); if (lookahead == 'i') - ADVANCE(90); + ADVANCE(88); if (lookahead == 'l') - ADVANCE(92); + ADVANCE(90); if (lookahead == 'r') - ADVANCE(97); + ADVANCE(95); if (lookahead == 't') - ADVANCE(105); + ADVANCE(103); if (lookahead == 'w') - ADVANCE(112); + ADVANCE(110); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(264); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '{' && - lookahead != '}') - ADVANCE(61); + SKIP(254); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); END_STATE(); - case 265: + case 255: if (lookahead == '\n') - SKIP(264); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(61); + SKIP(254); END_STATE(); - case 266: + case 256: if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '$') ADVANCE(6); if (lookahead == '\'') ADVANCE(14); if (lookahead == '<') - ADVANCE(165); + ADVANCE(152); if (lookahead == '>') - ADVANCE(166); + ADVANCE(153); if (lookahead == '\\') - ADVANCE(267); + SKIP(257); if (lookahead == '`') ADVANCE(48); if (lookahead == 'e') - ADVANCE(268); + ADVANCE(258); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(266); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '{' && - lookahead != '}') - ADVANCE(61); + SKIP(256); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); END_STATE(); - case 267: + case 257: if (lookahead == '\n') - SKIP(266); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(61); + SKIP(256); END_STATE(); - case 268: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(60); + case 258: + ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') - ADVANCE(269); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - lookahead != '`' && - lookahead != '{' && - lookahead != '}') - ADVANCE(61); + ADVANCE(69); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); END_STATE(); - case 269: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(60); - if (lookahead == 'a') - ADVANCE(270); - 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 270: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(60); - if (lookahead == 'c') - ADVANCE(271); - 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 271: - 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 272: + case 259: if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '&') ADVANCE(10); if (lookahead == ')') @@ -4897,338 +3701,302 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(236); + ADVANCE(232); if (lookahead == '>') - ADVANCE(209); + ADVANCE(216); if (lookahead == '\\') - SKIP(273); + SKIP(260); if (lookahead == '|') - ADVANCE(50); + ADVANCE(116); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(272); + SKIP(259); END_STATE(); - case 273: + case 260: if (lookahead == '\n') - SKIP(272); + SKIP(259); END_STATE(); - case 274: + case 261: if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '\\') - SKIP(275); + SKIP(262); if (lookahead == '}') - ADVANCE(53); + ADVANCE(119); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(274); + SKIP(261); END_STATE(); - case 275: + case 262: if (lookahead == '\n') - SKIP(274); + SKIP(261); END_STATE(); - case 276: + case 263: if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '&') - ADVANCE(191); + ADVANCE(196); if (lookahead == ')') ADVANCE(17); if (lookahead == '<') - ADVANCE(236); + ADVANCE(232); if (lookahead == '>') - ADVANCE(209); + ADVANCE(216); if (lookahead == '\\') - SKIP(277); + SKIP(264); if (lookahead == '|') - ADVANCE(50); + ADVANCE(116); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(276); + SKIP(263); END_STATE(); - case 277: + case 264: if (lookahead == '\n') - SKIP(276); + SKIP(263); END_STATE(); - case 278: + case 265: if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '&') - ADVANCE(118); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == '-') - ADVANCE(21); - if (lookahead == '\\') - SKIP(279); - if (lookahead == '`') - ADVANCE(48); - if (lookahead == '|') - ADVANCE(50); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(278); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 279: - if (lookahead == '\n') - SKIP(278); - END_STATE(); - case 280: - if (lookahead == '#') - ADVANCE(55); - if (lookahead == '&') - ADVANCE(191); + ADVANCE(196); if (lookahead == '<') - ADVANCE(236); + ADVANCE(232); if (lookahead == '>') - ADVANCE(209); + ADVANCE(216); if (lookahead == '\\') - SKIP(281); + SKIP(266); if (lookahead == '`') ADVANCE(48); if (lookahead == '|') - ADVANCE(50); + ADVANCE(116); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(280); + SKIP(265); END_STATE(); - case 281: + case 266: if (lookahead == '\n') - SKIP(280); + SKIP(265); END_STATE(); - case 282: + case 267: if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == ')') ADVANCE(17); if (lookahead == '\\') - SKIP(283); + SKIP(268); if (lookahead == '|') - ADVANCE(259); + ADVANCE(251); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(282); + SKIP(267); END_STATE(); - case 283: + case 268: if (lookahead == '\n') - SKIP(282); + SKIP(267); END_STATE(); - case 284: + case 269: if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '&') - ADVANCE(144); + ADVANCE(156); if (lookahead == ';') ADVANCE(28); if (lookahead == '\\') - SKIP(285); + SKIP(270); if (lookahead == '|') - ADVANCE(50); + ADVANCE(116); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(284); + SKIP(269); END_STATE(); - case 285: + case 270: if (lookahead == '\n') - SKIP(284); + SKIP(269); END_STATE(); - case 286: + case 271: if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '&') - ADVANCE(191); + ADVANCE(196); if (lookahead == ')') ADVANCE(17); if (lookahead == '<') - ADVANCE(236); + ADVANCE(232); if (lookahead == '>') - ADVANCE(209); + ADVANCE(216); if (lookahead == '\\') - SKIP(287); + SKIP(272); if (lookahead == '`') ADVANCE(48); if (lookahead == '|') - ADVANCE(50); + ADVANCE(116); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(286); + SKIP(271); END_STATE(); - case 287: + case 272: if (lookahead == '\n') - SKIP(286); + SKIP(271); END_STATE(); - case 288: + case 273: if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '$') ADVANCE(6); if (lookahead == '&') - ADVANCE(56); + ADVANCE(122); if (lookahead == '\'') ADVANCE(14); if (lookahead == '(') ADVANCE(16); if (lookahead == ';') - ADVANCE(158); + ADVANCE(169); if (lookahead == '<') - ADVANCE(57); + ADVANCE(123); if (lookahead == '>') ADVANCE(36); if (lookahead == '[') - ADVANCE(58); + ADVANCE(42); if (lookahead == '\\') - ADVANCE(289); + SKIP(274); if (lookahead == '`') ADVANCE(48); if (lookahead == 'c') - ADVANCE(63); + ADVANCE(49); if (lookahead == 'd') - ADVANCE(67); + ADVANCE(125); if (lookahead == 'e') - ADVANCE(74); + ADVANCE(126); if (lookahead == 'f') - ADVANCE(80); + ADVANCE(127); if (lookahead == 'i') - ADVANCE(90); + ADVANCE(88); if (lookahead == 'l') - ADVANCE(92); + ADVANCE(90); if (lookahead == 'r') - ADVANCE(97); + ADVANCE(95); if (lookahead == 't') - ADVANCE(105); + ADVANCE(103); if (lookahead == 'w') - ADVANCE(112); + ADVANCE(110); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(288); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != '{' && - lookahead != '}') - ADVANCE(61); + SKIP(273); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); END_STATE(); - case 289: + case 274: if (lookahead == '\n') - SKIP(288); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(61); + SKIP(273); END_STATE(); - case 290: + case 275: if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '&') - ADVANCE(144); + ADVANCE(156); if (lookahead == ')') ADVANCE(17); if (lookahead == ';') ADVANCE(28); if (lookahead == '\\') - SKIP(291); + SKIP(276); if (lookahead == '|') - ADVANCE(50); + ADVANCE(116); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(290); + SKIP(275); END_STATE(); - case 291: + case 276: if (lookahead == '\n') - SKIP(290); + SKIP(275); END_STATE(); - case 292: + case 277: if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '&') - ADVANCE(118); + ADVANCE(131); if (lookahead == ')') ADVANCE(17); if (lookahead == '\\') - SKIP(293); + SKIP(278); if (lookahead == '|') - ADVANCE(50); + ADVANCE(116); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(292); + SKIP(277); END_STATE(); - case 293: + case 278: if (lookahead == '\n') - SKIP(292); + SKIP(277); END_STATE(); - case 294: + case 279: if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '&') - ADVANCE(118); + ADVANCE(131); if (lookahead == '\\') - SKIP(295); + SKIP(280); if (lookahead == '`') ADVANCE(48); if (lookahead == '|') - ADVANCE(50); + ADVANCE(116); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(294); + SKIP(279); END_STATE(); - case 295: + case 280: if (lookahead == '\n') - SKIP(294); + SKIP(279); END_STATE(); - case 296: + case 281: if (lookahead == '#') - ADVANCE(55); + ADVANCE(121); if (lookahead == '&') - ADVANCE(118); + ADVANCE(131); if (lookahead == ')') ADVANCE(17); if (lookahead == '\\') - SKIP(297); + SKIP(282); if (lookahead == '`') ADVANCE(48); if (lookahead == '|') - ADVANCE(50); + ADVANCE(116); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(296); + SKIP(281); END_STATE(); - case 297: + case 282: if (lookahead == '\n') - SKIP(296); + SKIP(281); END_STATE(); default: return false; @@ -5237,1591 +4005,1667 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 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 = 141}, - [8] = {.lex_state = 141}, - [9] = {.lex_state = 54, .external_lex_state = 2}, - [10] = {.lex_state = 141}, - [11] = {.lex_state = 141}, - [12] = {.lex_state = 143, .external_lex_state = 3}, - [13] = {.lex_state = 141}, - [14] = {.lex_state = 146}, - [15] = {.lex_state = 151, .external_lex_state = 4}, - [16] = {.lex_state = 138}, - [17] = {.lex_state = 138}, - [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 = 143, .external_lex_state = 5}, - [25] = {.lex_state = 151, .external_lex_state = 6}, - [26] = {.lex_state = 160, .external_lex_state = 7}, - [27] = {.lex_state = 117}, - [28] = {.lex_state = 141, .external_lex_state = 2}, - [29] = {.lex_state = 162, .external_lex_state = 6}, - [30] = {.lex_state = 54, .external_lex_state = 2}, - [31] = {.lex_state = 141, .external_lex_state = 2}, - [32] = {.lex_state = 141}, - [33] = {.lex_state = 141}, - [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 = 117}, - [39] = {.lex_state = 117}, - [40] = {.lex_state = 143, .external_lex_state = 5}, - [41] = {.lex_state = 160, .external_lex_state = 7}, - [42] = {.lex_state = 117}, - [43] = {.lex_state = 146}, - [44] = {.lex_state = 170, .external_lex_state = 9}, - [45] = {.lex_state = 138}, - [46] = {.lex_state = 138}, - [47] = {.lex_state = 54, .external_lex_state = 2}, - [48] = {.lex_state = 54, .external_lex_state = 2}, - [49] = {.lex_state = 54, .external_lex_state = 2}, - [50] = {.lex_state = 170, .external_lex_state = 5}, - [51] = {.lex_state = 117}, - [52] = {.lex_state = 117}, - [53] = {.lex_state = 141}, - [54] = {.lex_state = 173, .external_lex_state = 3}, - [55] = {.lex_state = 162, .external_lex_state = 4}, - [56] = {.lex_state = 175, .external_lex_state = 4}, - [57] = {.lex_state = 173, .external_lex_state = 5}, - [58] = {.lex_state = 162, .external_lex_state = 6}, - [59] = {.lex_state = 168, .external_lex_state = 7}, - [60] = {.lex_state = 117}, - [61] = {.lex_state = 54, .external_lex_state = 2}, - [62] = {.lex_state = 141, .external_lex_state = 2}, - [63] = {.lex_state = 146}, - [64] = {.lex_state = 177, .external_lex_state = 10}, - [65] = {.lex_state = 138}, - [66] = {.lex_state = 138}, - [67] = {.lex_state = 54, .external_lex_state = 2}, - [68] = {.lex_state = 54, .external_lex_state = 2}, - [69] = {.lex_state = 54, .external_lex_state = 2}, - [70] = {.lex_state = 177}, - [71] = {.lex_state = 177}, - [72] = {.lex_state = 146}, - [73] = {.lex_state = 180, .external_lex_state = 10}, - [74] = {.lex_state = 138}, - [75] = {.lex_state = 138}, - [76] = {.lex_state = 54, .external_lex_state = 2}, - [77] = {.lex_state = 54, .external_lex_state = 2}, - [78] = {.lex_state = 54, .external_lex_state = 2}, - [79] = {.lex_state = 180}, - [80] = {.lex_state = 180}, - [81] = {.lex_state = 117}, - [82] = {.lex_state = 141}, - [83] = {.lex_state = 184, .external_lex_state = 3}, - [84] = {.lex_state = 117}, - [85] = {.lex_state = 143, .external_lex_state = 3}, - [86] = {.lex_state = 186, .external_lex_state = 3}, - [87] = {.lex_state = 146}, - [88] = {.lex_state = 141, .external_lex_state = 11}, - [89] = {.lex_state = 138}, - [90] = {.lex_state = 138}, - [91] = {.lex_state = 54, .external_lex_state = 2}, - [92] = {.lex_state = 54, .external_lex_state = 2}, - [93] = {.lex_state = 54, .external_lex_state = 2}, - [94] = {.lex_state = 141, .external_lex_state = 2}, - [95] = {.lex_state = 162, .external_lex_state = 4}, - [96] = {.lex_state = 146}, - [97] = {.lex_state = 138}, - [98] = {.lex_state = 138}, - [99] = {.lex_state = 54, .external_lex_state = 2}, - [100] = {.lex_state = 54, .external_lex_state = 2}, - [101] = {.lex_state = 146}, - [102] = {.lex_state = 141}, - [103] = {.lex_state = 151, .external_lex_state = 4}, - [104] = {.lex_state = 162, .external_lex_state = 4}, - [105] = {.lex_state = 162, .external_lex_state = 4}, - [106] = {.lex_state = 162, .external_lex_state = 4}, - [107] = {.lex_state = 138}, - [108] = {.lex_state = 117}, - [109] = {.lex_state = 117}, - [110] = {.lex_state = 117}, - [111] = {.lex_state = 138}, - [112] = {.lex_state = 54, .external_lex_state = 2}, - [113] = {.lex_state = 54, .external_lex_state = 2}, - [114] = {.lex_state = 141}, - [115] = {.lex_state = 141}, - [116] = {.lex_state = 54, .external_lex_state = 2}, - [117] = {.lex_state = 141}, - [118] = {.lex_state = 141}, - [119] = {.lex_state = 188, .external_lex_state = 12}, - [120] = {.lex_state = 146}, - [121] = {.lex_state = 190, .external_lex_state = 13}, - [122] = {.lex_state = 138}, - [123] = {.lex_state = 138}, - [124] = {.lex_state = 54, .external_lex_state = 2}, - [125] = {.lex_state = 54, .external_lex_state = 2}, - [126] = {.lex_state = 54, .external_lex_state = 2}, - [127] = {.lex_state = 193, .external_lex_state = 13}, - [128] = {.lex_state = 117}, - [129] = {.lex_state = 190, .external_lex_state = 14}, - [130] = {.lex_state = 195, .external_lex_state = 2}, - [131] = {.lex_state = 117}, - [132] = {.lex_state = 190, .external_lex_state = 14}, - [133] = {.lex_state = 141, .external_lex_state = 2}, - [134] = {.lex_state = 117}, - [135] = {.lex_state = 141}, - [136] = {.lex_state = 197, .external_lex_state = 12}, - [137] = {.lex_state = 199, .external_lex_state = 13}, - [138] = {.lex_state = 201, .external_lex_state = 13}, - [139] = {.lex_state = 117}, - [140] = {.lex_state = 199, .external_lex_state = 14}, - [141] = {.lex_state = 203, .external_lex_state = 2}, - [142] = {.lex_state = 117}, - [143] = {.lex_state = 141, .external_lex_state = 2}, - [144] = {.lex_state = 117}, - [145] = {.lex_state = 195, .external_lex_state = 2}, - [146] = {.lex_state = 117}, - [147] = {.lex_state = 54, .external_lex_state = 2}, - [148] = {.lex_state = 157, .external_lex_state = 2}, - [149] = {.lex_state = 54, .external_lex_state = 2}, - [150] = {.lex_state = 54}, - [151] = {.lex_state = 141}, - [152] = {.lex_state = 205, .external_lex_state = 15}, - [153] = {.lex_state = 151, .external_lex_state = 4}, - [154] = {.lex_state = 207, .external_lex_state = 6}, - [155] = {.lex_state = 162, .external_lex_state = 6}, - [156] = {.lex_state = 151, .external_lex_state = 6}, - [157] = {.lex_state = 211, .external_lex_state = 6}, - [158] = {.lex_state = 54, .external_lex_state = 2}, - [159] = {.lex_state = 117}, - [160] = {.lex_state = 151, .external_lex_state = 6}, - [161] = {.lex_state = 117}, - [162] = {.lex_state = 141, .external_lex_state = 2}, - [163] = {.lex_state = 141, .external_lex_state = 11}, - [164] = {.lex_state = 141, .external_lex_state = 2}, - [165] = {.lex_state = 146}, - [166] = {.lex_state = 213, .external_lex_state = 10}, - [167] = {.lex_state = 138}, - [168] = {.lex_state = 138}, - [169] = {.lex_state = 54, .external_lex_state = 2}, - [170] = {.lex_state = 54, .external_lex_state = 2}, - [171] = {.lex_state = 54, .external_lex_state = 2}, - [172] = {.lex_state = 117}, - [173] = {.lex_state = 168, .external_lex_state = 7}, - [174] = {.lex_state = 215}, - [175] = {.lex_state = 146}, - [176] = {.lex_state = 160, .external_lex_state = 16}, - [177] = {.lex_state = 138}, - [178] = {.lex_state = 138}, - [179] = {.lex_state = 54, .external_lex_state = 2}, - [180] = {.lex_state = 54, .external_lex_state = 2}, - [181] = {.lex_state = 54, .external_lex_state = 2}, - [182] = {.lex_state = 141}, - [183] = {.lex_state = 141}, - [184] = {.lex_state = 217, .external_lex_state = 2}, - [185] = {.lex_state = 173, .external_lex_state = 5}, - [186] = {.lex_state = 117}, - [187] = {.lex_state = 223, .external_lex_state = 2}, - [188] = {.lex_state = 170, .external_lex_state = 9}, - [189] = {.lex_state = 146}, - [190] = {.lex_state = 141}, - [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 = 138}, - [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 = 233, .external_lex_state = 2}, - [208] = {.lex_state = 235, .external_lex_state = 6}, - [209] = {.lex_state = 164, .external_lex_state = 8}, - [210] = {.lex_state = 117}, - [211] = {.lex_state = 117}, - [212] = {.lex_state = 117}, - [213] = {.lex_state = 173, .external_lex_state = 3}, - [214] = {.lex_state = 184, .external_lex_state = 3}, - [215] = {.lex_state = 162, .external_lex_state = 4}, - [216] = {.lex_state = 117}, - [217] = {.lex_state = 54, .external_lex_state = 2}, - [218] = {.lex_state = 173, .external_lex_state = 5}, - [219] = {.lex_state = 238, .external_lex_state = 2}, - [220] = {.lex_state = 54, .external_lex_state = 2}, - [221] = {.lex_state = 54}, - [222] = {.lex_state = 141}, - [223] = {.lex_state = 162, .external_lex_state = 4}, - [224] = {.lex_state = 162, .external_lex_state = 6}, - [225] = {.lex_state = 207, .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 = 240, .external_lex_state = 10}, - [231] = {.lex_state = 146}, - [232] = {.lex_state = 141}, - [233] = {.lex_state = 177, .external_lex_state = 10}, - [234] = {.lex_state = 240, .external_lex_state = 10}, - [235] = {.lex_state = 240, .external_lex_state = 10}, - [236] = {.lex_state = 240, .external_lex_state = 10}, - [237] = {.lex_state = 138}, - [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 = 146}, - [250] = {.lex_state = 141}, - [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 = 138}, - [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 = 143, .external_lex_state = 3}, - [269] = {.lex_state = 186, .external_lex_state = 3}, - [270] = {.lex_state = 186, .external_lex_state = 3}, - [271] = {.lex_state = 141, .external_lex_state = 11}, - [272] = {.lex_state = 146}, - [273] = {.lex_state = 141}, - [274] = {.lex_state = 141, .external_lex_state = 11}, - [275] = {.lex_state = 141, .external_lex_state = 11}, - [276] = {.lex_state = 141, .external_lex_state = 11}, - [277] = {.lex_state = 141, .external_lex_state = 11}, - [278] = {.lex_state = 138}, - [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 = 146}, - [288] = {.lex_state = 146}, - [289] = {.lex_state = 146}, - [290] = {.lex_state = 138}, - [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 = 146}, - [299] = {.lex_state = 162, .external_lex_state = 4}, + [1] = {.lex_state = 120, .external_lex_state = 2}, + [2] = {.lex_state = 120}, + [3] = {.lex_state = 128, .external_lex_state = 3}, + [4] = {.lex_state = 130}, + [5] = {.lex_state = 151}, + [6] = {.lex_state = 120, .external_lex_state = 2}, + [7] = {.lex_state = 120, .external_lex_state = 2}, + [8] = {.lex_state = 151, .external_lex_state = 4}, + [9] = {.lex_state = 151}, + [10] = {.lex_state = 120, .external_lex_state = 2}, + [11] = {.lex_state = 151, .external_lex_state = 4}, + [12] = {.lex_state = 151, .external_lex_state = 4}, + [13] = {.lex_state = 155, .external_lex_state = 5}, + [14] = {.lex_state = 151, .external_lex_state = 4}, + [15] = {.lex_state = 158}, + [16] = {.lex_state = 163}, + [17] = {.lex_state = 163}, + [18] = {.lex_state = 120, .external_lex_state = 2}, + [19] = {.lex_state = 120, .external_lex_state = 2}, + [20] = {.lex_state = 120, .external_lex_state = 2}, + [21] = {.lex_state = 166, .external_lex_state = 3}, + [22] = {.lex_state = 120}, + [23] = {.lex_state = 168, .external_lex_state = 6}, + [24] = {.lex_state = 155, .external_lex_state = 7}, + [25] = {.lex_state = 128, .external_lex_state = 8}, + [26] = {.lex_state = 171, .external_lex_state = 9}, + [27] = {.lex_state = 130}, + [28] = {.lex_state = 173, .external_lex_state = 2}, + [29] = {.lex_state = 175, .external_lex_state = 8}, + [30] = {.lex_state = 120, .external_lex_state = 2}, + [31] = {.lex_state = 173, .external_lex_state = 2}, + [32] = {.lex_state = 151, .external_lex_state = 4}, + [33] = {.lex_state = 151, .external_lex_state = 4}, + [34] = {.lex_state = 128, .external_lex_state = 3}, + [35] = {.lex_state = 151, .external_lex_state = 4}, + [36] = {.lex_state = 177, .external_lex_state = 10}, + [37] = {.lex_state = 179, .external_lex_state = 9}, + [38] = {.lex_state = 130}, + [39] = {.lex_state = 130}, + [40] = {.lex_state = 155, .external_lex_state = 7}, + [41] = {.lex_state = 171, .external_lex_state = 9}, + [42] = {.lex_state = 130}, + [43] = {.lex_state = 181, .external_lex_state = 11}, + [44] = {.lex_state = 158}, + [45] = {.lex_state = 163}, + [46] = {.lex_state = 163}, + [47] = {.lex_state = 120, .external_lex_state = 2}, + [48] = {.lex_state = 120, .external_lex_state = 2}, + [49] = {.lex_state = 120, .external_lex_state = 2}, + [50] = {.lex_state = 181, .external_lex_state = 11}, + [51] = {.lex_state = 181, .external_lex_state = 7}, + [52] = {.lex_state = 130}, + [53] = {.lex_state = 175, .external_lex_state = 3}, + [54] = {.lex_state = 130}, + [55] = {.lex_state = 151}, + [56] = {.lex_state = 184, .external_lex_state = 5}, + [57] = {.lex_state = 186, .external_lex_state = 3}, + [58] = {.lex_state = 184, .external_lex_state = 7}, + [59] = {.lex_state = 175, .external_lex_state = 8}, + [60] = {.lex_state = 179, .external_lex_state = 9}, + [61] = {.lex_state = 130}, + [62] = {.lex_state = 120, .external_lex_state = 2}, + [63] = {.lex_state = 173, .external_lex_state = 2}, + [64] = {.lex_state = 188, .external_lex_state = 12}, + [65] = {.lex_state = 158}, + [66] = {.lex_state = 163}, + [67] = {.lex_state = 163}, + [68] = {.lex_state = 120, .external_lex_state = 2}, + [69] = {.lex_state = 120, .external_lex_state = 2}, + [70] = {.lex_state = 120, .external_lex_state = 2}, + [71] = {.lex_state = 188, .external_lex_state = 12}, + [72] = {.lex_state = 190, .external_lex_state = 13}, + [73] = {.lex_state = 188, .external_lex_state = 14}, + [74] = {.lex_state = 192, .external_lex_state = 15}, + [75] = {.lex_state = 192, .external_lex_state = 15}, + [76] = {.lex_state = 192, .external_lex_state = 16}, + [77] = {.lex_state = 184, .external_lex_state = 5}, + [78] = {.lex_state = 130}, + [79] = {.lex_state = 184, .external_lex_state = 5}, + [80] = {.lex_state = 130}, + [81] = {.lex_state = 155, .external_lex_state = 5}, + [82] = {.lex_state = 173, .external_lex_state = 17}, + [83] = {.lex_state = 158}, + [84] = {.lex_state = 163}, + [85] = {.lex_state = 163}, + [86] = {.lex_state = 120, .external_lex_state = 2}, + [87] = {.lex_state = 120, .external_lex_state = 2}, + [88] = {.lex_state = 120, .external_lex_state = 2}, + [89] = {.lex_state = 173, .external_lex_state = 17}, + [90] = {.lex_state = 173, .external_lex_state = 2}, + [91] = {.lex_state = 175, .external_lex_state = 3}, + [92] = {.lex_state = 158}, + [93] = {.lex_state = 163}, + [94] = {.lex_state = 163}, + [95] = {.lex_state = 120, .external_lex_state = 2}, + [96] = {.lex_state = 120, .external_lex_state = 2}, + [97] = {.lex_state = 158}, + [98] = {.lex_state = 175, .external_lex_state = 3}, + [99] = {.lex_state = 175, .external_lex_state = 3}, + [100] = {.lex_state = 175, .external_lex_state = 3}, + [101] = {.lex_state = 130, .external_lex_state = 18}, + [102] = {.lex_state = 163, .external_lex_state = 18}, + [103] = {.lex_state = 130, .external_lex_state = 18}, + [104] = {.lex_state = 130, .external_lex_state = 18}, + [105] = {.lex_state = 195, .external_lex_state = 19}, + [106] = {.lex_state = 130}, + [107] = {.lex_state = 151}, + [108] = {.lex_state = 120, .external_lex_state = 2}, + [109] = {.lex_state = 120, .external_lex_state = 2}, + [110] = {.lex_state = 151, .external_lex_state = 4}, + [111] = {.lex_state = 151}, + [112] = {.lex_state = 120, .external_lex_state = 2}, + [113] = {.lex_state = 151, .external_lex_state = 4}, + [114] = {.lex_state = 151, .external_lex_state = 4}, + [115] = {.lex_state = 198, .external_lex_state = 20}, + [116] = {.lex_state = 158}, + [117] = {.lex_state = 163}, + [118] = {.lex_state = 163}, + [119] = {.lex_state = 120, .external_lex_state = 2}, + [120] = {.lex_state = 120, .external_lex_state = 2}, + [121] = {.lex_state = 120, .external_lex_state = 2}, + [122] = {.lex_state = 200, .external_lex_state = 19}, + [123] = {.lex_state = 130}, + [124] = {.lex_state = 195, .external_lex_state = 21}, + [125] = {.lex_state = 202, .external_lex_state = 2}, + [126] = {.lex_state = 130}, + [127] = {.lex_state = 195, .external_lex_state = 21}, + [128] = {.lex_state = 173, .external_lex_state = 2}, + [129] = {.lex_state = 204, .external_lex_state = 19}, + [130] = {.lex_state = 130}, + [131] = {.lex_state = 151}, + [132] = {.lex_state = 206, .external_lex_state = 20}, + [133] = {.lex_state = 208, .external_lex_state = 19}, + [134] = {.lex_state = 130}, + [135] = {.lex_state = 204, .external_lex_state = 21}, + [136] = {.lex_state = 210, .external_lex_state = 2}, + [137] = {.lex_state = 130}, + [138] = {.lex_state = 173, .external_lex_state = 2}, + [139] = {.lex_state = 130}, + [140] = {.lex_state = 202, .external_lex_state = 2}, + [141] = {.lex_state = 130}, + [142] = {.lex_state = 128, .external_lex_state = 3}, + [143] = {.lex_state = 120, .external_lex_state = 2}, + [144] = {.lex_state = 168, .external_lex_state = 6}, + [145] = {.lex_state = 120, .external_lex_state = 2}, + [146] = {.lex_state = 120}, + [147] = {.lex_state = 128, .external_lex_state = 3}, + [148] = {.lex_state = 151, .external_lex_state = 4}, + [149] = {.lex_state = 212, .external_lex_state = 22}, + [150] = {.lex_state = 128, .external_lex_state = 3}, + [151] = {.lex_state = 214, .external_lex_state = 23}, + [152] = {.lex_state = 175, .external_lex_state = 8}, + [153] = {.lex_state = 128, .external_lex_state = 8}, + [154] = {.lex_state = 218, .external_lex_state = 23}, + [155] = {.lex_state = 120, .external_lex_state = 2}, + [156] = {.lex_state = 130}, + [157] = {.lex_state = 128, .external_lex_state = 3}, + [158] = {.lex_state = 128, .external_lex_state = 8}, + [159] = {.lex_state = 130}, + [160] = {.lex_state = 173, .external_lex_state = 2}, + [161] = {.lex_state = 173, .external_lex_state = 17}, + [162] = {.lex_state = 173, .external_lex_state = 17}, + [163] = {.lex_state = 173, .external_lex_state = 2}, + [164] = {.lex_state = 175, .external_lex_state = 3}, + [165] = {.lex_state = 175, .external_lex_state = 3}, + [166] = {.lex_state = 128, .external_lex_state = 3}, + [167] = {.lex_state = 220, .external_lex_state = 24}, + [168] = {.lex_state = 158}, + [169] = {.lex_state = 163}, + [170] = {.lex_state = 163}, + [171] = {.lex_state = 120, .external_lex_state = 2}, + [172] = {.lex_state = 120, .external_lex_state = 2}, + [173] = {.lex_state = 120, .external_lex_state = 2}, + [174] = {.lex_state = 220, .external_lex_state = 24}, + [175] = {.lex_state = 130, .external_lex_state = 25}, + [176] = {.lex_state = 171, .external_lex_state = 26}, + [177] = {.lex_state = 179, .external_lex_state = 9}, + [178] = {.lex_state = 222, .external_lex_state = 4}, + [179] = {.lex_state = 158}, + [180] = {.lex_state = 163}, + [181] = {.lex_state = 163}, + [182] = {.lex_state = 120, .external_lex_state = 2}, + [183] = {.lex_state = 120, .external_lex_state = 2}, + [184] = {.lex_state = 120, .external_lex_state = 2}, + [185] = {.lex_state = 171, .external_lex_state = 26}, + [186] = {.lex_state = 151, .external_lex_state = 4}, + [187] = {.lex_state = 224, .external_lex_state = 2}, + [188] = {.lex_state = 184, .external_lex_state = 7}, + [189] = {.lex_state = 130}, + [190] = {.lex_state = 226, .external_lex_state = 2}, + [191] = {.lex_state = 151, .external_lex_state = 4}, + [192] = {.lex_state = 181, .external_lex_state = 7}, + [193] = {.lex_state = 130}, + [194] = {.lex_state = 181, .external_lex_state = 11}, + [195] = {.lex_state = 181, .external_lex_state = 11}, + [196] = {.lex_state = 158}, + [197] = {.lex_state = 181, .external_lex_state = 11}, + [198] = {.lex_state = 181, .external_lex_state = 11}, + [199] = {.lex_state = 181, .external_lex_state = 11}, + [200] = {.lex_state = 163, .external_lex_state = 18}, + [201] = {.lex_state = 130, .external_lex_state = 18}, + [202] = {.lex_state = 130, .external_lex_state = 18}, + [203] = {.lex_state = 130}, + [204] = {.lex_state = 202, .external_lex_state = 2}, + [205] = {.lex_state = 130}, + [206] = {.lex_state = 210, .external_lex_state = 2}, + [207] = {.lex_state = 130}, + [208] = {.lex_state = 202, .external_lex_state = 2}, + [209] = {.lex_state = 181, .external_lex_state = 7}, + [210] = {.lex_state = 130}, + [211] = {.lex_state = 181, .external_lex_state = 11}, + [212] = {.lex_state = 130}, + [213] = {.lex_state = 229, .external_lex_state = 6}, + [214] = {.lex_state = 231, .external_lex_state = 23}, + [215] = {.lex_state = 175, .external_lex_state = 3}, + [216] = {.lex_state = 177, .external_lex_state = 10}, + [217] = {.lex_state = 130}, + [218] = {.lex_state = 130}, + [219] = {.lex_state = 130}, + [220] = {.lex_state = 184, .external_lex_state = 5}, + [221] = {.lex_state = 130}, + [222] = {.lex_state = 175, .external_lex_state = 3}, + [223] = {.lex_state = 120, .external_lex_state = 2}, + [224] = {.lex_state = 184, .external_lex_state = 7}, + [225] = {.lex_state = 234, .external_lex_state = 2}, + [226] = {.lex_state = 120, .external_lex_state = 2}, + [227] = {.lex_state = 120}, + [228] = {.lex_state = 175, .external_lex_state = 3}, + [229] = {.lex_state = 151, .external_lex_state = 4}, + [230] = {.lex_state = 175, .external_lex_state = 3}, + [231] = {.lex_state = 175, .external_lex_state = 8}, + [232] = {.lex_state = 214, .external_lex_state = 23}, + [233] = {.lex_state = 184, .external_lex_state = 7}, + [234] = {.lex_state = 179, .external_lex_state = 9}, + [235] = {.lex_state = 120, .external_lex_state = 2}, + [236] = {.lex_state = 175, .external_lex_state = 3}, + [237] = {.lex_state = 175, .external_lex_state = 8}, + [238] = {.lex_state = 151, .external_lex_state = 4}, + [239] = {.lex_state = 188, .external_lex_state = 12}, + [240] = {.lex_state = 190, .external_lex_state = 27}, + [241] = {.lex_state = 158}, + [242] = {.lex_state = 190, .external_lex_state = 27}, + [243] = {.lex_state = 190, .external_lex_state = 27}, + [244] = {.lex_state = 190, .external_lex_state = 27}, + [245] = {.lex_state = 163, .external_lex_state = 18}, + [246] = {.lex_state = 130, .external_lex_state = 18}, + [247] = {.lex_state = 130, .external_lex_state = 18}, + [248] = {.lex_state = 130}, + [249] = {.lex_state = 202, .external_lex_state = 2}, + [250] = {.lex_state = 130}, + [251] = {.lex_state = 210, .external_lex_state = 2}, + [252] = {.lex_state = 130}, + [253] = {.lex_state = 202, .external_lex_state = 2}, + [254] = {.lex_state = 188, .external_lex_state = 12}, + [255] = {.lex_state = 184, .external_lex_state = 7}, + [256] = {.lex_state = 188, .external_lex_state = 14}, + [257] = {.lex_state = 192, .external_lex_state = 15}, + [258] = {.lex_state = 192, .external_lex_state = 15}, + [259] = {.lex_state = 192, .external_lex_state = 16}, + [260] = {.lex_state = 177, .external_lex_state = 10}, + [261] = {.lex_state = 184, .external_lex_state = 5}, + [262] = {.lex_state = 155, .external_lex_state = 5}, + [263] = {.lex_state = 151, .external_lex_state = 4}, + [264] = {.lex_state = 173, .external_lex_state = 17}, + [265] = {.lex_state = 202, .external_lex_state = 17}, + [266] = {.lex_state = 158}, + [267] = {.lex_state = 202, .external_lex_state = 17}, + [268] = {.lex_state = 202, .external_lex_state = 17}, + [269] = {.lex_state = 202, .external_lex_state = 17}, + [270] = {.lex_state = 163, .external_lex_state = 18}, + [271] = {.lex_state = 130, .external_lex_state = 18}, + [272] = {.lex_state = 130, .external_lex_state = 18}, + [273] = {.lex_state = 130}, + [274] = {.lex_state = 202, .external_lex_state = 2}, + [275] = {.lex_state = 130}, + [276] = {.lex_state = 210, .external_lex_state = 2}, + [277] = {.lex_state = 130}, + [278] = {.lex_state = 202, .external_lex_state = 2}, + [279] = {.lex_state = 173, .external_lex_state = 17}, + [280] = {.lex_state = 158}, + [281] = {.lex_state = 158}, + [282] = {.lex_state = 158}, + [283] = {.lex_state = 163, .external_lex_state = 18}, + [284] = {.lex_state = 130, .external_lex_state = 18}, + [285] = {.lex_state = 130, .external_lex_state = 18}, + [286] = {.lex_state = 130}, + [287] = {.lex_state = 202, .external_lex_state = 2}, + [288] = {.lex_state = 130}, + [289] = {.lex_state = 210, .external_lex_state = 2}, + [290] = {.lex_state = 175, .external_lex_state = 3}, + [291] = {.lex_state = 158}, + [292] = {.lex_state = 130, .external_lex_state = 18}, + [293] = {.lex_state = 130, .external_lex_state = 18}, + [294] = {.lex_state = 175, .external_lex_state = 3}, + [295] = {.lex_state = 130}, + [296] = {.lex_state = 236, .external_lex_state = 28}, + [297] = {.lex_state = 175, .external_lex_state = 3}, + [298] = {.lex_state = 130}, + [299] = {.lex_state = 236, .external_lex_state = 28}, [300] = {.lex_state = 151, .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 = 215}, - [306] = {.lex_state = 162, .external_lex_state = 4}, - [307] = {.lex_state = 117}, - [308] = {.lex_state = 215}, - [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 = 117}, - [315] = {.lex_state = 170, .external_lex_state = 9}, - [316] = {.lex_state = 170, .external_lex_state = 5}, - [317] = {.lex_state = 117}, - [318] = {.lex_state = 173, .external_lex_state = 5}, - [319] = {.lex_state = 168, .external_lex_state = 7}, - [320] = {.lex_state = 54, .external_lex_state = 2}, - [321] = {.lex_state = 177}, - [322] = {.lex_state = 180}, - [323] = {.lex_state = 117}, - [324] = {.lex_state = 141}, - [325] = {.lex_state = 242, .external_lex_state = 12}, - [326] = {.lex_state = 117}, - [327] = {.lex_state = 188, .external_lex_state = 12}, - [328] = {.lex_state = 244, .external_lex_state = 12}, - [329] = {.lex_state = 190, .external_lex_state = 13}, - [330] = {.lex_state = 146}, - [331] = {.lex_state = 141}, - [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 = 190, .external_lex_state = 13}, - [336] = {.lex_state = 138}, - [337] = {.lex_state = 117}, - [338] = {.lex_state = 117}, - [339] = {.lex_state = 117}, - [340] = {.lex_state = 195, .external_lex_state = 2}, - [341] = {.lex_state = 117}, - [342] = {.lex_state = 203, .external_lex_state = 2}, - [343] = {.lex_state = 117}, - [344] = {.lex_state = 195, .external_lex_state = 2}, - [345] = {.lex_state = 117}, - [346] = {.lex_state = 54, .external_lex_state = 2}, - [347] = {.lex_state = 162, .external_lex_state = 4}, - [348] = {.lex_state = 54, .external_lex_state = 2}, - [349] = {.lex_state = 54}, - [350] = {.lex_state = 141}, - [351] = {.lex_state = 205, .external_lex_state = 15}, - [352] = {.lex_state = 190, .external_lex_state = 13}, - [353] = {.lex_state = 246, .external_lex_state = 14}, - [354] = {.lex_state = 190, .external_lex_state = 14}, - [355] = {.lex_state = 190, .external_lex_state = 14}, - [356] = {.lex_state = 248, .external_lex_state = 14}, - [357] = {.lex_state = 190, .external_lex_state = 14}, - [358] = {.lex_state = 164, .external_lex_state = 8}, - [359] = {.lex_state = 117}, - [360] = {.lex_state = 117}, - [361] = {.lex_state = 117}, - [362] = {.lex_state = 197, .external_lex_state = 12}, - [363] = {.lex_state = 250, .external_lex_state = 12}, - [364] = {.lex_state = 199, .external_lex_state = 13}, - [365] = {.lex_state = 117}, - [366] = {.lex_state = 54, .external_lex_state = 2}, - [367] = {.lex_state = 54, .external_lex_state = 2}, - [368] = {.lex_state = 54}, - [369] = {.lex_state = 141}, - [370] = {.lex_state = 199, .external_lex_state = 13}, - [371] = {.lex_state = 199, .external_lex_state = 14}, - [372] = {.lex_state = 252, .external_lex_state = 14}, - [373] = {.lex_state = 199, .external_lex_state = 14}, - [374] = {.lex_state = 162, .external_lex_state = 4}, - [375] = {.lex_state = 117}, - [376] = {.lex_state = 173, .external_lex_state = 5}, - [377] = {.lex_state = 168, .external_lex_state = 7}, - [378] = {.lex_state = 143, .external_lex_state = 5}, - [379] = {.lex_state = 160, .external_lex_state = 7}, - [380] = {.lex_state = 141}, - [381] = {.lex_state = 146}, - [382] = {.lex_state = 211, .external_lex_state = 4}, - [383] = {.lex_state = 138}, - [384] = {.lex_state = 138}, - [385] = {.lex_state = 54, .external_lex_state = 2}, - [386] = {.lex_state = 54, .external_lex_state = 2}, - [387] = {.lex_state = 54, .external_lex_state = 2}, - [388] = {.lex_state = 207, .external_lex_state = 6}, - [389] = {.lex_state = 207, .external_lex_state = 6}, - [390] = {.lex_state = 254, .external_lex_state = 17}, - [391] = {.lex_state = 207, .external_lex_state = 6}, - [392] = {.lex_state = 151, .external_lex_state = 6}, - [393] = {.lex_state = 211, .external_lex_state = 6}, - [394] = {.lex_state = 211, .external_lex_state = 6}, - [395] = {.lex_state = 164, .external_lex_state = 8}, - [396] = {.lex_state = 141, .external_lex_state = 2}, - [397] = {.lex_state = 151, .external_lex_state = 6}, - [398] = {.lex_state = 257, .external_lex_state = 10}, - [399] = {.lex_state = 146}, - [400] = {.lex_state = 141}, - [401] = {.lex_state = 117}, - [402] = {.lex_state = 213, .external_lex_state = 10}, - [403] = {.lex_state = 257, .external_lex_state = 10}, - [404] = {.lex_state = 257, .external_lex_state = 10}, - [405] = {.lex_state = 257, .external_lex_state = 10}, - [406] = {.lex_state = 138}, - [407] = {.lex_state = 117}, - [408] = {.lex_state = 117}, - [409] = {.lex_state = 117}, - [410] = {.lex_state = 195, .external_lex_state = 2}, - [411] = {.lex_state = 117}, - [412] = {.lex_state = 203, .external_lex_state = 2}, - [413] = {.lex_state = 117}, - [414] = {.lex_state = 195, .external_lex_state = 2}, - [415] = {.lex_state = 168, .external_lex_state = 7}, - [416] = {.lex_state = 146}, - [417] = {.lex_state = 260, .external_lex_state = 10}, - [418] = {.lex_state = 138}, - [419] = {.lex_state = 138}, - [420] = {.lex_state = 54, .external_lex_state = 2}, - [421] = {.lex_state = 54, .external_lex_state = 2}, - [422] = {.lex_state = 54, .external_lex_state = 2}, - [423] = {.lex_state = 215}, - [424] = {.lex_state = 215}, - [425] = {.lex_state = 168, .external_lex_state = 16}, - [426] = {.lex_state = 146}, - [427] = {.lex_state = 141}, - [428] = {.lex_state = 160, .external_lex_state = 16}, - [429] = {.lex_state = 168, .external_lex_state = 16}, - [430] = {.lex_state = 168, .external_lex_state = 16}, - [431] = {.lex_state = 168, .external_lex_state = 16}, - [432] = {.lex_state = 138}, - [433] = {.lex_state = 117}, - [434] = {.lex_state = 117}, - [435] = {.lex_state = 117}, - [436] = {.lex_state = 195, .external_lex_state = 2}, - [437] = {.lex_state = 117}, - [438] = {.lex_state = 203, .external_lex_state = 2}, - [439] = {.lex_state = 117}, - [440] = {.lex_state = 195, .external_lex_state = 2}, - [441] = {.lex_state = 146}, - [442] = {.lex_state = 262, .external_lex_state = 9}, - [443] = {.lex_state = 138}, - [444] = {.lex_state = 138}, - [445] = {.lex_state = 54, .external_lex_state = 2}, - [446] = {.lex_state = 54, .external_lex_state = 2}, - [447] = {.lex_state = 54, .external_lex_state = 2}, - [448] = {.lex_state = 262, .external_lex_state = 5}, - [449] = {.lex_state = 262, .external_lex_state = 5}, - [450] = {.lex_state = 262, .external_lex_state = 5}, - [451] = {.lex_state = 173, .external_lex_state = 5}, - [452] = {.lex_state = 217, .external_lex_state = 2}, - [453] = {.lex_state = 143, .external_lex_state = 5}, - [454] = {.lex_state = 160, .external_lex_state = 7}, - [455] = {.lex_state = 217, .external_lex_state = 2}, - [456] = {.lex_state = 173, .external_lex_state = 5}, - [457] = {.lex_state = 54, .external_lex_state = 2}, - [458] = {.lex_state = 264, .external_lex_state = 2}, - [459] = {.lex_state = 223, .external_lex_state = 2}, - [460] = {.lex_state = 143, .external_lex_state = 5}, - [461] = {.lex_state = 117}, - [462] = {.lex_state = 117}, - [463] = {.lex_state = 160, .external_lex_state = 7}, - [464] = {.lex_state = 223, .external_lex_state = 2}, - [465] = {.lex_state = 117}, - [466] = {.lex_state = 170, .external_lex_state = 9}, - [467] = {.lex_state = 170, .external_lex_state = 9}, - [468] = {.lex_state = 266}, - [469] = {.lex_state = 170, .external_lex_state = 5}, - [470] = {.lex_state = 170, .external_lex_state = 9}, - [471] = {.lex_state = 117}, - [472] = {.lex_state = 117}, - [473] = {.lex_state = 170, .external_lex_state = 9}, - [474] = {.lex_state = 117}, - [475] = {.lex_state = 215}, - [476] = {.lex_state = 170, .external_lex_state = 9}, - [477] = {.lex_state = 117}, - [478] = {.lex_state = 215}, - [479] = {.lex_state = 170, .external_lex_state = 9}, - [480] = {.lex_state = 170, .external_lex_state = 9}, - [481] = {.lex_state = 117}, - [482] = {.lex_state = 272, .external_lex_state = 6}, - [483] = {.lex_state = 233, .external_lex_state = 2}, - [484] = {.lex_state = 54}, - [485] = {.lex_state = 141}, - [486] = {.lex_state = 173, .external_lex_state = 5}, - [487] = {.lex_state = 168, .external_lex_state = 16}, - [488] = {.lex_state = 117}, - [489] = {.lex_state = 272, .external_lex_state = 6}, - [490] = {.lex_state = 164, .external_lex_state = 8}, - [491] = {.lex_state = 173, .external_lex_state = 3}, - [492] = {.lex_state = 184, .external_lex_state = 3}, - [493] = {.lex_state = 184, .external_lex_state = 3}, - [494] = {.lex_state = 162, .external_lex_state = 4}, - [495] = {.lex_state = 117}, - [496] = {.lex_state = 173, .external_lex_state = 5}, - [497] = {.lex_state = 173, .external_lex_state = 5}, - [498] = {.lex_state = 168, .external_lex_state = 7}, - [499] = {.lex_state = 141}, - [500] = {.lex_state = 207, .external_lex_state = 4}, - [501] = {.lex_state = 162, .external_lex_state = 6}, - [502] = {.lex_state = 207, .external_lex_state = 6}, - [503] = {.lex_state = 207, .external_lex_state = 6}, - [504] = {.lex_state = 238, .external_lex_state = 2}, - [505] = {.lex_state = 162, .external_lex_state = 6}, - [506] = {.lex_state = 240, .external_lex_state = 10}, - [507] = {.lex_state = 240, .external_lex_state = 10}, - [508] = {.lex_state = 177, .external_lex_state = 10}, - [509] = {.lex_state = 117}, - [510] = {.lex_state = 117}, - [511] = {.lex_state = 240, .external_lex_state = 10}, - [512] = {.lex_state = 117}, - [513] = {.lex_state = 215}, - [514] = {.lex_state = 240, .external_lex_state = 10}, - [515] = {.lex_state = 117}, - [516] = {.lex_state = 215}, - [517] = {.lex_state = 240, .external_lex_state = 10}, - [518] = {.lex_state = 240, .external_lex_state = 10}, - [519] = {.lex_state = 180, .external_lex_state = 10}, - [520] = {.lex_state = 180, .external_lex_state = 10}, - [521] = {.lex_state = 180, .external_lex_state = 10}, - [522] = {.lex_state = 117}, - [523] = {.lex_state = 117}, - [524] = {.lex_state = 180, .external_lex_state = 10}, - [525] = {.lex_state = 117}, - [526] = {.lex_state = 215}, - [527] = {.lex_state = 180, .external_lex_state = 10}, - [528] = {.lex_state = 117}, - [529] = {.lex_state = 215}, - [530] = {.lex_state = 180, .external_lex_state = 10}, - [531] = {.lex_state = 180, .external_lex_state = 10}, - [532] = {.lex_state = 184, .external_lex_state = 3}, - [533] = {.lex_state = 215}, - [534] = {.lex_state = 146}, - [535] = {.lex_state = 186, .external_lex_state = 18}, - [536] = {.lex_state = 138}, - [537] = {.lex_state = 138}, - [538] = {.lex_state = 54, .external_lex_state = 2}, - [539] = {.lex_state = 54, .external_lex_state = 2}, - [540] = {.lex_state = 54, .external_lex_state = 2}, - [541] = {.lex_state = 141, .external_lex_state = 11}, - [542] = {.lex_state = 141, .external_lex_state = 11}, - [543] = {.lex_state = 141, .external_lex_state = 11}, - [544] = {.lex_state = 117}, - [545] = {.lex_state = 117}, - [546] = {.lex_state = 141, .external_lex_state = 11}, - [547] = {.lex_state = 117}, - [548] = {.lex_state = 215}, - [549] = {.lex_state = 141, .external_lex_state = 11}, - [550] = {.lex_state = 117}, - [551] = {.lex_state = 215}, - [552] = {.lex_state = 141, .external_lex_state = 11}, - [553] = {.lex_state = 141, .external_lex_state = 11}, - [554] = {.lex_state = 117}, - [555] = {.lex_state = 117}, - [556] = {.lex_state = 146}, - [557] = {.lex_state = 117}, - [558] = {.lex_state = 215}, - [559] = {.lex_state = 146}, - [560] = {.lex_state = 117}, - [561] = {.lex_state = 215}, - [562] = {.lex_state = 146}, - [563] = {.lex_state = 162, .external_lex_state = 4}, - [564] = {.lex_state = 117}, - [565] = {.lex_state = 162, .external_lex_state = 4}, - [566] = {.lex_state = 117}, - [567] = {.lex_state = 117}, - [568] = {.lex_state = 162, .external_lex_state = 4}, - [569] = {.lex_state = 274, .external_lex_state = 10}, - [570] = {.lex_state = 117}, - [571] = {.lex_state = 117}, - [572] = {.lex_state = 274, .external_lex_state = 10}, - [573] = {.lex_state = 117}, - [574] = {.lex_state = 195, .external_lex_state = 2}, - [575] = {.lex_state = 215}, - [576] = {.lex_state = 146}, - [577] = {.lex_state = 195, .external_lex_state = 11}, - [578] = {.lex_state = 138}, - [579] = {.lex_state = 138}, - [580] = {.lex_state = 54, .external_lex_state = 2}, - [581] = {.lex_state = 54, .external_lex_state = 2}, - [582] = {.lex_state = 54, .external_lex_state = 2}, - [583] = {.lex_state = 141}, - [584] = {.lex_state = 141}, - [585] = {.lex_state = 217, .external_lex_state = 2}, - [586] = {.lex_state = 117}, - [587] = {.lex_state = 223, .external_lex_state = 2}, - [588] = {.lex_state = 170, .external_lex_state = 5}, - [589] = {.lex_state = 117}, - [590] = {.lex_state = 117}, - [591] = {.lex_state = 233, .external_lex_state = 2}, - [592] = {.lex_state = 276, .external_lex_state = 14}, - [593] = {.lex_state = 117}, - [594] = {.lex_state = 238, .external_lex_state = 2}, - [595] = {.lex_state = 173, .external_lex_state = 5}, - [596] = {.lex_state = 168, .external_lex_state = 7}, - [597] = {.lex_state = 117}, - [598] = {.lex_state = 164, .external_lex_state = 8}, - [599] = {.lex_state = 242, .external_lex_state = 12}, - [600] = {.lex_state = 278, .external_lex_state = 12}, - [601] = {.lex_state = 188, .external_lex_state = 12}, - [602] = {.lex_state = 244, .external_lex_state = 12}, - [603] = {.lex_state = 244, .external_lex_state = 12}, - [604] = {.lex_state = 190, .external_lex_state = 13}, - [605] = {.lex_state = 190, .external_lex_state = 13}, - [606] = {.lex_state = 190, .external_lex_state = 13}, - [607] = {.lex_state = 117}, - [608] = {.lex_state = 117}, - [609] = {.lex_state = 190, .external_lex_state = 13}, - [610] = {.lex_state = 117}, - [611] = {.lex_state = 215}, - [612] = {.lex_state = 190, .external_lex_state = 13}, - [613] = {.lex_state = 117}, - [614] = {.lex_state = 215}, - [615] = {.lex_state = 190, .external_lex_state = 13}, - [616] = {.lex_state = 190, .external_lex_state = 13}, - [617] = {.lex_state = 117}, - [618] = {.lex_state = 117}, - [619] = {.lex_state = 195, .external_lex_state = 2}, - [620] = {.lex_state = 117}, - [621] = {.lex_state = 195, .external_lex_state = 2}, - [622] = {.lex_state = 141}, - [623] = {.lex_state = 146}, - [624] = {.lex_state = 248, .external_lex_state = 13}, - [625] = {.lex_state = 138}, - [626] = {.lex_state = 138}, - [627] = {.lex_state = 54, .external_lex_state = 2}, - [628] = {.lex_state = 54, .external_lex_state = 2}, - [629] = {.lex_state = 54, .external_lex_state = 2}, - [630] = {.lex_state = 246, .external_lex_state = 14}, - [631] = {.lex_state = 246, .external_lex_state = 14}, - [632] = {.lex_state = 254, .external_lex_state = 17}, - [633] = {.lex_state = 246, .external_lex_state = 14}, - [634] = {.lex_state = 190, .external_lex_state = 14}, - [635] = {.lex_state = 248, .external_lex_state = 14}, - [636] = {.lex_state = 248, .external_lex_state = 14}, - [637] = {.lex_state = 190, .external_lex_state = 14}, - [638] = {.lex_state = 203, .external_lex_state = 11}, - [639] = {.lex_state = 117}, - [640] = {.lex_state = 280, .external_lex_state = 14}, - [641] = {.lex_state = 164, .external_lex_state = 8}, - [642] = {.lex_state = 197, .external_lex_state = 12}, - [643] = {.lex_state = 250, .external_lex_state = 12}, - [644] = {.lex_state = 250, .external_lex_state = 12}, - [645] = {.lex_state = 199, .external_lex_state = 13}, - [646] = {.lex_state = 117}, - [647] = {.lex_state = 203, .external_lex_state = 2}, - [648] = {.lex_state = 117}, - [649] = {.lex_state = 203, .external_lex_state = 2}, - [650] = {.lex_state = 141}, - [651] = {.lex_state = 252, .external_lex_state = 13}, - [652] = {.lex_state = 199, .external_lex_state = 14}, - [653] = {.lex_state = 252, .external_lex_state = 14}, - [654] = {.lex_state = 252, .external_lex_state = 14}, - [655] = {.lex_state = 199, .external_lex_state = 14}, - [656] = {.lex_state = 235, .external_lex_state = 6}, - [657] = {.lex_state = 211, .external_lex_state = 4}, - [658] = {.lex_state = 207, .external_lex_state = 6}, - [659] = {.lex_state = 207, .external_lex_state = 4}, - [660] = {.lex_state = 146}, - [661] = {.lex_state = 141}, - [662] = {.lex_state = 211, .external_lex_state = 4}, - [663] = {.lex_state = 207, .external_lex_state = 4}, - [664] = {.lex_state = 207, .external_lex_state = 4}, - [665] = {.lex_state = 207, .external_lex_state = 4}, - [666] = {.lex_state = 138}, - [667] = {.lex_state = 117}, - [668] = {.lex_state = 117}, - [669] = {.lex_state = 117}, - [670] = {.lex_state = 195, .external_lex_state = 2}, - [671] = {.lex_state = 117}, - [672] = {.lex_state = 203, .external_lex_state = 2}, - [673] = {.lex_state = 117}, - [674] = {.lex_state = 195, .external_lex_state = 2}, - [675] = {.lex_state = 254, .external_lex_state = 17}, - [676] = {.lex_state = 207, .external_lex_state = 6}, - [677] = {.lex_state = 138}, - [678] = {.lex_state = 138}, - [679] = {.lex_state = 254, .external_lex_state = 17}, - [680] = {.lex_state = 141, .external_lex_state = 2}, - [681] = {.lex_state = 215}, - [682] = {.lex_state = 141, .external_lex_state = 11}, - [683] = {.lex_state = 211, .external_lex_state = 6}, - [684] = {.lex_state = 257, .external_lex_state = 10}, - [685] = {.lex_state = 257, .external_lex_state = 10}, - [686] = {.lex_state = 213, .external_lex_state = 10}, - [687] = {.lex_state = 117}, - [688] = {.lex_state = 117}, - [689] = {.lex_state = 257, .external_lex_state = 10}, - [690] = {.lex_state = 117}, - [691] = {.lex_state = 215}, - [692] = {.lex_state = 257, .external_lex_state = 10}, - [693] = {.lex_state = 117}, - [694] = {.lex_state = 215}, - [695] = {.lex_state = 257, .external_lex_state = 10}, - [696] = {.lex_state = 257, .external_lex_state = 10}, - [697] = {.lex_state = 260, .external_lex_state = 10}, - [698] = {.lex_state = 146}, - [699] = {.lex_state = 141}, - [700] = {.lex_state = 260, .external_lex_state = 10}, - [701] = {.lex_state = 260, .external_lex_state = 10}, - [702] = {.lex_state = 260, .external_lex_state = 10}, - [703] = {.lex_state = 260, .external_lex_state = 10}, - [704] = {.lex_state = 138}, - [705] = {.lex_state = 117}, - [706] = {.lex_state = 117}, - [707] = {.lex_state = 117}, - [708] = {.lex_state = 195, .external_lex_state = 2}, - [709] = {.lex_state = 117}, - [710] = {.lex_state = 203, .external_lex_state = 2}, - [711] = {.lex_state = 117}, - [712] = {.lex_state = 195, .external_lex_state = 2}, - [713] = {.lex_state = 168, .external_lex_state = 7}, - [714] = {.lex_state = 215}, - [715] = {.lex_state = 168, .external_lex_state = 16}, - [716] = {.lex_state = 168, .external_lex_state = 16}, - [717] = {.lex_state = 160, .external_lex_state = 16}, - [718] = {.lex_state = 117}, - [719] = {.lex_state = 117}, - [720] = {.lex_state = 168, .external_lex_state = 16}, - [721] = {.lex_state = 117}, - [722] = {.lex_state = 215}, - [723] = {.lex_state = 168, .external_lex_state = 16}, - [724] = {.lex_state = 117}, - [725] = {.lex_state = 215}, - [726] = {.lex_state = 168, .external_lex_state = 16}, - [727] = {.lex_state = 168, .external_lex_state = 16}, - [728] = {.lex_state = 262, .external_lex_state = 9}, - [729] = {.lex_state = 146}, - [730] = {.lex_state = 141}, - [731] = {.lex_state = 262, .external_lex_state = 9}, - [732] = {.lex_state = 262, .external_lex_state = 9}, - [733] = {.lex_state = 262, .external_lex_state = 9}, - [734] = {.lex_state = 262, .external_lex_state = 9}, - [735] = {.lex_state = 138}, - [736] = {.lex_state = 117}, - [737] = {.lex_state = 117}, - [738] = {.lex_state = 117}, - [739] = {.lex_state = 195, .external_lex_state = 2}, - [740] = {.lex_state = 117}, - [741] = {.lex_state = 203, .external_lex_state = 2}, - [742] = {.lex_state = 117}, - [743] = {.lex_state = 195, .external_lex_state = 2}, - [744] = {.lex_state = 117}, - [745] = {.lex_state = 262, .external_lex_state = 5}, - [746] = {.lex_state = 117}, - [747] = {.lex_state = 217, .external_lex_state = 2}, - [748] = {.lex_state = 173, .external_lex_state = 5}, - [749] = {.lex_state = 217, .external_lex_state = 2}, - [750] = {.lex_state = 117}, - [751] = {.lex_state = 264, .external_lex_state = 2}, - [752] = {.lex_state = 143, .external_lex_state = 5}, - [753] = {.lex_state = 160, .external_lex_state = 7}, - [754] = {.lex_state = 264, .external_lex_state = 2}, - [755] = {.lex_state = 223, .external_lex_state = 2}, - [756] = {.lex_state = 173, .external_lex_state = 5}, - [757] = {.lex_state = 117}, - [758] = {.lex_state = 223, .external_lex_state = 2}, - [759] = {.lex_state = 117}, - [760] = {.lex_state = 117}, - [761] = {.lex_state = 173, .external_lex_state = 5}, - [762] = {.lex_state = 282, .external_lex_state = 10}, - [763] = {.lex_state = 266}, - [764] = {.lex_state = 257}, - [765] = {.lex_state = 266}, - [766] = {.lex_state = 266}, - [767] = {.lex_state = 170, .external_lex_state = 9}, - [768] = {.lex_state = 117}, - [769] = {.lex_state = 170, .external_lex_state = 9}, - [770] = {.lex_state = 117}, - [771] = {.lex_state = 117}, - [772] = {.lex_state = 170, .external_lex_state = 9}, - [773] = {.lex_state = 274, .external_lex_state = 10}, - [774] = {.lex_state = 117}, - [775] = {.lex_state = 117}, - [776] = {.lex_state = 274, .external_lex_state = 10}, - [777] = {.lex_state = 117}, - [778] = {.lex_state = 235, .external_lex_state = 6}, - [779] = {.lex_state = 272, .external_lex_state = 6}, - [780] = {.lex_state = 233, .external_lex_state = 2}, - [781] = {.lex_state = 141}, - [782] = {.lex_state = 146}, - [783] = {.lex_state = 284, .external_lex_state = 9}, - [784] = {.lex_state = 138}, - [785] = {.lex_state = 138}, - [786] = {.lex_state = 54, .external_lex_state = 2}, - [787] = {.lex_state = 54, .external_lex_state = 2}, - [788] = {.lex_state = 54, .external_lex_state = 2}, - [789] = {.lex_state = 173, .external_lex_state = 5}, - [790] = {.lex_state = 168, .external_lex_state = 16}, - [791] = {.lex_state = 117}, - [792] = {.lex_state = 54}, - [793] = {.lex_state = 141}, - [794] = {.lex_state = 184, .external_lex_state = 18}, - [795] = {.lex_state = 272, .external_lex_state = 6}, - [796] = {.lex_state = 207, .external_lex_state = 4}, - [797] = {.lex_state = 207, .external_lex_state = 4}, - [798] = {.lex_state = 173, .external_lex_state = 5}, - [799] = {.lex_state = 207, .external_lex_state = 6}, - [800] = {.lex_state = 240, .external_lex_state = 10}, - [801] = {.lex_state = 117}, - [802] = {.lex_state = 240, .external_lex_state = 10}, - [803] = {.lex_state = 117}, - [804] = {.lex_state = 117}, - [805] = {.lex_state = 240, .external_lex_state = 10}, - [806] = {.lex_state = 274, .external_lex_state = 10}, - [807] = {.lex_state = 117}, - [808] = {.lex_state = 117}, - [809] = {.lex_state = 274, .external_lex_state = 10}, - [810] = {.lex_state = 117}, - [811] = {.lex_state = 180, .external_lex_state = 10}, - [812] = {.lex_state = 117}, - [813] = {.lex_state = 180, .external_lex_state = 10}, - [814] = {.lex_state = 117}, - [815] = {.lex_state = 117}, - [816] = {.lex_state = 180, .external_lex_state = 10}, - [817] = {.lex_state = 274, .external_lex_state = 10}, - [818] = {.lex_state = 117}, - [819] = {.lex_state = 117}, - [820] = {.lex_state = 274, .external_lex_state = 10}, - [821] = {.lex_state = 117}, - [822] = {.lex_state = 184, .external_lex_state = 3}, - [823] = {.lex_state = 215}, - [824] = {.lex_state = 184, .external_lex_state = 18}, - [825] = {.lex_state = 146}, - [826] = {.lex_state = 141}, - [827] = {.lex_state = 186, .external_lex_state = 18}, - [828] = {.lex_state = 184, .external_lex_state = 18}, - [829] = {.lex_state = 184, .external_lex_state = 18}, - [830] = {.lex_state = 184, .external_lex_state = 18}, - [831] = {.lex_state = 138}, - [832] = {.lex_state = 117}, - [833] = {.lex_state = 117}, - [834] = {.lex_state = 117}, - [835] = {.lex_state = 195, .external_lex_state = 2}, - [836] = {.lex_state = 117}, - [837] = {.lex_state = 203, .external_lex_state = 2}, - [838] = {.lex_state = 117}, - [839] = {.lex_state = 195, .external_lex_state = 2}, - [840] = {.lex_state = 141, .external_lex_state = 11}, - [841] = {.lex_state = 117}, - [842] = {.lex_state = 141, .external_lex_state = 11}, - [843] = {.lex_state = 117}, - [844] = {.lex_state = 117}, - [845] = {.lex_state = 141, .external_lex_state = 11}, - [846] = {.lex_state = 274, .external_lex_state = 10}, - [847] = {.lex_state = 117}, - [848] = {.lex_state = 117}, - [849] = {.lex_state = 274, .external_lex_state = 10}, - [850] = {.lex_state = 117}, - [851] = {.lex_state = 146}, - [852] = {.lex_state = 117}, - [853] = {.lex_state = 146}, - [854] = {.lex_state = 117}, - [855] = {.lex_state = 117}, - [856] = {.lex_state = 146}, - [857] = {.lex_state = 274, .external_lex_state = 10}, - [858] = {.lex_state = 117}, - [859] = {.lex_state = 117}, - [860] = {.lex_state = 274, .external_lex_state = 10}, - [861] = {.lex_state = 117}, - [862] = {.lex_state = 117}, - [863] = {.lex_state = 117}, - [864] = {.lex_state = 117}, - [865] = {.lex_state = 162, .external_lex_state = 4}, - [866] = {.lex_state = 274, .external_lex_state = 10}, - [867] = {.lex_state = 117}, - [868] = {.lex_state = 162, .external_lex_state = 4}, - [869] = {.lex_state = 195, .external_lex_state = 2}, - [870] = {.lex_state = 215}, - [871] = {.lex_state = 195, .external_lex_state = 11}, - [872] = {.lex_state = 146}, - [873] = {.lex_state = 141}, - [874] = {.lex_state = 195, .external_lex_state = 11}, - [875] = {.lex_state = 195, .external_lex_state = 11}, - [876] = {.lex_state = 195, .external_lex_state = 11}, - [877] = {.lex_state = 195, .external_lex_state = 11}, - [878] = {.lex_state = 138}, - [879] = {.lex_state = 117}, - [880] = {.lex_state = 117}, - [881] = {.lex_state = 117}, - [882] = {.lex_state = 195, .external_lex_state = 2}, - [883] = {.lex_state = 117}, - [884] = {.lex_state = 203, .external_lex_state = 2}, - [885] = {.lex_state = 117}, - [886] = {.lex_state = 195, .external_lex_state = 2}, - [887] = {.lex_state = 262, .external_lex_state = 5}, - [888] = {.lex_state = 262, .external_lex_state = 5}, - [889] = {.lex_state = 117}, - [890] = {.lex_state = 217, .external_lex_state = 2}, - [891] = {.lex_state = 117}, - [892] = {.lex_state = 117}, - [893] = {.lex_state = 223, .external_lex_state = 2}, - [894] = {.lex_state = 117}, - [895] = {.lex_state = 266}, - [896] = {.lex_state = 170, .external_lex_state = 5}, - [897] = {.lex_state = 117}, - [898] = {.lex_state = 286, .external_lex_state = 14}, - [899] = {.lex_state = 233, .external_lex_state = 2}, - [900] = {.lex_state = 54}, - [901] = {.lex_state = 141}, - [902] = {.lex_state = 117}, - [903] = {.lex_state = 117}, - [904] = {.lex_state = 238, .external_lex_state = 2}, - [905] = {.lex_state = 242, .external_lex_state = 12}, - [906] = {.lex_state = 215}, - [907] = {.lex_state = 146}, - [908] = {.lex_state = 244, .external_lex_state = 19}, - [909] = {.lex_state = 138}, - [910] = {.lex_state = 138}, - [911] = {.lex_state = 54, .external_lex_state = 2}, - [912] = {.lex_state = 54, .external_lex_state = 2}, - [913] = {.lex_state = 54, .external_lex_state = 2}, - [914] = {.lex_state = 190, .external_lex_state = 13}, - [915] = {.lex_state = 117}, - [916] = {.lex_state = 190, .external_lex_state = 13}, - [917] = {.lex_state = 117}, - [918] = {.lex_state = 117}, - [919] = {.lex_state = 190, .external_lex_state = 13}, - [920] = {.lex_state = 274, .external_lex_state = 10}, - [921] = {.lex_state = 117}, - [922] = {.lex_state = 117}, - [923] = {.lex_state = 274, .external_lex_state = 10}, - [924] = {.lex_state = 117}, - [925] = {.lex_state = 276, .external_lex_state = 14}, - [926] = {.lex_state = 248, .external_lex_state = 13}, - [927] = {.lex_state = 246, .external_lex_state = 14}, - [928] = {.lex_state = 246, .external_lex_state = 13}, - [929] = {.lex_state = 146}, - [930] = {.lex_state = 141}, - [931] = {.lex_state = 248, .external_lex_state = 13}, - [932] = {.lex_state = 246, .external_lex_state = 13}, - [933] = {.lex_state = 246, .external_lex_state = 13}, - [934] = {.lex_state = 246, .external_lex_state = 13}, - [935] = {.lex_state = 138}, - [936] = {.lex_state = 117}, - [937] = {.lex_state = 117}, - [938] = {.lex_state = 117}, - [939] = {.lex_state = 195, .external_lex_state = 2}, - [940] = {.lex_state = 117}, - [941] = {.lex_state = 203, .external_lex_state = 2}, - [942] = {.lex_state = 117}, - [943] = {.lex_state = 195, .external_lex_state = 2}, - [944] = {.lex_state = 246, .external_lex_state = 14}, - [945] = {.lex_state = 254, .external_lex_state = 17}, - [946] = {.lex_state = 248, .external_lex_state = 14}, - [947] = {.lex_state = 203, .external_lex_state = 11}, - [948] = {.lex_state = 117}, - [949] = {.lex_state = 54}, - [950] = {.lex_state = 141}, - [951] = {.lex_state = 250, .external_lex_state = 19}, - [952] = {.lex_state = 280, .external_lex_state = 14}, - [953] = {.lex_state = 252, .external_lex_state = 13}, - [954] = {.lex_state = 252, .external_lex_state = 13}, - [955] = {.lex_state = 252, .external_lex_state = 14}, - [956] = {.lex_state = 173, .external_lex_state = 5}, - [957] = {.lex_state = 207, .external_lex_state = 4}, - [958] = {.lex_state = 207, .external_lex_state = 4}, - [959] = {.lex_state = 211, .external_lex_state = 4}, - [960] = {.lex_state = 117}, - [961] = {.lex_state = 117}, - [962] = {.lex_state = 207, .external_lex_state = 4}, - [963] = {.lex_state = 117}, - [964] = {.lex_state = 215}, - [965] = {.lex_state = 207, .external_lex_state = 4}, - [966] = {.lex_state = 117}, - [967] = {.lex_state = 215}, - [968] = {.lex_state = 207, .external_lex_state = 4}, - [969] = {.lex_state = 207, .external_lex_state = 4}, - [970] = {.lex_state = 254, .external_lex_state = 17}, - [971] = {.lex_state = 254, .external_lex_state = 17}, - [972] = {.lex_state = 254, .external_lex_state = 17}, - [973] = {.lex_state = 138}, - [974] = {.lex_state = 117}, - [975] = {.lex_state = 117}, - [976] = {.lex_state = 207, .external_lex_state = 6}, - [977] = {.lex_state = 254, .external_lex_state = 17}, - [978] = {.lex_state = 141, .external_lex_state = 2}, - [979] = {.lex_state = 215}, - [980] = {.lex_state = 257, .external_lex_state = 10}, - [981] = {.lex_state = 117}, - [982] = {.lex_state = 257, .external_lex_state = 10}, - [983] = {.lex_state = 117}, - [984] = {.lex_state = 117}, - [985] = {.lex_state = 257, .external_lex_state = 10}, - [986] = {.lex_state = 274, .external_lex_state = 10}, - [987] = {.lex_state = 117}, - [988] = {.lex_state = 117}, - [989] = {.lex_state = 274, .external_lex_state = 10}, - [990] = {.lex_state = 117}, - [991] = {.lex_state = 260, .external_lex_state = 10}, - [992] = {.lex_state = 260, .external_lex_state = 10}, - [993] = {.lex_state = 260, .external_lex_state = 10}, - [994] = {.lex_state = 117}, - [995] = {.lex_state = 117}, - [996] = {.lex_state = 260, .external_lex_state = 10}, - [997] = {.lex_state = 117}, - [998] = {.lex_state = 215}, - [999] = {.lex_state = 260, .external_lex_state = 10}, - [1000] = {.lex_state = 117}, - [1001] = {.lex_state = 215}, - [1002] = {.lex_state = 260, .external_lex_state = 10}, - [1003] = {.lex_state = 260, .external_lex_state = 10}, - [1004] = {.lex_state = 168, .external_lex_state = 16}, - [1005] = {.lex_state = 117}, - [1006] = {.lex_state = 168, .external_lex_state = 16}, - [1007] = {.lex_state = 117}, - [1008] = {.lex_state = 117}, - [1009] = {.lex_state = 168, .external_lex_state = 16}, - [1010] = {.lex_state = 274, .external_lex_state = 10}, - [1011] = {.lex_state = 117}, - [1012] = {.lex_state = 117}, - [1013] = {.lex_state = 274, .external_lex_state = 10}, - [1014] = {.lex_state = 117}, - [1015] = {.lex_state = 262, .external_lex_state = 9}, - [1016] = {.lex_state = 262, .external_lex_state = 9}, - [1017] = {.lex_state = 262, .external_lex_state = 9}, - [1018] = {.lex_state = 117}, - [1019] = {.lex_state = 117}, - [1020] = {.lex_state = 262, .external_lex_state = 9}, - [1021] = {.lex_state = 117}, - [1022] = {.lex_state = 215}, - [1023] = {.lex_state = 262, .external_lex_state = 9}, - [1024] = {.lex_state = 117}, - [1025] = {.lex_state = 215}, - [1026] = {.lex_state = 262, .external_lex_state = 9}, - [1027] = {.lex_state = 262, .external_lex_state = 9}, - [1028] = {.lex_state = 173, .external_lex_state = 5}, - [1029] = {.lex_state = 173, .external_lex_state = 5}, - [1030] = {.lex_state = 223, .external_lex_state = 2}, - [1031] = {.lex_state = 264, .external_lex_state = 2}, - [1032] = {.lex_state = 264, .external_lex_state = 2}, - [1033] = {.lex_state = 173, .external_lex_state = 5}, - [1034] = {.lex_state = 117}, - [1035] = {.lex_state = 141}, - [1036] = {.lex_state = 288, .external_lex_state = 2}, - [1037] = {.lex_state = 257}, - [1038] = {.lex_state = 282, .external_lex_state = 10}, - [1039] = {.lex_state = 173, .external_lex_state = 5}, - [1040] = {.lex_state = 266}, - [1041] = {.lex_state = 266}, - [1042] = {.lex_state = 117}, - [1043] = {.lex_state = 117}, - [1044] = {.lex_state = 117}, - [1045] = {.lex_state = 170, .external_lex_state = 9}, - [1046] = {.lex_state = 117}, - [1047] = {.lex_state = 170, .external_lex_state = 9}, - [1048] = {.lex_state = 173, .external_lex_state = 5}, - [1049] = {.lex_state = 284, .external_lex_state = 9}, - [1050] = {.lex_state = 173, .external_lex_state = 5}, - [1051] = {.lex_state = 290, .external_lex_state = 9}, - [1052] = {.lex_state = 146}, - [1053] = {.lex_state = 141}, - [1054] = {.lex_state = 284, .external_lex_state = 9}, - [1055] = {.lex_state = 290, .external_lex_state = 9}, - [1056] = {.lex_state = 290, .external_lex_state = 9}, - [1057] = {.lex_state = 290, .external_lex_state = 9}, - [1058] = {.lex_state = 138}, - [1059] = {.lex_state = 117}, - [1060] = {.lex_state = 117}, - [1061] = {.lex_state = 117}, - [1062] = {.lex_state = 195, .external_lex_state = 2}, - [1063] = {.lex_state = 117}, - [1064] = {.lex_state = 203, .external_lex_state = 2}, - [1065] = {.lex_state = 117}, - [1066] = {.lex_state = 195, .external_lex_state = 2}, - [1067] = {.lex_state = 168, .external_lex_state = 16}, - [1068] = {.lex_state = 272, .external_lex_state = 6}, - [1069] = {.lex_state = 141}, - [1070] = {.lex_state = 290, .external_lex_state = 9}, - [1071] = {.lex_state = 184, .external_lex_state = 18}, - [1072] = {.lex_state = 207, .external_lex_state = 4}, - [1073] = {.lex_state = 117}, - [1074] = {.lex_state = 117}, - [1075] = {.lex_state = 117}, - [1076] = {.lex_state = 240, .external_lex_state = 10}, - [1077] = {.lex_state = 117}, - [1078] = {.lex_state = 240, .external_lex_state = 10}, - [1079] = {.lex_state = 117}, - [1080] = {.lex_state = 117}, - [1081] = {.lex_state = 117}, - [1082] = {.lex_state = 180, .external_lex_state = 10}, - [1083] = {.lex_state = 117}, - [1084] = {.lex_state = 180, .external_lex_state = 10}, - [1085] = {.lex_state = 184, .external_lex_state = 3}, - [1086] = {.lex_state = 184, .external_lex_state = 18}, - [1087] = {.lex_state = 184, .external_lex_state = 18}, - [1088] = {.lex_state = 186, .external_lex_state = 18}, - [1089] = {.lex_state = 117}, - [1090] = {.lex_state = 117}, - [1091] = {.lex_state = 184, .external_lex_state = 18}, - [1092] = {.lex_state = 117}, - [1093] = {.lex_state = 215}, - [1094] = {.lex_state = 184, .external_lex_state = 18}, - [1095] = {.lex_state = 117}, - [1096] = {.lex_state = 215}, - [1097] = {.lex_state = 184, .external_lex_state = 18}, - [1098] = {.lex_state = 184, .external_lex_state = 18}, - [1099] = {.lex_state = 117}, - [1100] = {.lex_state = 117}, - [1101] = {.lex_state = 117}, - [1102] = {.lex_state = 141, .external_lex_state = 11}, - [1103] = {.lex_state = 117}, - [1104] = {.lex_state = 141, .external_lex_state = 11}, - [1105] = {.lex_state = 117}, - [1106] = {.lex_state = 117}, - [1107] = {.lex_state = 117}, - [1108] = {.lex_state = 146}, - [1109] = {.lex_state = 117}, - [1110] = {.lex_state = 146}, - [1111] = {.lex_state = 117}, - [1112] = {.lex_state = 117}, - [1113] = {.lex_state = 162, .external_lex_state = 4}, - [1114] = {.lex_state = 274, .external_lex_state = 10}, - [1115] = {.lex_state = 162, .external_lex_state = 4}, - [1116] = {.lex_state = 195, .external_lex_state = 2}, - [1117] = {.lex_state = 195, .external_lex_state = 11}, - [1118] = {.lex_state = 195, .external_lex_state = 11}, - [1119] = {.lex_state = 195, .external_lex_state = 11}, - [1120] = {.lex_state = 117}, - [1121] = {.lex_state = 117}, - [1122] = {.lex_state = 195, .external_lex_state = 11}, - [1123] = {.lex_state = 117}, - [1124] = {.lex_state = 215}, - [1125] = {.lex_state = 195, .external_lex_state = 11}, - [1126] = {.lex_state = 117}, - [1127] = {.lex_state = 215}, - [1128] = {.lex_state = 195, .external_lex_state = 11}, - [1129] = {.lex_state = 195, .external_lex_state = 11}, - [1130] = {.lex_state = 117}, - [1131] = {.lex_state = 117}, - [1132] = {.lex_state = 117}, - [1133] = {.lex_state = 117}, - [1134] = {.lex_state = 117}, - [1135] = {.lex_state = 117}, - [1136] = {.lex_state = 117}, - [1137] = {.lex_state = 266}, - [1138] = {.lex_state = 266}, - [1139] = {.lex_state = 276, .external_lex_state = 14}, - [1140] = {.lex_state = 286, .external_lex_state = 14}, - [1141] = {.lex_state = 141}, - [1142] = {.lex_state = 146}, - [1143] = {.lex_state = 292, .external_lex_state = 10}, - [1144] = {.lex_state = 138}, - [1145] = {.lex_state = 138}, - [1146] = {.lex_state = 54, .external_lex_state = 2}, - [1147] = {.lex_state = 54, .external_lex_state = 2}, - [1148] = {.lex_state = 54, .external_lex_state = 2}, - [1149] = {.lex_state = 117}, - [1150] = {.lex_state = 117}, - [1151] = {.lex_state = 242, .external_lex_state = 12}, - [1152] = {.lex_state = 215}, - [1153] = {.lex_state = 242, .external_lex_state = 19}, - [1154] = {.lex_state = 146}, - [1155] = {.lex_state = 141}, - [1156] = {.lex_state = 244, .external_lex_state = 19}, - [1157] = {.lex_state = 242, .external_lex_state = 19}, - [1158] = {.lex_state = 242, .external_lex_state = 19}, - [1159] = {.lex_state = 242, .external_lex_state = 19}, - [1160] = {.lex_state = 138}, - [1161] = {.lex_state = 117}, - [1162] = {.lex_state = 117}, - [1163] = {.lex_state = 117}, - [1164] = {.lex_state = 195, .external_lex_state = 2}, - [1165] = {.lex_state = 117}, - [1166] = {.lex_state = 203, .external_lex_state = 2}, - [1167] = {.lex_state = 117}, - [1168] = {.lex_state = 195, .external_lex_state = 2}, - [1169] = {.lex_state = 117}, - [1170] = {.lex_state = 117}, - [1171] = {.lex_state = 117}, - [1172] = {.lex_state = 190, .external_lex_state = 13}, - [1173] = {.lex_state = 117}, - [1174] = {.lex_state = 190, .external_lex_state = 13}, - [1175] = {.lex_state = 117}, - [1176] = {.lex_state = 246, .external_lex_state = 13}, - [1177] = {.lex_state = 246, .external_lex_state = 13}, - [1178] = {.lex_state = 248, .external_lex_state = 13}, - [1179] = {.lex_state = 117}, - [1180] = {.lex_state = 117}, - [1181] = {.lex_state = 246, .external_lex_state = 13}, - [1182] = {.lex_state = 117}, - [1183] = {.lex_state = 215}, - [1184] = {.lex_state = 246, .external_lex_state = 13}, - [1185] = {.lex_state = 117}, - [1186] = {.lex_state = 215}, - [1187] = {.lex_state = 246, .external_lex_state = 13}, - [1188] = {.lex_state = 246, .external_lex_state = 13}, - [1189] = {.lex_state = 246, .external_lex_state = 14}, - [1190] = {.lex_state = 203, .external_lex_state = 11}, - [1191] = {.lex_state = 280, .external_lex_state = 14}, - [1192] = {.lex_state = 141}, - [1193] = {.lex_state = 294, .external_lex_state = 10}, - [1194] = {.lex_state = 250, .external_lex_state = 19}, - [1195] = {.lex_state = 252, .external_lex_state = 13}, - [1196] = {.lex_state = 207, .external_lex_state = 4}, - [1197] = {.lex_state = 117}, - [1198] = {.lex_state = 207, .external_lex_state = 4}, - [1199] = {.lex_state = 117}, - [1200] = {.lex_state = 117}, - [1201] = {.lex_state = 207, .external_lex_state = 4}, - [1202] = {.lex_state = 274, .external_lex_state = 10}, - [1203] = {.lex_state = 117}, - [1204] = {.lex_state = 117}, - [1205] = {.lex_state = 274, .external_lex_state = 10}, - [1206] = {.lex_state = 117}, - [1207] = {.lex_state = 117}, - [1208] = {.lex_state = 117}, - [1209] = {.lex_state = 254, .external_lex_state = 17}, - [1210] = {.lex_state = 117}, - [1211] = {.lex_state = 215}, - [1212] = {.lex_state = 254, .external_lex_state = 17}, - [1213] = {.lex_state = 117}, - [1214] = {.lex_state = 215}, - [1215] = {.lex_state = 141, .external_lex_state = 2}, - [1216] = {.lex_state = 117}, - [1217] = {.lex_state = 117}, - [1218] = {.lex_state = 117}, - [1219] = {.lex_state = 257, .external_lex_state = 10}, - [1220] = {.lex_state = 117}, - [1221] = {.lex_state = 257, .external_lex_state = 10}, - [1222] = {.lex_state = 260, .external_lex_state = 10}, - [1223] = {.lex_state = 117}, - [1224] = {.lex_state = 260, .external_lex_state = 10}, - [1225] = {.lex_state = 117}, - [1226] = {.lex_state = 117}, - [1227] = {.lex_state = 260, .external_lex_state = 10}, - [1228] = {.lex_state = 274, .external_lex_state = 10}, - [1229] = {.lex_state = 117}, - [1230] = {.lex_state = 117}, - [1231] = {.lex_state = 274, .external_lex_state = 10}, - [1232] = {.lex_state = 117}, - [1233] = {.lex_state = 117}, - [1234] = {.lex_state = 117}, - [1235] = {.lex_state = 117}, - [1236] = {.lex_state = 168, .external_lex_state = 16}, - [1237] = {.lex_state = 117}, - [1238] = {.lex_state = 168, .external_lex_state = 16}, - [1239] = {.lex_state = 262, .external_lex_state = 9}, - [1240] = {.lex_state = 117}, - [1241] = {.lex_state = 262, .external_lex_state = 9}, - [1242] = {.lex_state = 117}, - [1243] = {.lex_state = 117}, - [1244] = {.lex_state = 262, .external_lex_state = 9}, - [1245] = {.lex_state = 274, .external_lex_state = 10}, - [1246] = {.lex_state = 117}, - [1247] = {.lex_state = 117}, - [1248] = {.lex_state = 274, .external_lex_state = 10}, - [1249] = {.lex_state = 117}, - [1250] = {.lex_state = 223, .external_lex_state = 2}, - [1251] = {.lex_state = 173, .external_lex_state = 5}, - [1252] = {.lex_state = 282, .external_lex_state = 10}, - [1253] = {.lex_state = 257}, - [1254] = {.lex_state = 266}, - [1255] = {.lex_state = 288, .external_lex_state = 2}, - [1256] = {.lex_state = 288, .external_lex_state = 2}, - [1257] = {.lex_state = 257}, - [1258] = {.lex_state = 282, .external_lex_state = 10}, - [1259] = {.lex_state = 173, .external_lex_state = 5}, - [1260] = {.lex_state = 117}, - [1261] = {.lex_state = 117}, - [1262] = {.lex_state = 170, .external_lex_state = 9}, - [1263] = {.lex_state = 170, .external_lex_state = 9}, - [1264] = {.lex_state = 290, .external_lex_state = 9}, - [1265] = {.lex_state = 290, .external_lex_state = 9}, - [1266] = {.lex_state = 284, .external_lex_state = 9}, - [1267] = {.lex_state = 117}, - [1268] = {.lex_state = 117}, - [1269] = {.lex_state = 290, .external_lex_state = 9}, - [1270] = {.lex_state = 117}, - [1271] = {.lex_state = 215}, - [1272] = {.lex_state = 290, .external_lex_state = 9}, - [1273] = {.lex_state = 117}, - [1274] = {.lex_state = 215}, - [1275] = {.lex_state = 290, .external_lex_state = 9}, - [1276] = {.lex_state = 290, .external_lex_state = 9}, - [1277] = {.lex_state = 290, .external_lex_state = 9}, - [1278] = {.lex_state = 290, .external_lex_state = 9}, - [1279] = {.lex_state = 184, .external_lex_state = 18}, - [1280] = {.lex_state = 117}, - [1281] = {.lex_state = 117}, - [1282] = {.lex_state = 240, .external_lex_state = 10}, - [1283] = {.lex_state = 240, .external_lex_state = 10}, - [1284] = {.lex_state = 117}, - [1285] = {.lex_state = 117}, - [1286] = {.lex_state = 180, .external_lex_state = 10}, - [1287] = {.lex_state = 180, .external_lex_state = 10}, - [1288] = {.lex_state = 184, .external_lex_state = 18}, - [1289] = {.lex_state = 117}, - [1290] = {.lex_state = 184, .external_lex_state = 18}, - [1291] = {.lex_state = 117}, - [1292] = {.lex_state = 117}, - [1293] = {.lex_state = 184, .external_lex_state = 18}, - [1294] = {.lex_state = 274, .external_lex_state = 10}, - [1295] = {.lex_state = 117}, - [1296] = {.lex_state = 117}, - [1297] = {.lex_state = 274, .external_lex_state = 10}, - [1298] = {.lex_state = 117}, - [1299] = {.lex_state = 117}, - [1300] = {.lex_state = 117}, - [1301] = {.lex_state = 141, .external_lex_state = 11}, - [1302] = {.lex_state = 141, .external_lex_state = 11}, - [1303] = {.lex_state = 117}, - [1304] = {.lex_state = 117}, - [1305] = {.lex_state = 146}, - [1306] = {.lex_state = 146}, - [1307] = {.lex_state = 162, .external_lex_state = 4}, - [1308] = {.lex_state = 162, .external_lex_state = 4}, - [1309] = {.lex_state = 195, .external_lex_state = 11}, - [1310] = {.lex_state = 117}, - [1311] = {.lex_state = 195, .external_lex_state = 11}, - [1312] = {.lex_state = 117}, - [1313] = {.lex_state = 117}, - [1314] = {.lex_state = 195, .external_lex_state = 11}, - [1315] = {.lex_state = 274, .external_lex_state = 10}, - [1316] = {.lex_state = 117}, - [1317] = {.lex_state = 117}, - [1318] = {.lex_state = 274, .external_lex_state = 10}, - [1319] = {.lex_state = 117}, - [1320] = {.lex_state = 117}, - [1321] = {.lex_state = 117}, - [1322] = {.lex_state = 117}, - [1323] = {.lex_state = 117}, - [1324] = {.lex_state = 117}, - [1325] = {.lex_state = 266}, - [1326] = {.lex_state = 117}, - [1327] = {.lex_state = 292, .external_lex_state = 10}, - [1328] = {.lex_state = 117}, - [1329] = {.lex_state = 296, .external_lex_state = 10}, - [1330] = {.lex_state = 146}, - [1331] = {.lex_state = 141}, - [1332] = {.lex_state = 292, .external_lex_state = 10}, - [1333] = {.lex_state = 296, .external_lex_state = 10}, - [1334] = {.lex_state = 296, .external_lex_state = 10}, - [1335] = {.lex_state = 296, .external_lex_state = 10}, - [1336] = {.lex_state = 138}, - [1337] = {.lex_state = 117}, - [1338] = {.lex_state = 117}, - [1339] = {.lex_state = 117}, - [1340] = {.lex_state = 195, .external_lex_state = 2}, - [1341] = {.lex_state = 117}, - [1342] = {.lex_state = 203, .external_lex_state = 2}, - [1343] = {.lex_state = 117}, - [1344] = {.lex_state = 195, .external_lex_state = 2}, - [1345] = {.lex_state = 242, .external_lex_state = 12}, - [1346] = {.lex_state = 242, .external_lex_state = 19}, - [1347] = {.lex_state = 242, .external_lex_state = 19}, - [1348] = {.lex_state = 244, .external_lex_state = 19}, - [1349] = {.lex_state = 117}, - [1350] = {.lex_state = 117}, - [1351] = {.lex_state = 242, .external_lex_state = 19}, - [1352] = {.lex_state = 117}, - [1353] = {.lex_state = 215}, - [1354] = {.lex_state = 242, .external_lex_state = 19}, - [1355] = {.lex_state = 117}, - [1356] = {.lex_state = 215}, - [1357] = {.lex_state = 242, .external_lex_state = 19}, - [1358] = {.lex_state = 242, .external_lex_state = 19}, - [1359] = {.lex_state = 117}, - [1360] = {.lex_state = 117}, - [1361] = {.lex_state = 190, .external_lex_state = 13}, - [1362] = {.lex_state = 190, .external_lex_state = 13}, - [1363] = {.lex_state = 246, .external_lex_state = 13}, - [1364] = {.lex_state = 117}, - [1365] = {.lex_state = 246, .external_lex_state = 13}, - [1366] = {.lex_state = 117}, - [1367] = {.lex_state = 117}, - [1368] = {.lex_state = 246, .external_lex_state = 13}, - [1369] = {.lex_state = 274, .external_lex_state = 10}, - [1370] = {.lex_state = 117}, - [1371] = {.lex_state = 117}, - [1372] = {.lex_state = 274, .external_lex_state = 10}, - [1373] = {.lex_state = 117}, - [1374] = {.lex_state = 294, .external_lex_state = 10}, - [1375] = {.lex_state = 294, .external_lex_state = 10}, - [1376] = {.lex_state = 250, .external_lex_state = 19}, - [1377] = {.lex_state = 117}, - [1378] = {.lex_state = 117}, - [1379] = {.lex_state = 117}, - [1380] = {.lex_state = 207, .external_lex_state = 4}, - [1381] = {.lex_state = 117}, - [1382] = {.lex_state = 207, .external_lex_state = 4}, - [1383] = {.lex_state = 254, .external_lex_state = 17}, - [1384] = {.lex_state = 117}, - [1385] = {.lex_state = 254, .external_lex_state = 17}, - [1386] = {.lex_state = 117}, - [1387] = {.lex_state = 117}, - [1388] = {.lex_state = 254, .external_lex_state = 17}, - [1389] = {.lex_state = 274, .external_lex_state = 10}, - [1390] = {.lex_state = 117}, - [1391] = {.lex_state = 117}, - [1392] = {.lex_state = 274, .external_lex_state = 10}, - [1393] = {.lex_state = 117}, - [1394] = {.lex_state = 117}, - [1395] = {.lex_state = 117}, - [1396] = {.lex_state = 257, .external_lex_state = 10}, - [1397] = {.lex_state = 257, .external_lex_state = 10}, - [1398] = {.lex_state = 117}, - [1399] = {.lex_state = 117}, - [1400] = {.lex_state = 117}, - [1401] = {.lex_state = 260, .external_lex_state = 10}, - [1402] = {.lex_state = 117}, - [1403] = {.lex_state = 260, .external_lex_state = 10}, - [1404] = {.lex_state = 117}, - [1405] = {.lex_state = 117}, - [1406] = {.lex_state = 168, .external_lex_state = 16}, - [1407] = {.lex_state = 168, .external_lex_state = 16}, - [1408] = {.lex_state = 117}, - [1409] = {.lex_state = 117}, - [1410] = {.lex_state = 117}, - [1411] = {.lex_state = 262, .external_lex_state = 9}, - [1412] = {.lex_state = 117}, - [1413] = {.lex_state = 262, .external_lex_state = 9}, - [1414] = {.lex_state = 266}, - [1415] = {.lex_state = 288, .external_lex_state = 2}, - [1416] = {.lex_state = 288, .external_lex_state = 2}, - [1417] = {.lex_state = 170, .external_lex_state = 9}, - [1418] = {.lex_state = 170, .external_lex_state = 9}, - [1419] = {.lex_state = 290, .external_lex_state = 9}, - [1420] = {.lex_state = 117}, - [1421] = {.lex_state = 290, .external_lex_state = 9}, - [1422] = {.lex_state = 117}, - [1423] = {.lex_state = 117}, - [1424] = {.lex_state = 290, .external_lex_state = 9}, - [1425] = {.lex_state = 274, .external_lex_state = 10}, - [1426] = {.lex_state = 117}, - [1427] = {.lex_state = 117}, - [1428] = {.lex_state = 274, .external_lex_state = 10}, - [1429] = {.lex_state = 117}, - [1430] = {.lex_state = 290, .external_lex_state = 9}, - [1431] = {.lex_state = 240, .external_lex_state = 10}, - [1432] = {.lex_state = 240, .external_lex_state = 10}, - [1433] = {.lex_state = 180, .external_lex_state = 10}, - [1434] = {.lex_state = 180, .external_lex_state = 10}, - [1435] = {.lex_state = 117}, - [1436] = {.lex_state = 117}, - [1437] = {.lex_state = 117}, - [1438] = {.lex_state = 184, .external_lex_state = 18}, - [1439] = {.lex_state = 117}, - [1440] = {.lex_state = 184, .external_lex_state = 18}, - [1441] = {.lex_state = 141, .external_lex_state = 11}, - [1442] = {.lex_state = 141, .external_lex_state = 11}, - [1443] = {.lex_state = 146}, - [1444] = {.lex_state = 146}, - [1445] = {.lex_state = 117}, - [1446] = {.lex_state = 117}, - [1447] = {.lex_state = 117}, - [1448] = {.lex_state = 195, .external_lex_state = 11}, - [1449] = {.lex_state = 117}, - [1450] = {.lex_state = 195, .external_lex_state = 11}, - [1451] = {.lex_state = 117}, - [1452] = {.lex_state = 117}, - [1453] = {.lex_state = 296, .external_lex_state = 10}, - [1454] = {.lex_state = 296, .external_lex_state = 10}, - [1455] = {.lex_state = 292, .external_lex_state = 10}, - [1456] = {.lex_state = 117}, - [1457] = {.lex_state = 117}, - [1458] = {.lex_state = 296, .external_lex_state = 10}, - [1459] = {.lex_state = 117}, - [1460] = {.lex_state = 215}, - [1461] = {.lex_state = 296, .external_lex_state = 10}, - [1462] = {.lex_state = 117}, - [1463] = {.lex_state = 215}, - [1464] = {.lex_state = 296, .external_lex_state = 10}, - [1465] = {.lex_state = 296, .external_lex_state = 10}, - [1466] = {.lex_state = 242, .external_lex_state = 19}, - [1467] = {.lex_state = 117}, - [1468] = {.lex_state = 242, .external_lex_state = 19}, - [1469] = {.lex_state = 117}, - [1470] = {.lex_state = 117}, - [1471] = {.lex_state = 242, .external_lex_state = 19}, - [1472] = {.lex_state = 274, .external_lex_state = 10}, - [1473] = {.lex_state = 117}, - [1474] = {.lex_state = 117}, - [1475] = {.lex_state = 274, .external_lex_state = 10}, - [1476] = {.lex_state = 117}, - [1477] = {.lex_state = 190, .external_lex_state = 13}, - [1478] = {.lex_state = 190, .external_lex_state = 13}, - [1479] = {.lex_state = 117}, - [1480] = {.lex_state = 117}, - [1481] = {.lex_state = 117}, - [1482] = {.lex_state = 246, .external_lex_state = 13}, - [1483] = {.lex_state = 117}, - [1484] = {.lex_state = 246, .external_lex_state = 13}, - [1485] = {.lex_state = 294, .external_lex_state = 10}, - [1486] = {.lex_state = 117}, - [1487] = {.lex_state = 117}, - [1488] = {.lex_state = 207, .external_lex_state = 4}, - [1489] = {.lex_state = 207, .external_lex_state = 4}, - [1490] = {.lex_state = 117}, - [1491] = {.lex_state = 117}, - [1492] = {.lex_state = 117}, - [1493] = {.lex_state = 254, .external_lex_state = 17}, - [1494] = {.lex_state = 117}, - [1495] = {.lex_state = 254, .external_lex_state = 17}, - [1496] = {.lex_state = 257, .external_lex_state = 10}, - [1497] = {.lex_state = 257, .external_lex_state = 10}, - [1498] = {.lex_state = 117}, - [1499] = {.lex_state = 117}, - [1500] = {.lex_state = 260, .external_lex_state = 10}, - [1501] = {.lex_state = 260, .external_lex_state = 10}, - [1502] = {.lex_state = 168, .external_lex_state = 16}, - [1503] = {.lex_state = 168, .external_lex_state = 16}, - [1504] = {.lex_state = 117}, - [1505] = {.lex_state = 117}, - [1506] = {.lex_state = 262, .external_lex_state = 9}, - [1507] = {.lex_state = 262, .external_lex_state = 9}, - [1508] = {.lex_state = 266}, - [1509] = {.lex_state = 117}, - [1510] = {.lex_state = 117}, - [1511] = {.lex_state = 117}, - [1512] = {.lex_state = 290, .external_lex_state = 9}, - [1513] = {.lex_state = 117}, - [1514] = {.lex_state = 290, .external_lex_state = 9}, - [1515] = {.lex_state = 117}, - [1516] = {.lex_state = 117}, - [1517] = {.lex_state = 184, .external_lex_state = 18}, - [1518] = {.lex_state = 184, .external_lex_state = 18}, - [1519] = {.lex_state = 117}, - [1520] = {.lex_state = 117}, - [1521] = {.lex_state = 195, .external_lex_state = 11}, - [1522] = {.lex_state = 195, .external_lex_state = 11}, - [1523] = {.lex_state = 296, .external_lex_state = 10}, - [1524] = {.lex_state = 117}, - [1525] = {.lex_state = 296, .external_lex_state = 10}, - [1526] = {.lex_state = 117}, - [1527] = {.lex_state = 117}, - [1528] = {.lex_state = 296, .external_lex_state = 10}, - [1529] = {.lex_state = 274, .external_lex_state = 10}, - [1530] = {.lex_state = 117}, - [1531] = {.lex_state = 117}, - [1532] = {.lex_state = 274, .external_lex_state = 10}, - [1533] = {.lex_state = 117}, - [1534] = {.lex_state = 117}, - [1535] = {.lex_state = 117}, - [1536] = {.lex_state = 117}, - [1537] = {.lex_state = 242, .external_lex_state = 19}, - [1538] = {.lex_state = 117}, - [1539] = {.lex_state = 242, .external_lex_state = 19}, - [1540] = {.lex_state = 117}, - [1541] = {.lex_state = 117}, - [1542] = {.lex_state = 246, .external_lex_state = 13}, - [1543] = {.lex_state = 246, .external_lex_state = 13}, - [1544] = {.lex_state = 207, .external_lex_state = 4}, - [1545] = {.lex_state = 207, .external_lex_state = 4}, - [1546] = {.lex_state = 117}, - [1547] = {.lex_state = 117}, - [1548] = {.lex_state = 254, .external_lex_state = 17}, - [1549] = {.lex_state = 254, .external_lex_state = 17}, - [1550] = {.lex_state = 260, .external_lex_state = 10}, - [1551] = {.lex_state = 260, .external_lex_state = 10}, - [1552] = {.lex_state = 262, .external_lex_state = 9}, - [1553] = {.lex_state = 262, .external_lex_state = 9}, - [1554] = {.lex_state = 117}, - [1555] = {.lex_state = 117}, - [1556] = {.lex_state = 290, .external_lex_state = 9}, - [1557] = {.lex_state = 290, .external_lex_state = 9}, - [1558] = {.lex_state = 184, .external_lex_state = 18}, - [1559] = {.lex_state = 184, .external_lex_state = 18}, - [1560] = {.lex_state = 195, .external_lex_state = 11}, - [1561] = {.lex_state = 195, .external_lex_state = 11}, - [1562] = {.lex_state = 117}, - [1563] = {.lex_state = 117}, - [1564] = {.lex_state = 117}, - [1565] = {.lex_state = 296, .external_lex_state = 10}, - [1566] = {.lex_state = 117}, - [1567] = {.lex_state = 296, .external_lex_state = 10}, - [1568] = {.lex_state = 117}, - [1569] = {.lex_state = 117}, - [1570] = {.lex_state = 242, .external_lex_state = 19}, - [1571] = {.lex_state = 242, .external_lex_state = 19}, - [1572] = {.lex_state = 246, .external_lex_state = 13}, - [1573] = {.lex_state = 246, .external_lex_state = 13}, - [1574] = {.lex_state = 254, .external_lex_state = 17}, - [1575] = {.lex_state = 254, .external_lex_state = 17}, - [1576] = {.lex_state = 290, .external_lex_state = 9}, - [1577] = {.lex_state = 290, .external_lex_state = 9}, - [1578] = {.lex_state = 117}, - [1579] = {.lex_state = 117}, - [1580] = {.lex_state = 296, .external_lex_state = 10}, - [1581] = {.lex_state = 296, .external_lex_state = 10}, - [1582] = {.lex_state = 242, .external_lex_state = 19}, - [1583] = {.lex_state = 242, .external_lex_state = 19}, - [1584] = {.lex_state = 296, .external_lex_state = 10}, - [1585] = {.lex_state = 296, .external_lex_state = 10}, + [301] = {.lex_state = 195, .external_lex_state = 19}, + [302] = {.lex_state = 177, .external_lex_state = 10}, + [303] = {.lex_state = 202, .external_lex_state = 2}, + [304] = {.lex_state = 130}, + [305] = {.lex_state = 130}, + [306] = {.lex_state = 130}, + [307] = {.lex_state = 181, .external_lex_state = 11}, + [308] = {.lex_state = 181, .external_lex_state = 11}, + [309] = {.lex_state = 181, .external_lex_state = 7}, + [310] = {.lex_state = 130}, + [311] = {.lex_state = 184, .external_lex_state = 7}, + [312] = {.lex_state = 179, .external_lex_state = 9}, + [313] = {.lex_state = 120, .external_lex_state = 2}, + [314] = {.lex_state = 188, .external_lex_state = 14}, + [315] = {.lex_state = 192, .external_lex_state = 16}, + [316] = {.lex_state = 238, .external_lex_state = 20}, + [317] = {.lex_state = 130}, + [318] = {.lex_state = 238, .external_lex_state = 20}, + [319] = {.lex_state = 130}, + [320] = {.lex_state = 198, .external_lex_state = 20}, + [321] = {.lex_state = 195, .external_lex_state = 19}, + [322] = {.lex_state = 158}, + [323] = {.lex_state = 195, .external_lex_state = 19}, + [324] = {.lex_state = 195, .external_lex_state = 19}, + [325] = {.lex_state = 195, .external_lex_state = 19}, + [326] = {.lex_state = 163, .external_lex_state = 18}, + [327] = {.lex_state = 130, .external_lex_state = 18}, + [328] = {.lex_state = 130, .external_lex_state = 18}, + [329] = {.lex_state = 130}, + [330] = {.lex_state = 202, .external_lex_state = 2}, + [331] = {.lex_state = 130}, + [332] = {.lex_state = 210, .external_lex_state = 2}, + [333] = {.lex_state = 130}, + [334] = {.lex_state = 202, .external_lex_state = 2}, + [335] = {.lex_state = 130}, + [336] = {.lex_state = 195, .external_lex_state = 19}, + [337] = {.lex_state = 120, .external_lex_state = 2}, + [338] = {.lex_state = 175, .external_lex_state = 3}, + [339] = {.lex_state = 120, .external_lex_state = 2}, + [340] = {.lex_state = 120}, + [341] = {.lex_state = 195, .external_lex_state = 19}, + [342] = {.lex_state = 151, .external_lex_state = 4}, + [343] = {.lex_state = 212, .external_lex_state = 22}, + [344] = {.lex_state = 195, .external_lex_state = 19}, + [345] = {.lex_state = 240, .external_lex_state = 29}, + [346] = {.lex_state = 195, .external_lex_state = 21}, + [347] = {.lex_state = 195, .external_lex_state = 21}, + [348] = {.lex_state = 242, .external_lex_state = 29}, + [349] = {.lex_state = 195, .external_lex_state = 19}, + [350] = {.lex_state = 195, .external_lex_state = 21}, + [351] = {.lex_state = 204, .external_lex_state = 19}, + [352] = {.lex_state = 177, .external_lex_state = 10}, + [353] = {.lex_state = 130}, + [354] = {.lex_state = 130}, + [355] = {.lex_state = 130}, + [356] = {.lex_state = 206, .external_lex_state = 20}, + [357] = {.lex_state = 130}, + [358] = {.lex_state = 204, .external_lex_state = 19}, + [359] = {.lex_state = 120, .external_lex_state = 2}, + [360] = {.lex_state = 120, .external_lex_state = 2}, + [361] = {.lex_state = 120}, + [362] = {.lex_state = 204, .external_lex_state = 19}, + [363] = {.lex_state = 151, .external_lex_state = 4}, + [364] = {.lex_state = 204, .external_lex_state = 19}, + [365] = {.lex_state = 204, .external_lex_state = 21}, + [366] = {.lex_state = 244, .external_lex_state = 29}, + [367] = {.lex_state = 204, .external_lex_state = 19}, + [368] = {.lex_state = 204, .external_lex_state = 21}, + [369] = {.lex_state = 175, .external_lex_state = 3}, + [370] = {.lex_state = 130}, + [371] = {.lex_state = 184, .external_lex_state = 7}, + [372] = {.lex_state = 179, .external_lex_state = 9}, + [373] = {.lex_state = 155, .external_lex_state = 7}, + [374] = {.lex_state = 171, .external_lex_state = 9}, + [375] = {.lex_state = 151, .external_lex_state = 4}, + [376] = {.lex_state = 218, .external_lex_state = 30}, + [377] = {.lex_state = 158}, + [378] = {.lex_state = 163}, + [379] = {.lex_state = 163}, + [380] = {.lex_state = 120, .external_lex_state = 2}, + [381] = {.lex_state = 120, .external_lex_state = 2}, + [382] = {.lex_state = 120, .external_lex_state = 2}, + [383] = {.lex_state = 218, .external_lex_state = 30}, + [384] = {.lex_state = 214, .external_lex_state = 23}, + [385] = {.lex_state = 214, .external_lex_state = 23}, + [386] = {.lex_state = 246, .external_lex_state = 31}, + [387] = {.lex_state = 214, .external_lex_state = 23}, + [388] = {.lex_state = 128, .external_lex_state = 8}, + [389] = {.lex_state = 218, .external_lex_state = 23}, + [390] = {.lex_state = 218, .external_lex_state = 23}, + [391] = {.lex_state = 177, .external_lex_state = 10}, + [392] = {.lex_state = 128, .external_lex_state = 8}, + [393] = {.lex_state = 151, .external_lex_state = 4}, + [394] = {.lex_state = 130}, + [395] = {.lex_state = 220, .external_lex_state = 24}, + [396] = {.lex_state = 249, .external_lex_state = 32}, + [397] = {.lex_state = 158}, + [398] = {.lex_state = 249, .external_lex_state = 32}, + [399] = {.lex_state = 249, .external_lex_state = 32}, + [400] = {.lex_state = 249, .external_lex_state = 32}, + [401] = {.lex_state = 163, .external_lex_state = 18}, + [402] = {.lex_state = 130, .external_lex_state = 18}, + [403] = {.lex_state = 130, .external_lex_state = 18}, + [404] = {.lex_state = 130}, + [405] = {.lex_state = 202, .external_lex_state = 2}, + [406] = {.lex_state = 130}, + [407] = {.lex_state = 210, .external_lex_state = 2}, + [408] = {.lex_state = 130}, + [409] = {.lex_state = 202, .external_lex_state = 2}, + [410] = {.lex_state = 130}, + [411] = {.lex_state = 220, .external_lex_state = 24}, + [412] = {.lex_state = 151, .external_lex_state = 4}, + [413] = {.lex_state = 171, .external_lex_state = 26}, + [414] = {.lex_state = 222, .external_lex_state = 33}, + [415] = {.lex_state = 179, .external_lex_state = 9}, + [416] = {.lex_state = 222, .external_lex_state = 33}, + [417] = {.lex_state = 222, .external_lex_state = 4}, + [418] = {.lex_state = 179, .external_lex_state = 26}, + [419] = {.lex_state = 158}, + [420] = {.lex_state = 179, .external_lex_state = 26}, + [421] = {.lex_state = 179, .external_lex_state = 26}, + [422] = {.lex_state = 179, .external_lex_state = 26}, + [423] = {.lex_state = 163, .external_lex_state = 18}, + [424] = {.lex_state = 130, .external_lex_state = 18}, + [425] = {.lex_state = 130, .external_lex_state = 18}, + [426] = {.lex_state = 130}, + [427] = {.lex_state = 202, .external_lex_state = 2}, + [428] = {.lex_state = 130}, + [429] = {.lex_state = 210, .external_lex_state = 2}, + [430] = {.lex_state = 130}, + [431] = {.lex_state = 202, .external_lex_state = 2}, + [432] = {.lex_state = 171, .external_lex_state = 26}, + [433] = {.lex_state = 252, .external_lex_state = 34}, + [434] = {.lex_state = 158}, + [435] = {.lex_state = 163}, + [436] = {.lex_state = 163}, + [437] = {.lex_state = 120, .external_lex_state = 2}, + [438] = {.lex_state = 120, .external_lex_state = 2}, + [439] = {.lex_state = 120, .external_lex_state = 2}, + [440] = {.lex_state = 252, .external_lex_state = 34}, + [441] = {.lex_state = 252, .external_lex_state = 35}, + [442] = {.lex_state = 252, .external_lex_state = 35}, + [443] = {.lex_state = 184, .external_lex_state = 7}, + [444] = {.lex_state = 224, .external_lex_state = 2}, + [445] = {.lex_state = 155, .external_lex_state = 7}, + [446] = {.lex_state = 171, .external_lex_state = 9}, + [447] = {.lex_state = 224, .external_lex_state = 2}, + [448] = {.lex_state = 184, .external_lex_state = 7}, + [449] = {.lex_state = 120, .external_lex_state = 2}, + [450] = {.lex_state = 254, .external_lex_state = 2}, + [451] = {.lex_state = 226, .external_lex_state = 2}, + [452] = {.lex_state = 155, .external_lex_state = 7}, + [453] = {.lex_state = 130}, + [454] = {.lex_state = 130}, + [455] = {.lex_state = 171, .external_lex_state = 9}, + [456] = {.lex_state = 226, .external_lex_state = 2}, + [457] = {.lex_state = 130}, + [458] = {.lex_state = 181, .external_lex_state = 11}, + [459] = {.lex_state = 181, .external_lex_state = 11}, + [460] = {.lex_state = 256, .external_lex_state = 4}, + [461] = {.lex_state = 181, .external_lex_state = 7}, + [462] = {.lex_state = 181, .external_lex_state = 11}, + [463] = {.lex_state = 181, .external_lex_state = 11}, + [464] = {.lex_state = 130, .external_lex_state = 18}, + [465] = {.lex_state = 130, .external_lex_state = 18}, + [466] = {.lex_state = 181, .external_lex_state = 11}, + [467] = {.lex_state = 130}, + [468] = {.lex_state = 236, .external_lex_state = 28}, + [469] = {.lex_state = 181, .external_lex_state = 11}, + [470] = {.lex_state = 130}, + [471] = {.lex_state = 236, .external_lex_state = 28}, + [472] = {.lex_state = 181, .external_lex_state = 11}, + [473] = {.lex_state = 181, .external_lex_state = 11}, + [474] = {.lex_state = 256, .external_lex_state = 4}, + [475] = {.lex_state = 181, .external_lex_state = 7}, + [476] = {.lex_state = 130}, + [477] = {.lex_state = 259, .external_lex_state = 23}, + [478] = {.lex_state = 229, .external_lex_state = 6}, + [479] = {.lex_state = 120}, + [480] = {.lex_state = 151, .external_lex_state = 4}, + [481] = {.lex_state = 184, .external_lex_state = 7}, + [482] = {.lex_state = 175, .external_lex_state = 3}, + [483] = {.lex_state = 179, .external_lex_state = 26}, + [484] = {.lex_state = 179, .external_lex_state = 26}, + [485] = {.lex_state = 130}, + [486] = {.lex_state = 259, .external_lex_state = 23}, + [487] = {.lex_state = 177, .external_lex_state = 10}, + [488] = {.lex_state = 184, .external_lex_state = 5}, + [489] = {.lex_state = 130}, + [490] = {.lex_state = 184, .external_lex_state = 7}, + [491] = {.lex_state = 184, .external_lex_state = 7}, + [492] = {.lex_state = 179, .external_lex_state = 9}, + [493] = {.lex_state = 151, .external_lex_state = 4}, + [494] = {.lex_state = 214, .external_lex_state = 30}, + [495] = {.lex_state = 214, .external_lex_state = 30}, + [496] = {.lex_state = 175, .external_lex_state = 8}, + [497] = {.lex_state = 214, .external_lex_state = 23}, + [498] = {.lex_state = 214, .external_lex_state = 23}, + [499] = {.lex_state = 234, .external_lex_state = 2}, + [500] = {.lex_state = 175, .external_lex_state = 8}, + [501] = {.lex_state = 190, .external_lex_state = 27}, + [502] = {.lex_state = 190, .external_lex_state = 27}, + [503] = {.lex_state = 188, .external_lex_state = 12}, + [504] = {.lex_state = 190, .external_lex_state = 27}, + [505] = {.lex_state = 130, .external_lex_state = 18}, + [506] = {.lex_state = 130, .external_lex_state = 18}, + [507] = {.lex_state = 190, .external_lex_state = 27}, + [508] = {.lex_state = 130}, + [509] = {.lex_state = 236, .external_lex_state = 28}, + [510] = {.lex_state = 190, .external_lex_state = 27}, + [511] = {.lex_state = 130}, + [512] = {.lex_state = 236, .external_lex_state = 28}, + [513] = {.lex_state = 190, .external_lex_state = 27}, + [514] = {.lex_state = 190, .external_lex_state = 27}, + [515] = {.lex_state = 192, .external_lex_state = 15}, + [516] = {.lex_state = 155, .external_lex_state = 36}, + [517] = {.lex_state = 184, .external_lex_state = 5}, + [518] = {.lex_state = 222, .external_lex_state = 4}, + [519] = {.lex_state = 158}, + [520] = {.lex_state = 163}, + [521] = {.lex_state = 163}, + [522] = {.lex_state = 120, .external_lex_state = 2}, + [523] = {.lex_state = 120, .external_lex_state = 2}, + [524] = {.lex_state = 120, .external_lex_state = 2}, + [525] = {.lex_state = 155, .external_lex_state = 36}, + [526] = {.lex_state = 202, .external_lex_state = 17}, + [527] = {.lex_state = 202, .external_lex_state = 17}, + [528] = {.lex_state = 173, .external_lex_state = 17}, + [529] = {.lex_state = 202, .external_lex_state = 17}, + [530] = {.lex_state = 130, .external_lex_state = 18}, + [531] = {.lex_state = 130, .external_lex_state = 18}, + [532] = {.lex_state = 202, .external_lex_state = 17}, + [533] = {.lex_state = 130}, + [534] = {.lex_state = 236, .external_lex_state = 28}, + [535] = {.lex_state = 202, .external_lex_state = 17}, + [536] = {.lex_state = 130}, + [537] = {.lex_state = 236, .external_lex_state = 28}, + [538] = {.lex_state = 202, .external_lex_state = 17}, + [539] = {.lex_state = 202, .external_lex_state = 17}, + [540] = {.lex_state = 130, .external_lex_state = 18}, + [541] = {.lex_state = 130, .external_lex_state = 18}, + [542] = {.lex_state = 158}, + [543] = {.lex_state = 130}, + [544] = {.lex_state = 236, .external_lex_state = 28}, + [545] = {.lex_state = 158}, + [546] = {.lex_state = 130}, + [547] = {.lex_state = 236, .external_lex_state = 28}, + [548] = {.lex_state = 158}, + [549] = {.lex_state = 175, .external_lex_state = 3}, + [550] = {.lex_state = 130}, + [551] = {.lex_state = 175, .external_lex_state = 3}, + [552] = {.lex_state = 130}, + [553] = {.lex_state = 130, .external_lex_state = 25}, + [554] = {.lex_state = 261, .external_lex_state = 37}, + [555] = {.lex_state = 175, .external_lex_state = 3}, + [556] = {.lex_state = 261, .external_lex_state = 37}, + [557] = {.lex_state = 261, .external_lex_state = 37}, + [558] = {.lex_state = 130, .external_lex_state = 25}, + [559] = {.lex_state = 261, .external_lex_state = 37}, + [560] = {.lex_state = 261, .external_lex_state = 37}, + [561] = {.lex_state = 261, .external_lex_state = 37}, + [562] = {.lex_state = 195, .external_lex_state = 19}, + [563] = {.lex_state = 195, .external_lex_state = 19}, + [564] = {.lex_state = 195, .external_lex_state = 19}, + [565] = {.lex_state = 202, .external_lex_state = 17}, + [566] = {.lex_state = 202, .external_lex_state = 2}, + [567] = {.lex_state = 222, .external_lex_state = 4}, + [568] = {.lex_state = 202, .external_lex_state = 17}, + [569] = {.lex_state = 151, .external_lex_state = 4}, + [570] = {.lex_state = 224, .external_lex_state = 2}, + [571] = {.lex_state = 130}, + [572] = {.lex_state = 226, .external_lex_state = 2}, + [573] = {.lex_state = 181, .external_lex_state = 7}, + [574] = {.lex_state = 130}, + [575] = {.lex_state = 181, .external_lex_state = 7}, + [576] = {.lex_state = 130}, + [577] = {.lex_state = 130}, + [578] = {.lex_state = 229, .external_lex_state = 6}, + [579] = {.lex_state = 263, .external_lex_state = 29}, + [580] = {.lex_state = 130}, + [581] = {.lex_state = 234, .external_lex_state = 2}, + [582] = {.lex_state = 184, .external_lex_state = 7}, + [583] = {.lex_state = 179, .external_lex_state = 9}, + [584] = {.lex_state = 130}, + [585] = {.lex_state = 177, .external_lex_state = 10}, + [586] = {.lex_state = 238, .external_lex_state = 20}, + [587] = {.lex_state = 198, .external_lex_state = 20}, + [588] = {.lex_state = 195, .external_lex_state = 19}, + [589] = {.lex_state = 130, .external_lex_state = 18}, + [590] = {.lex_state = 130, .external_lex_state = 18}, + [591] = {.lex_state = 195, .external_lex_state = 19}, + [592] = {.lex_state = 130}, + [593] = {.lex_state = 236, .external_lex_state = 28}, + [594] = {.lex_state = 195, .external_lex_state = 19}, + [595] = {.lex_state = 130}, + [596] = {.lex_state = 236, .external_lex_state = 28}, + [597] = {.lex_state = 195, .external_lex_state = 19}, + [598] = {.lex_state = 195, .external_lex_state = 19}, + [599] = {.lex_state = 130}, + [600] = {.lex_state = 130}, + [601] = {.lex_state = 202, .external_lex_state = 2}, + [602] = {.lex_state = 130}, + [603] = {.lex_state = 202, .external_lex_state = 2}, + [604] = {.lex_state = 151, .external_lex_state = 4}, + [605] = {.lex_state = 242, .external_lex_state = 38}, + [606] = {.lex_state = 158}, + [607] = {.lex_state = 163}, + [608] = {.lex_state = 163}, + [609] = {.lex_state = 120, .external_lex_state = 2}, + [610] = {.lex_state = 120, .external_lex_state = 2}, + [611] = {.lex_state = 120, .external_lex_state = 2}, + [612] = {.lex_state = 242, .external_lex_state = 38}, + [613] = {.lex_state = 240, .external_lex_state = 29}, + [614] = {.lex_state = 240, .external_lex_state = 29}, + [615] = {.lex_state = 246, .external_lex_state = 31}, + [616] = {.lex_state = 240, .external_lex_state = 29}, + [617] = {.lex_state = 195, .external_lex_state = 21}, + [618] = {.lex_state = 242, .external_lex_state = 29}, + [619] = {.lex_state = 242, .external_lex_state = 29}, + [620] = {.lex_state = 195, .external_lex_state = 21}, + [621] = {.lex_state = 204, .external_lex_state = 19}, + [622] = {.lex_state = 210, .external_lex_state = 17}, + [623] = {.lex_state = 210, .external_lex_state = 17}, + [624] = {.lex_state = 130}, + [625] = {.lex_state = 265, .external_lex_state = 29}, + [626] = {.lex_state = 177, .external_lex_state = 10}, + [627] = {.lex_state = 206, .external_lex_state = 20}, + [628] = {.lex_state = 130}, + [629] = {.lex_state = 210, .external_lex_state = 2}, + [630] = {.lex_state = 130}, + [631] = {.lex_state = 210, .external_lex_state = 2}, + [632] = {.lex_state = 151, .external_lex_state = 4}, + [633] = {.lex_state = 244, .external_lex_state = 38}, + [634] = {.lex_state = 244, .external_lex_state = 38}, + [635] = {.lex_state = 204, .external_lex_state = 21}, + [636] = {.lex_state = 244, .external_lex_state = 29}, + [637] = {.lex_state = 244, .external_lex_state = 29}, + [638] = {.lex_state = 204, .external_lex_state = 21}, + [639] = {.lex_state = 231, .external_lex_state = 23}, + [640] = {.lex_state = 218, .external_lex_state = 30}, + [641] = {.lex_state = 218, .external_lex_state = 30}, + [642] = {.lex_state = 214, .external_lex_state = 23}, + [643] = {.lex_state = 151, .external_lex_state = 4}, + [644] = {.lex_state = 218, .external_lex_state = 30}, + [645] = {.lex_state = 214, .external_lex_state = 30}, + [646] = {.lex_state = 158}, + [647] = {.lex_state = 214, .external_lex_state = 30}, + [648] = {.lex_state = 214, .external_lex_state = 30}, + [649] = {.lex_state = 214, .external_lex_state = 30}, + [650] = {.lex_state = 163, .external_lex_state = 18}, + [651] = {.lex_state = 130, .external_lex_state = 18}, + [652] = {.lex_state = 130, .external_lex_state = 18}, + [653] = {.lex_state = 130}, + [654] = {.lex_state = 202, .external_lex_state = 2}, + [655] = {.lex_state = 130}, + [656] = {.lex_state = 210, .external_lex_state = 2}, + [657] = {.lex_state = 130}, + [658] = {.lex_state = 202, .external_lex_state = 2}, + [659] = {.lex_state = 218, .external_lex_state = 30}, + [660] = {.lex_state = 246, .external_lex_state = 31}, + [661] = {.lex_state = 214, .external_lex_state = 23}, + [662] = {.lex_state = 163}, + [663] = {.lex_state = 163}, + [664] = {.lex_state = 246, .external_lex_state = 31}, + [665] = {.lex_state = 173, .external_lex_state = 17}, + [666] = {.lex_state = 173, .external_lex_state = 17}, + [667] = {.lex_state = 218, .external_lex_state = 23}, + [668] = {.lex_state = 249, .external_lex_state = 32}, + [669] = {.lex_state = 249, .external_lex_state = 32}, + [670] = {.lex_state = 220, .external_lex_state = 24}, + [671] = {.lex_state = 249, .external_lex_state = 32}, + [672] = {.lex_state = 130, .external_lex_state = 18}, + [673] = {.lex_state = 130, .external_lex_state = 18}, + [674] = {.lex_state = 249, .external_lex_state = 32}, + [675] = {.lex_state = 130}, + [676] = {.lex_state = 236, .external_lex_state = 28}, + [677] = {.lex_state = 249, .external_lex_state = 32}, + [678] = {.lex_state = 130}, + [679] = {.lex_state = 236, .external_lex_state = 28}, + [680] = {.lex_state = 249, .external_lex_state = 32}, + [681] = {.lex_state = 249, .external_lex_state = 32}, + [682] = {.lex_state = 179, .external_lex_state = 26}, + [683] = {.lex_state = 179, .external_lex_state = 26}, + [684] = {.lex_state = 171, .external_lex_state = 26}, + [685] = {.lex_state = 222, .external_lex_state = 33}, + [686] = {.lex_state = 222, .external_lex_state = 33}, + [687] = {.lex_state = 179, .external_lex_state = 9}, + [688] = {.lex_state = 222, .external_lex_state = 4}, + [689] = {.lex_state = 179, .external_lex_state = 26}, + [690] = {.lex_state = 130, .external_lex_state = 18}, + [691] = {.lex_state = 130, .external_lex_state = 18}, + [692] = {.lex_state = 179, .external_lex_state = 26}, + [693] = {.lex_state = 130}, + [694] = {.lex_state = 236, .external_lex_state = 28}, + [695] = {.lex_state = 179, .external_lex_state = 26}, + [696] = {.lex_state = 130}, + [697] = {.lex_state = 236, .external_lex_state = 28}, + [698] = {.lex_state = 179, .external_lex_state = 26}, + [699] = {.lex_state = 179, .external_lex_state = 26}, + [700] = {.lex_state = 151, .external_lex_state = 4}, + [701] = {.lex_state = 252, .external_lex_state = 34}, + [702] = {.lex_state = 252, .external_lex_state = 34}, + [703] = {.lex_state = 158}, + [704] = {.lex_state = 252, .external_lex_state = 34}, + [705] = {.lex_state = 252, .external_lex_state = 34}, + [706] = {.lex_state = 252, .external_lex_state = 34}, + [707] = {.lex_state = 163, .external_lex_state = 18}, + [708] = {.lex_state = 130, .external_lex_state = 18}, + [709] = {.lex_state = 130, .external_lex_state = 18}, + [710] = {.lex_state = 130}, + [711] = {.lex_state = 202, .external_lex_state = 2}, + [712] = {.lex_state = 130}, + [713] = {.lex_state = 210, .external_lex_state = 2}, + [714] = {.lex_state = 130}, + [715] = {.lex_state = 202, .external_lex_state = 2}, + [716] = {.lex_state = 252, .external_lex_state = 34}, + [717] = {.lex_state = 130}, + [718] = {.lex_state = 252, .external_lex_state = 35}, + [719] = {.lex_state = 224, .external_lex_state = 2}, + [720] = {.lex_state = 184, .external_lex_state = 7}, + [721] = {.lex_state = 224, .external_lex_state = 2}, + [722] = {.lex_state = 130}, + [723] = {.lex_state = 254, .external_lex_state = 2}, + [724] = {.lex_state = 155, .external_lex_state = 7}, + [725] = {.lex_state = 171, .external_lex_state = 9}, + [726] = {.lex_state = 254, .external_lex_state = 2}, + [727] = {.lex_state = 226, .external_lex_state = 2}, + [728] = {.lex_state = 184, .external_lex_state = 7}, + [729] = {.lex_state = 130}, + [730] = {.lex_state = 226, .external_lex_state = 2}, + [731] = {.lex_state = 130}, + [732] = {.lex_state = 130}, + [733] = {.lex_state = 267, .external_lex_state = 39}, + [734] = {.lex_state = 184, .external_lex_state = 7}, + [735] = {.lex_state = 267, .external_lex_state = 39}, + [736] = {.lex_state = 256, .external_lex_state = 4}, + [737] = {.lex_state = 249}, + [738] = {.lex_state = 256, .external_lex_state = 4}, + [739] = {.lex_state = 256, .external_lex_state = 4}, + [740] = {.lex_state = 181, .external_lex_state = 11}, + [741] = {.lex_state = 130}, + [742] = {.lex_state = 181, .external_lex_state = 11}, + [743] = {.lex_state = 130}, + [744] = {.lex_state = 130, .external_lex_state = 25}, + [745] = {.lex_state = 261, .external_lex_state = 37}, + [746] = {.lex_state = 181, .external_lex_state = 11}, + [747] = {.lex_state = 261, .external_lex_state = 37}, + [748] = {.lex_state = 261, .external_lex_state = 37}, + [749] = {.lex_state = 130, .external_lex_state = 25}, + [750] = {.lex_state = 261, .external_lex_state = 37}, + [751] = {.lex_state = 261, .external_lex_state = 37}, + [752] = {.lex_state = 261, .external_lex_state = 37}, + [753] = {.lex_state = 184, .external_lex_state = 7}, + [754] = {.lex_state = 256, .external_lex_state = 4}, + [755] = {.lex_state = 256, .external_lex_state = 4}, + [756] = {.lex_state = 231, .external_lex_state = 23}, + [757] = {.lex_state = 259, .external_lex_state = 23}, + [758] = {.lex_state = 229, .external_lex_state = 6}, + [759] = {.lex_state = 151, .external_lex_state = 4}, + [760] = {.lex_state = 269, .external_lex_state = 11}, + [761] = {.lex_state = 158}, + [762] = {.lex_state = 163}, + [763] = {.lex_state = 163}, + [764] = {.lex_state = 120, .external_lex_state = 2}, + [765] = {.lex_state = 120, .external_lex_state = 2}, + [766] = {.lex_state = 120, .external_lex_state = 2}, + [767] = {.lex_state = 269, .external_lex_state = 11}, + [768] = {.lex_state = 184, .external_lex_state = 7}, + [769] = {.lex_state = 179, .external_lex_state = 26}, + [770] = {.lex_state = 179, .external_lex_state = 26}, + [771] = {.lex_state = 130}, + [772] = {.lex_state = 120}, + [773] = {.lex_state = 151, .external_lex_state = 4}, + [774] = {.lex_state = 184, .external_lex_state = 36}, + [775] = {.lex_state = 184, .external_lex_state = 36}, + [776] = {.lex_state = 259, .external_lex_state = 23}, + [777] = {.lex_state = 214, .external_lex_state = 30}, + [778] = {.lex_state = 214, .external_lex_state = 30}, + [779] = {.lex_state = 214, .external_lex_state = 30}, + [780] = {.lex_state = 214, .external_lex_state = 30}, + [781] = {.lex_state = 184, .external_lex_state = 7}, + [782] = {.lex_state = 214, .external_lex_state = 23}, + [783] = {.lex_state = 190, .external_lex_state = 27}, + [784] = {.lex_state = 130}, + [785] = {.lex_state = 190, .external_lex_state = 27}, + [786] = {.lex_state = 130}, + [787] = {.lex_state = 130, .external_lex_state = 25}, + [788] = {.lex_state = 261, .external_lex_state = 37}, + [789] = {.lex_state = 190, .external_lex_state = 27}, + [790] = {.lex_state = 261, .external_lex_state = 37}, + [791] = {.lex_state = 261, .external_lex_state = 37}, + [792] = {.lex_state = 130, .external_lex_state = 25}, + [793] = {.lex_state = 261, .external_lex_state = 37}, + [794] = {.lex_state = 261, .external_lex_state = 37}, + [795] = {.lex_state = 261, .external_lex_state = 37}, + [796] = {.lex_state = 151, .external_lex_state = 4}, + [797] = {.lex_state = 155, .external_lex_state = 36}, + [798] = {.lex_state = 184, .external_lex_state = 5}, + [799] = {.lex_state = 222, .external_lex_state = 4}, + [800] = {.lex_state = 184, .external_lex_state = 36}, + [801] = {.lex_state = 158}, + [802] = {.lex_state = 184, .external_lex_state = 36}, + [803] = {.lex_state = 184, .external_lex_state = 36}, + [804] = {.lex_state = 184, .external_lex_state = 36}, + [805] = {.lex_state = 163, .external_lex_state = 18}, + [806] = {.lex_state = 130, .external_lex_state = 18}, + [807] = {.lex_state = 130, .external_lex_state = 18}, + [808] = {.lex_state = 130}, + [809] = {.lex_state = 202, .external_lex_state = 2}, + [810] = {.lex_state = 130}, + [811] = {.lex_state = 210, .external_lex_state = 2}, + [812] = {.lex_state = 130}, + [813] = {.lex_state = 202, .external_lex_state = 2}, + [814] = {.lex_state = 155, .external_lex_state = 36}, + [815] = {.lex_state = 202, .external_lex_state = 17}, + [816] = {.lex_state = 130}, + [817] = {.lex_state = 202, .external_lex_state = 17}, + [818] = {.lex_state = 130}, + [819] = {.lex_state = 130, .external_lex_state = 25}, + [820] = {.lex_state = 261, .external_lex_state = 37}, + [821] = {.lex_state = 202, .external_lex_state = 17}, + [822] = {.lex_state = 261, .external_lex_state = 37}, + [823] = {.lex_state = 261, .external_lex_state = 37}, + [824] = {.lex_state = 130, .external_lex_state = 25}, + [825] = {.lex_state = 261, .external_lex_state = 37}, + [826] = {.lex_state = 261, .external_lex_state = 37}, + [827] = {.lex_state = 261, .external_lex_state = 37}, + [828] = {.lex_state = 158}, + [829] = {.lex_state = 130}, + [830] = {.lex_state = 158}, + [831] = {.lex_state = 130}, + [832] = {.lex_state = 130, .external_lex_state = 25}, + [833] = {.lex_state = 261, .external_lex_state = 37}, + [834] = {.lex_state = 158}, + [835] = {.lex_state = 261, .external_lex_state = 37}, + [836] = {.lex_state = 261, .external_lex_state = 37}, + [837] = {.lex_state = 130, .external_lex_state = 25}, + [838] = {.lex_state = 261, .external_lex_state = 37}, + [839] = {.lex_state = 261, .external_lex_state = 37}, + [840] = {.lex_state = 261, .external_lex_state = 37}, + [841] = {.lex_state = 130, .external_lex_state = 25}, + [842] = {.lex_state = 130, .external_lex_state = 25}, + [843] = {.lex_state = 130, .external_lex_state = 18}, + [844] = {.lex_state = 236, .external_lex_state = 28}, + [845] = {.lex_state = 175, .external_lex_state = 3}, + [846] = {.lex_state = 261, .external_lex_state = 37}, + [847] = {.lex_state = 236, .external_lex_state = 28}, + [848] = {.lex_state = 175, .external_lex_state = 3}, + [849] = {.lex_state = 261, .external_lex_state = 37}, + [850] = {.lex_state = 130, .external_lex_state = 18}, + [851] = {.lex_state = 236, .external_lex_state = 28}, + [852] = {.lex_state = 175, .external_lex_state = 3}, + [853] = {.lex_state = 236, .external_lex_state = 28}, + [854] = {.lex_state = 175, .external_lex_state = 3}, + [855] = {.lex_state = 202, .external_lex_state = 17}, + [856] = {.lex_state = 202, .external_lex_state = 2}, + [857] = {.lex_state = 222, .external_lex_state = 4}, + [858] = {.lex_state = 202, .external_lex_state = 17}, + [859] = {.lex_state = 252, .external_lex_state = 35}, + [860] = {.lex_state = 130}, + [861] = {.lex_state = 224, .external_lex_state = 2}, + [862] = {.lex_state = 130}, + [863] = {.lex_state = 130}, + [864] = {.lex_state = 226, .external_lex_state = 2}, + [865] = {.lex_state = 130}, + [866] = {.lex_state = 256, .external_lex_state = 4}, + [867] = {.lex_state = 181, .external_lex_state = 7}, + [868] = {.lex_state = 256, .external_lex_state = 4}, + [869] = {.lex_state = 181, .external_lex_state = 7}, + [870] = {.lex_state = 130}, + [871] = {.lex_state = 271, .external_lex_state = 29}, + [872] = {.lex_state = 229, .external_lex_state = 6}, + [873] = {.lex_state = 120}, + [874] = {.lex_state = 151, .external_lex_state = 4}, + [875] = {.lex_state = 130}, + [876] = {.lex_state = 130}, + [877] = {.lex_state = 234, .external_lex_state = 2}, + [878] = {.lex_state = 198, .external_lex_state = 40}, + [879] = {.lex_state = 238, .external_lex_state = 20}, + [880] = {.lex_state = 222, .external_lex_state = 4}, + [881] = {.lex_state = 158}, + [882] = {.lex_state = 163}, + [883] = {.lex_state = 163}, + [884] = {.lex_state = 120, .external_lex_state = 2}, + [885] = {.lex_state = 120, .external_lex_state = 2}, + [886] = {.lex_state = 120, .external_lex_state = 2}, + [887] = {.lex_state = 198, .external_lex_state = 40}, + [888] = {.lex_state = 195, .external_lex_state = 19}, + [889] = {.lex_state = 130}, + [890] = {.lex_state = 195, .external_lex_state = 19}, + [891] = {.lex_state = 130}, + [892] = {.lex_state = 130, .external_lex_state = 25}, + [893] = {.lex_state = 261, .external_lex_state = 37}, + [894] = {.lex_state = 195, .external_lex_state = 19}, + [895] = {.lex_state = 261, .external_lex_state = 37}, + [896] = {.lex_state = 261, .external_lex_state = 37}, + [897] = {.lex_state = 130, .external_lex_state = 25}, + [898] = {.lex_state = 261, .external_lex_state = 37}, + [899] = {.lex_state = 261, .external_lex_state = 37}, + [900] = {.lex_state = 261, .external_lex_state = 37}, + [901] = {.lex_state = 263, .external_lex_state = 29}, + [902] = {.lex_state = 242, .external_lex_state = 38}, + [903] = {.lex_state = 242, .external_lex_state = 38}, + [904] = {.lex_state = 240, .external_lex_state = 29}, + [905] = {.lex_state = 151, .external_lex_state = 4}, + [906] = {.lex_state = 242, .external_lex_state = 38}, + [907] = {.lex_state = 240, .external_lex_state = 38}, + [908] = {.lex_state = 158}, + [909] = {.lex_state = 240, .external_lex_state = 38}, + [910] = {.lex_state = 240, .external_lex_state = 38}, + [911] = {.lex_state = 240, .external_lex_state = 38}, + [912] = {.lex_state = 163, .external_lex_state = 18}, + [913] = {.lex_state = 130, .external_lex_state = 18}, + [914] = {.lex_state = 130, .external_lex_state = 18}, + [915] = {.lex_state = 130}, + [916] = {.lex_state = 202, .external_lex_state = 2}, + [917] = {.lex_state = 130}, + [918] = {.lex_state = 210, .external_lex_state = 2}, + [919] = {.lex_state = 130}, + [920] = {.lex_state = 202, .external_lex_state = 2}, + [921] = {.lex_state = 242, .external_lex_state = 38}, + [922] = {.lex_state = 240, .external_lex_state = 29}, + [923] = {.lex_state = 246, .external_lex_state = 31}, + [924] = {.lex_state = 242, .external_lex_state = 29}, + [925] = {.lex_state = 210, .external_lex_state = 17}, + [926] = {.lex_state = 210, .external_lex_state = 17}, + [927] = {.lex_state = 130}, + [928] = {.lex_state = 120}, + [929] = {.lex_state = 151, .external_lex_state = 4}, + [930] = {.lex_state = 206, .external_lex_state = 40}, + [931] = {.lex_state = 206, .external_lex_state = 40}, + [932] = {.lex_state = 265, .external_lex_state = 29}, + [933] = {.lex_state = 244, .external_lex_state = 38}, + [934] = {.lex_state = 244, .external_lex_state = 38}, + [935] = {.lex_state = 244, .external_lex_state = 38}, + [936] = {.lex_state = 244, .external_lex_state = 38}, + [937] = {.lex_state = 244, .external_lex_state = 29}, + [938] = {.lex_state = 184, .external_lex_state = 7}, + [939] = {.lex_state = 214, .external_lex_state = 30}, + [940] = {.lex_state = 214, .external_lex_state = 30}, + [941] = {.lex_state = 218, .external_lex_state = 30}, + [942] = {.lex_state = 214, .external_lex_state = 30}, + [943] = {.lex_state = 130, .external_lex_state = 18}, + [944] = {.lex_state = 130, .external_lex_state = 18}, + [945] = {.lex_state = 214, .external_lex_state = 30}, + [946] = {.lex_state = 130}, + [947] = {.lex_state = 236, .external_lex_state = 28}, + [948] = {.lex_state = 214, .external_lex_state = 30}, + [949] = {.lex_state = 130}, + [950] = {.lex_state = 236, .external_lex_state = 28}, + [951] = {.lex_state = 214, .external_lex_state = 30}, + [952] = {.lex_state = 214, .external_lex_state = 30}, + [953] = {.lex_state = 246, .external_lex_state = 31}, + [954] = {.lex_state = 246, .external_lex_state = 31}, + [955] = {.lex_state = 246, .external_lex_state = 31}, + [956] = {.lex_state = 163, .external_lex_state = 18}, + [957] = {.lex_state = 130, .external_lex_state = 18}, + [958] = {.lex_state = 130, .external_lex_state = 18}, + [959] = {.lex_state = 214, .external_lex_state = 23}, + [960] = {.lex_state = 246, .external_lex_state = 31}, + [961] = {.lex_state = 249, .external_lex_state = 32}, + [962] = {.lex_state = 130}, + [963] = {.lex_state = 249, .external_lex_state = 32}, + [964] = {.lex_state = 130}, + [965] = {.lex_state = 130, .external_lex_state = 25}, + [966] = {.lex_state = 261, .external_lex_state = 37}, + [967] = {.lex_state = 249, .external_lex_state = 32}, + [968] = {.lex_state = 261, .external_lex_state = 37}, + [969] = {.lex_state = 261, .external_lex_state = 37}, + [970] = {.lex_state = 130, .external_lex_state = 25}, + [971] = {.lex_state = 261, .external_lex_state = 37}, + [972] = {.lex_state = 261, .external_lex_state = 37}, + [973] = {.lex_state = 261, .external_lex_state = 37}, + [974] = {.lex_state = 222, .external_lex_state = 33}, + [975] = {.lex_state = 179, .external_lex_state = 26}, + [976] = {.lex_state = 130}, + [977] = {.lex_state = 179, .external_lex_state = 26}, + [978] = {.lex_state = 130}, + [979] = {.lex_state = 130, .external_lex_state = 25}, + [980] = {.lex_state = 261, .external_lex_state = 37}, + [981] = {.lex_state = 179, .external_lex_state = 26}, + [982] = {.lex_state = 261, .external_lex_state = 37}, + [983] = {.lex_state = 261, .external_lex_state = 37}, + [984] = {.lex_state = 130, .external_lex_state = 25}, + [985] = {.lex_state = 261, .external_lex_state = 37}, + [986] = {.lex_state = 261, .external_lex_state = 37}, + [987] = {.lex_state = 261, .external_lex_state = 37}, + [988] = {.lex_state = 252, .external_lex_state = 34}, + [989] = {.lex_state = 252, .external_lex_state = 34}, + [990] = {.lex_state = 252, .external_lex_state = 34}, + [991] = {.lex_state = 252, .external_lex_state = 34}, + [992] = {.lex_state = 130, .external_lex_state = 18}, + [993] = {.lex_state = 130, .external_lex_state = 18}, + [994] = {.lex_state = 252, .external_lex_state = 34}, + [995] = {.lex_state = 130}, + [996] = {.lex_state = 236, .external_lex_state = 28}, + [997] = {.lex_state = 252, .external_lex_state = 34}, + [998] = {.lex_state = 130}, + [999] = {.lex_state = 236, .external_lex_state = 28}, + [1000] = {.lex_state = 252, .external_lex_state = 34}, + [1001] = {.lex_state = 252, .external_lex_state = 34}, + [1002] = {.lex_state = 184, .external_lex_state = 7}, + [1003] = {.lex_state = 226, .external_lex_state = 2}, + [1004] = {.lex_state = 254, .external_lex_state = 2}, + [1005] = {.lex_state = 254, .external_lex_state = 2}, + [1006] = {.lex_state = 184, .external_lex_state = 7}, + [1007] = {.lex_state = 130}, + [1008] = {.lex_state = 151, .external_lex_state = 4}, + [1009] = {.lex_state = 273, .external_lex_state = 2}, + [1010] = {.lex_state = 249}, + [1011] = {.lex_state = 267, .external_lex_state = 39}, + [1012] = {.lex_state = 273, .external_lex_state = 2}, + [1013] = {.lex_state = 249}, + [1014] = {.lex_state = 267, .external_lex_state = 39}, + [1015] = {.lex_state = 184, .external_lex_state = 7}, + [1016] = {.lex_state = 256, .external_lex_state = 4}, + [1017] = {.lex_state = 256, .external_lex_state = 4}, + [1018] = {.lex_state = 130, .external_lex_state = 25}, + [1019] = {.lex_state = 130, .external_lex_state = 25}, + [1020] = {.lex_state = 130, .external_lex_state = 18}, + [1021] = {.lex_state = 236, .external_lex_state = 28}, + [1022] = {.lex_state = 181, .external_lex_state = 11}, + [1023] = {.lex_state = 236, .external_lex_state = 28}, + [1024] = {.lex_state = 181, .external_lex_state = 11}, + [1025] = {.lex_state = 130, .external_lex_state = 18}, + [1026] = {.lex_state = 236, .external_lex_state = 28}, + [1027] = {.lex_state = 181, .external_lex_state = 11}, + [1028] = {.lex_state = 236, .external_lex_state = 28}, + [1029] = {.lex_state = 181, .external_lex_state = 11}, + [1030] = {.lex_state = 184, .external_lex_state = 7}, + [1031] = {.lex_state = 256, .external_lex_state = 4}, + [1032] = {.lex_state = 184, .external_lex_state = 7}, + [1033] = {.lex_state = 269, .external_lex_state = 11}, + [1034] = {.lex_state = 269, .external_lex_state = 11}, + [1035] = {.lex_state = 184, .external_lex_state = 7}, + [1036] = {.lex_state = 151, .external_lex_state = 4}, + [1037] = {.lex_state = 269, .external_lex_state = 11}, + [1038] = {.lex_state = 275, .external_lex_state = 11}, + [1039] = {.lex_state = 158}, + [1040] = {.lex_state = 275, .external_lex_state = 11}, + [1041] = {.lex_state = 275, .external_lex_state = 11}, + [1042] = {.lex_state = 275, .external_lex_state = 11}, + [1043] = {.lex_state = 163, .external_lex_state = 18}, + [1044] = {.lex_state = 130, .external_lex_state = 18}, + [1045] = {.lex_state = 130, .external_lex_state = 18}, + [1046] = {.lex_state = 130}, + [1047] = {.lex_state = 202, .external_lex_state = 2}, + [1048] = {.lex_state = 130}, + [1049] = {.lex_state = 210, .external_lex_state = 2}, + [1050] = {.lex_state = 130}, + [1051] = {.lex_state = 202, .external_lex_state = 2}, + [1052] = {.lex_state = 269, .external_lex_state = 11}, + [1053] = {.lex_state = 179, .external_lex_state = 26}, + [1054] = {.lex_state = 259, .external_lex_state = 23}, + [1055] = {.lex_state = 151, .external_lex_state = 4}, + [1056] = {.lex_state = 275, .external_lex_state = 11}, + [1057] = {.lex_state = 275, .external_lex_state = 11}, + [1058] = {.lex_state = 184, .external_lex_state = 36}, + [1059] = {.lex_state = 184, .external_lex_state = 36}, + [1060] = {.lex_state = 214, .external_lex_state = 30}, + [1061] = {.lex_state = 130, .external_lex_state = 25}, + [1062] = {.lex_state = 130, .external_lex_state = 25}, + [1063] = {.lex_state = 130, .external_lex_state = 18}, + [1064] = {.lex_state = 236, .external_lex_state = 28}, + [1065] = {.lex_state = 190, .external_lex_state = 27}, + [1066] = {.lex_state = 236, .external_lex_state = 28}, + [1067] = {.lex_state = 190, .external_lex_state = 27}, + [1068] = {.lex_state = 130, .external_lex_state = 18}, + [1069] = {.lex_state = 236, .external_lex_state = 28}, + [1070] = {.lex_state = 190, .external_lex_state = 27}, + [1071] = {.lex_state = 236, .external_lex_state = 28}, + [1072] = {.lex_state = 190, .external_lex_state = 27}, + [1073] = {.lex_state = 184, .external_lex_state = 36}, + [1074] = {.lex_state = 184, .external_lex_state = 36}, + [1075] = {.lex_state = 155, .external_lex_state = 36}, + [1076] = {.lex_state = 184, .external_lex_state = 5}, + [1077] = {.lex_state = 184, .external_lex_state = 36}, + [1078] = {.lex_state = 130, .external_lex_state = 18}, + [1079] = {.lex_state = 130, .external_lex_state = 18}, + [1080] = {.lex_state = 184, .external_lex_state = 36}, + [1081] = {.lex_state = 130}, + [1082] = {.lex_state = 236, .external_lex_state = 28}, + [1083] = {.lex_state = 184, .external_lex_state = 36}, + [1084] = {.lex_state = 130}, + [1085] = {.lex_state = 236, .external_lex_state = 28}, + [1086] = {.lex_state = 184, .external_lex_state = 36}, + [1087] = {.lex_state = 184, .external_lex_state = 36}, + [1088] = {.lex_state = 130, .external_lex_state = 25}, + [1089] = {.lex_state = 130, .external_lex_state = 25}, + [1090] = {.lex_state = 130, .external_lex_state = 18}, + [1091] = {.lex_state = 236, .external_lex_state = 28}, + [1092] = {.lex_state = 202, .external_lex_state = 17}, + [1093] = {.lex_state = 236, .external_lex_state = 28}, + [1094] = {.lex_state = 202, .external_lex_state = 17}, + [1095] = {.lex_state = 130, .external_lex_state = 18}, + [1096] = {.lex_state = 236, .external_lex_state = 28}, + [1097] = {.lex_state = 202, .external_lex_state = 17}, + [1098] = {.lex_state = 236, .external_lex_state = 28}, + [1099] = {.lex_state = 202, .external_lex_state = 17}, + [1100] = {.lex_state = 130, .external_lex_state = 25}, + [1101] = {.lex_state = 130, .external_lex_state = 25}, + [1102] = {.lex_state = 130, .external_lex_state = 18}, + [1103] = {.lex_state = 236, .external_lex_state = 28}, + [1104] = {.lex_state = 158}, + [1105] = {.lex_state = 236, .external_lex_state = 28}, + [1106] = {.lex_state = 158}, + [1107] = {.lex_state = 130, .external_lex_state = 18}, + [1108] = {.lex_state = 236, .external_lex_state = 28}, + [1109] = {.lex_state = 158}, + [1110] = {.lex_state = 236, .external_lex_state = 28}, + [1111] = {.lex_state = 158}, + [1112] = {.lex_state = 130, .external_lex_state = 18}, + [1113] = {.lex_state = 130, .external_lex_state = 18}, + [1114] = {.lex_state = 175, .external_lex_state = 3}, + [1115] = {.lex_state = 261, .external_lex_state = 37}, + [1116] = {.lex_state = 175, .external_lex_state = 3}, + [1117] = {.lex_state = 175, .external_lex_state = 3}, + [1118] = {.lex_state = 175, .external_lex_state = 3}, + [1119] = {.lex_state = 202, .external_lex_state = 17}, + [1120] = {.lex_state = 202, .external_lex_state = 2}, + [1121] = {.lex_state = 130}, + [1122] = {.lex_state = 130}, + [1123] = {.lex_state = 130}, + [1124] = {.lex_state = 130}, + [1125] = {.lex_state = 130}, + [1126] = {.lex_state = 130}, + [1127] = {.lex_state = 256, .external_lex_state = 4}, + [1128] = {.lex_state = 256, .external_lex_state = 4}, + [1129] = {.lex_state = 130}, + [1130] = {.lex_state = 256, .external_lex_state = 4}, + [1131] = {.lex_state = 256, .external_lex_state = 4}, + [1132] = {.lex_state = 263, .external_lex_state = 29}, + [1133] = {.lex_state = 271, .external_lex_state = 29}, + [1134] = {.lex_state = 151, .external_lex_state = 4}, + [1135] = {.lex_state = 277, .external_lex_state = 39}, + [1136] = {.lex_state = 158}, + [1137] = {.lex_state = 163}, + [1138] = {.lex_state = 163}, + [1139] = {.lex_state = 120, .external_lex_state = 2}, + [1140] = {.lex_state = 120, .external_lex_state = 2}, + [1141] = {.lex_state = 120, .external_lex_state = 2}, + [1142] = {.lex_state = 277, .external_lex_state = 39}, + [1143] = {.lex_state = 130}, + [1144] = {.lex_state = 130}, + [1145] = {.lex_state = 151, .external_lex_state = 4}, + [1146] = {.lex_state = 198, .external_lex_state = 40}, + [1147] = {.lex_state = 238, .external_lex_state = 20}, + [1148] = {.lex_state = 222, .external_lex_state = 4}, + [1149] = {.lex_state = 238, .external_lex_state = 40}, + [1150] = {.lex_state = 158}, + [1151] = {.lex_state = 238, .external_lex_state = 40}, + [1152] = {.lex_state = 238, .external_lex_state = 40}, + [1153] = {.lex_state = 238, .external_lex_state = 40}, + [1154] = {.lex_state = 163, .external_lex_state = 18}, + [1155] = {.lex_state = 130, .external_lex_state = 18}, + [1156] = {.lex_state = 130, .external_lex_state = 18}, + [1157] = {.lex_state = 130}, + [1158] = {.lex_state = 202, .external_lex_state = 2}, + [1159] = {.lex_state = 130}, + [1160] = {.lex_state = 210, .external_lex_state = 2}, + [1161] = {.lex_state = 130}, + [1162] = {.lex_state = 202, .external_lex_state = 2}, + [1163] = {.lex_state = 198, .external_lex_state = 40}, + [1164] = {.lex_state = 130, .external_lex_state = 25}, + [1165] = {.lex_state = 130, .external_lex_state = 25}, + [1166] = {.lex_state = 130, .external_lex_state = 18}, + [1167] = {.lex_state = 236, .external_lex_state = 28}, + [1168] = {.lex_state = 195, .external_lex_state = 19}, + [1169] = {.lex_state = 236, .external_lex_state = 28}, + [1170] = {.lex_state = 195, .external_lex_state = 19}, + [1171] = {.lex_state = 130, .external_lex_state = 18}, + [1172] = {.lex_state = 236, .external_lex_state = 28}, + [1173] = {.lex_state = 195, .external_lex_state = 19}, + [1174] = {.lex_state = 236, .external_lex_state = 28}, + [1175] = {.lex_state = 195, .external_lex_state = 19}, + [1176] = {.lex_state = 130}, + [1177] = {.lex_state = 240, .external_lex_state = 38}, + [1178] = {.lex_state = 240, .external_lex_state = 38}, + [1179] = {.lex_state = 242, .external_lex_state = 38}, + [1180] = {.lex_state = 240, .external_lex_state = 38}, + [1181] = {.lex_state = 130, .external_lex_state = 18}, + [1182] = {.lex_state = 130, .external_lex_state = 18}, + [1183] = {.lex_state = 240, .external_lex_state = 38}, + [1184] = {.lex_state = 130}, + [1185] = {.lex_state = 236, .external_lex_state = 28}, + [1186] = {.lex_state = 240, .external_lex_state = 38}, + [1187] = {.lex_state = 130}, + [1188] = {.lex_state = 236, .external_lex_state = 28}, + [1189] = {.lex_state = 240, .external_lex_state = 38}, + [1190] = {.lex_state = 240, .external_lex_state = 38}, + [1191] = {.lex_state = 240, .external_lex_state = 29}, + [1192] = {.lex_state = 210, .external_lex_state = 17}, + [1193] = {.lex_state = 265, .external_lex_state = 29}, + [1194] = {.lex_state = 151, .external_lex_state = 4}, + [1195] = {.lex_state = 279, .external_lex_state = 39}, + [1196] = {.lex_state = 279, .external_lex_state = 39}, + [1197] = {.lex_state = 206, .external_lex_state = 40}, + [1198] = {.lex_state = 206, .external_lex_state = 40}, + [1199] = {.lex_state = 244, .external_lex_state = 38}, + [1200] = {.lex_state = 214, .external_lex_state = 30}, + [1201] = {.lex_state = 130}, + [1202] = {.lex_state = 214, .external_lex_state = 30}, + [1203] = {.lex_state = 130}, + [1204] = {.lex_state = 130, .external_lex_state = 25}, + [1205] = {.lex_state = 261, .external_lex_state = 37}, + [1206] = {.lex_state = 214, .external_lex_state = 30}, + [1207] = {.lex_state = 261, .external_lex_state = 37}, + [1208] = {.lex_state = 261, .external_lex_state = 37}, + [1209] = {.lex_state = 130, .external_lex_state = 25}, + [1210] = {.lex_state = 261, .external_lex_state = 37}, + [1211] = {.lex_state = 261, .external_lex_state = 37}, + [1212] = {.lex_state = 261, .external_lex_state = 37}, + [1213] = {.lex_state = 130, .external_lex_state = 18}, + [1214] = {.lex_state = 130, .external_lex_state = 18}, + [1215] = {.lex_state = 246, .external_lex_state = 31}, + [1216] = {.lex_state = 130}, + [1217] = {.lex_state = 236, .external_lex_state = 28}, + [1218] = {.lex_state = 246, .external_lex_state = 31}, + [1219] = {.lex_state = 130}, + [1220] = {.lex_state = 236, .external_lex_state = 28}, + [1221] = {.lex_state = 130, .external_lex_state = 25}, + [1222] = {.lex_state = 130, .external_lex_state = 25}, + [1223] = {.lex_state = 130, .external_lex_state = 18}, + [1224] = {.lex_state = 236, .external_lex_state = 28}, + [1225] = {.lex_state = 249, .external_lex_state = 32}, + [1226] = {.lex_state = 236, .external_lex_state = 28}, + [1227] = {.lex_state = 249, .external_lex_state = 32}, + [1228] = {.lex_state = 130, .external_lex_state = 18}, + [1229] = {.lex_state = 236, .external_lex_state = 28}, + [1230] = {.lex_state = 249, .external_lex_state = 32}, + [1231] = {.lex_state = 236, .external_lex_state = 28}, + [1232] = {.lex_state = 249, .external_lex_state = 32}, + [1233] = {.lex_state = 130, .external_lex_state = 25}, + [1234] = {.lex_state = 130, .external_lex_state = 25}, + [1235] = {.lex_state = 130, .external_lex_state = 18}, + [1236] = {.lex_state = 236, .external_lex_state = 28}, + [1237] = {.lex_state = 179, .external_lex_state = 26}, + [1238] = {.lex_state = 236, .external_lex_state = 28}, + [1239] = {.lex_state = 179, .external_lex_state = 26}, + [1240] = {.lex_state = 130, .external_lex_state = 18}, + [1241] = {.lex_state = 236, .external_lex_state = 28}, + [1242] = {.lex_state = 179, .external_lex_state = 26}, + [1243] = {.lex_state = 236, .external_lex_state = 28}, + [1244] = {.lex_state = 179, .external_lex_state = 26}, + [1245] = {.lex_state = 252, .external_lex_state = 34}, + [1246] = {.lex_state = 130}, + [1247] = {.lex_state = 252, .external_lex_state = 34}, + [1248] = {.lex_state = 130}, + [1249] = {.lex_state = 130, .external_lex_state = 25}, + [1250] = {.lex_state = 261, .external_lex_state = 37}, + [1251] = {.lex_state = 252, .external_lex_state = 34}, + [1252] = {.lex_state = 261, .external_lex_state = 37}, + [1253] = {.lex_state = 261, .external_lex_state = 37}, + [1254] = {.lex_state = 130, .external_lex_state = 25}, + [1255] = {.lex_state = 261, .external_lex_state = 37}, + [1256] = {.lex_state = 261, .external_lex_state = 37}, + [1257] = {.lex_state = 261, .external_lex_state = 37}, + [1258] = {.lex_state = 226, .external_lex_state = 2}, + [1259] = {.lex_state = 184, .external_lex_state = 7}, + [1260] = {.lex_state = 267, .external_lex_state = 39}, + [1261] = {.lex_state = 267, .external_lex_state = 39}, + [1262] = {.lex_state = 249}, + [1263] = {.lex_state = 256, .external_lex_state = 4}, + [1264] = {.lex_state = 273, .external_lex_state = 2}, + [1265] = {.lex_state = 273, .external_lex_state = 2}, + [1266] = {.lex_state = 249}, + [1267] = {.lex_state = 267, .external_lex_state = 39}, + [1268] = {.lex_state = 256, .external_lex_state = 4}, + [1269] = {.lex_state = 273, .external_lex_state = 2}, + [1270] = {.lex_state = 273, .external_lex_state = 2}, + [1271] = {.lex_state = 184, .external_lex_state = 7}, + [1272] = {.lex_state = 130, .external_lex_state = 18}, + [1273] = {.lex_state = 130, .external_lex_state = 18}, + [1274] = {.lex_state = 181, .external_lex_state = 11}, + [1275] = {.lex_state = 181, .external_lex_state = 11}, + [1276] = {.lex_state = 181, .external_lex_state = 11}, + [1277] = {.lex_state = 181, .external_lex_state = 11}, + [1278] = {.lex_state = 184, .external_lex_state = 7}, + [1279] = {.lex_state = 275, .external_lex_state = 11}, + [1280] = {.lex_state = 275, .external_lex_state = 11}, + [1281] = {.lex_state = 269, .external_lex_state = 11}, + [1282] = {.lex_state = 275, .external_lex_state = 11}, + [1283] = {.lex_state = 130, .external_lex_state = 18}, + [1284] = {.lex_state = 130, .external_lex_state = 18}, + [1285] = {.lex_state = 275, .external_lex_state = 11}, + [1286] = {.lex_state = 130}, + [1287] = {.lex_state = 236, .external_lex_state = 28}, + [1288] = {.lex_state = 275, .external_lex_state = 11}, + [1289] = {.lex_state = 130}, + [1290] = {.lex_state = 236, .external_lex_state = 28}, + [1291] = {.lex_state = 275, .external_lex_state = 11}, + [1292] = {.lex_state = 275, .external_lex_state = 11}, + [1293] = {.lex_state = 275, .external_lex_state = 11}, + [1294] = {.lex_state = 275, .external_lex_state = 11}, + [1295] = {.lex_state = 275, .external_lex_state = 11}, + [1296] = {.lex_state = 275, .external_lex_state = 11}, + [1297] = {.lex_state = 184, .external_lex_state = 36}, + [1298] = {.lex_state = 130, .external_lex_state = 18}, + [1299] = {.lex_state = 130, .external_lex_state = 18}, + [1300] = {.lex_state = 190, .external_lex_state = 27}, + [1301] = {.lex_state = 190, .external_lex_state = 27}, + [1302] = {.lex_state = 190, .external_lex_state = 27}, + [1303] = {.lex_state = 190, .external_lex_state = 27}, + [1304] = {.lex_state = 184, .external_lex_state = 36}, + [1305] = {.lex_state = 130}, + [1306] = {.lex_state = 184, .external_lex_state = 36}, + [1307] = {.lex_state = 130}, + [1308] = {.lex_state = 130, .external_lex_state = 25}, + [1309] = {.lex_state = 261, .external_lex_state = 37}, + [1310] = {.lex_state = 184, .external_lex_state = 36}, + [1311] = {.lex_state = 261, .external_lex_state = 37}, + [1312] = {.lex_state = 261, .external_lex_state = 37}, + [1313] = {.lex_state = 130, .external_lex_state = 25}, + [1314] = {.lex_state = 261, .external_lex_state = 37}, + [1315] = {.lex_state = 261, .external_lex_state = 37}, + [1316] = {.lex_state = 261, .external_lex_state = 37}, + [1317] = {.lex_state = 130, .external_lex_state = 18}, + [1318] = {.lex_state = 130, .external_lex_state = 18}, + [1319] = {.lex_state = 202, .external_lex_state = 17}, + [1320] = {.lex_state = 202, .external_lex_state = 17}, + [1321] = {.lex_state = 202, .external_lex_state = 17}, + [1322] = {.lex_state = 202, .external_lex_state = 17}, + [1323] = {.lex_state = 130, .external_lex_state = 18}, + [1324] = {.lex_state = 130, .external_lex_state = 18}, + [1325] = {.lex_state = 158}, + [1326] = {.lex_state = 158}, + [1327] = {.lex_state = 158}, + [1328] = {.lex_state = 158}, + [1329] = {.lex_state = 175, .external_lex_state = 3}, + [1330] = {.lex_state = 175, .external_lex_state = 3}, + [1331] = {.lex_state = 130}, + [1332] = {.lex_state = 130}, + [1333] = {.lex_state = 130}, + [1334] = {.lex_state = 130}, + [1335] = {.lex_state = 256, .external_lex_state = 4}, + [1336] = {.lex_state = 130}, + [1337] = {.lex_state = 256, .external_lex_state = 4}, + [1338] = {.lex_state = 130}, + [1339] = {.lex_state = 277, .external_lex_state = 39}, + [1340] = {.lex_state = 277, .external_lex_state = 39}, + [1341] = {.lex_state = 130}, + [1342] = {.lex_state = 151, .external_lex_state = 4}, + [1343] = {.lex_state = 277, .external_lex_state = 39}, + [1344] = {.lex_state = 281, .external_lex_state = 39}, + [1345] = {.lex_state = 158}, + [1346] = {.lex_state = 281, .external_lex_state = 39}, + [1347] = {.lex_state = 281, .external_lex_state = 39}, + [1348] = {.lex_state = 281, .external_lex_state = 39}, + [1349] = {.lex_state = 163, .external_lex_state = 18}, + [1350] = {.lex_state = 130, .external_lex_state = 18}, + [1351] = {.lex_state = 130, .external_lex_state = 18}, + [1352] = {.lex_state = 130}, + [1353] = {.lex_state = 202, .external_lex_state = 2}, + [1354] = {.lex_state = 130}, + [1355] = {.lex_state = 210, .external_lex_state = 2}, + [1356] = {.lex_state = 130}, + [1357] = {.lex_state = 202, .external_lex_state = 2}, + [1358] = {.lex_state = 277, .external_lex_state = 39}, + [1359] = {.lex_state = 238, .external_lex_state = 40}, + [1360] = {.lex_state = 238, .external_lex_state = 40}, + [1361] = {.lex_state = 198, .external_lex_state = 40}, + [1362] = {.lex_state = 238, .external_lex_state = 20}, + [1363] = {.lex_state = 238, .external_lex_state = 40}, + [1364] = {.lex_state = 130, .external_lex_state = 18}, + [1365] = {.lex_state = 130, .external_lex_state = 18}, + [1366] = {.lex_state = 238, .external_lex_state = 40}, + [1367] = {.lex_state = 130}, + [1368] = {.lex_state = 236, .external_lex_state = 28}, + [1369] = {.lex_state = 238, .external_lex_state = 40}, + [1370] = {.lex_state = 130}, + [1371] = {.lex_state = 236, .external_lex_state = 28}, + [1372] = {.lex_state = 238, .external_lex_state = 40}, + [1373] = {.lex_state = 238, .external_lex_state = 40}, + [1374] = {.lex_state = 130, .external_lex_state = 18}, + [1375] = {.lex_state = 130, .external_lex_state = 18}, + [1376] = {.lex_state = 195, .external_lex_state = 19}, + [1377] = {.lex_state = 195, .external_lex_state = 19}, + [1378] = {.lex_state = 195, .external_lex_state = 19}, + [1379] = {.lex_state = 195, .external_lex_state = 19}, + [1380] = {.lex_state = 240, .external_lex_state = 38}, + [1381] = {.lex_state = 130}, + [1382] = {.lex_state = 240, .external_lex_state = 38}, + [1383] = {.lex_state = 130}, + [1384] = {.lex_state = 130, .external_lex_state = 25}, + [1385] = {.lex_state = 261, .external_lex_state = 37}, + [1386] = {.lex_state = 240, .external_lex_state = 38}, + [1387] = {.lex_state = 261, .external_lex_state = 37}, + [1388] = {.lex_state = 261, .external_lex_state = 37}, + [1389] = {.lex_state = 130, .external_lex_state = 25}, + [1390] = {.lex_state = 261, .external_lex_state = 37}, + [1391] = {.lex_state = 261, .external_lex_state = 37}, + [1392] = {.lex_state = 261, .external_lex_state = 37}, + [1393] = {.lex_state = 279, .external_lex_state = 39}, + [1394] = {.lex_state = 279, .external_lex_state = 39}, + [1395] = {.lex_state = 279, .external_lex_state = 39}, + [1396] = {.lex_state = 279, .external_lex_state = 39}, + [1397] = {.lex_state = 206, .external_lex_state = 40}, + [1398] = {.lex_state = 130, .external_lex_state = 25}, + [1399] = {.lex_state = 130, .external_lex_state = 25}, + [1400] = {.lex_state = 130, .external_lex_state = 18}, + [1401] = {.lex_state = 236, .external_lex_state = 28}, + [1402] = {.lex_state = 214, .external_lex_state = 30}, + [1403] = {.lex_state = 236, .external_lex_state = 28}, + [1404] = {.lex_state = 214, .external_lex_state = 30}, + [1405] = {.lex_state = 130, .external_lex_state = 18}, + [1406] = {.lex_state = 236, .external_lex_state = 28}, + [1407] = {.lex_state = 214, .external_lex_state = 30}, + [1408] = {.lex_state = 236, .external_lex_state = 28}, + [1409] = {.lex_state = 214, .external_lex_state = 30}, + [1410] = {.lex_state = 246, .external_lex_state = 31}, + [1411] = {.lex_state = 130}, + [1412] = {.lex_state = 246, .external_lex_state = 31}, + [1413] = {.lex_state = 130}, + [1414] = {.lex_state = 130, .external_lex_state = 25}, + [1415] = {.lex_state = 261, .external_lex_state = 37}, + [1416] = {.lex_state = 246, .external_lex_state = 31}, + [1417] = {.lex_state = 261, .external_lex_state = 37}, + [1418] = {.lex_state = 261, .external_lex_state = 37}, + [1419] = {.lex_state = 130, .external_lex_state = 25}, + [1420] = {.lex_state = 261, .external_lex_state = 37}, + [1421] = {.lex_state = 261, .external_lex_state = 37}, + [1422] = {.lex_state = 261, .external_lex_state = 37}, + [1423] = {.lex_state = 130, .external_lex_state = 18}, + [1424] = {.lex_state = 130, .external_lex_state = 18}, + [1425] = {.lex_state = 249, .external_lex_state = 32}, + [1426] = {.lex_state = 249, .external_lex_state = 32}, + [1427] = {.lex_state = 249, .external_lex_state = 32}, + [1428] = {.lex_state = 249, .external_lex_state = 32}, + [1429] = {.lex_state = 130, .external_lex_state = 18}, + [1430] = {.lex_state = 130, .external_lex_state = 18}, + [1431] = {.lex_state = 179, .external_lex_state = 26}, + [1432] = {.lex_state = 179, .external_lex_state = 26}, + [1433] = {.lex_state = 179, .external_lex_state = 26}, + [1434] = {.lex_state = 179, .external_lex_state = 26}, + [1435] = {.lex_state = 130, .external_lex_state = 25}, + [1436] = {.lex_state = 130, .external_lex_state = 25}, + [1437] = {.lex_state = 130, .external_lex_state = 18}, + [1438] = {.lex_state = 236, .external_lex_state = 28}, + [1439] = {.lex_state = 252, .external_lex_state = 34}, + [1440] = {.lex_state = 236, .external_lex_state = 28}, + [1441] = {.lex_state = 252, .external_lex_state = 34}, + [1442] = {.lex_state = 130, .external_lex_state = 18}, + [1443] = {.lex_state = 236, .external_lex_state = 28}, + [1444] = {.lex_state = 252, .external_lex_state = 34}, + [1445] = {.lex_state = 236, .external_lex_state = 28}, + [1446] = {.lex_state = 252, .external_lex_state = 34}, + [1447] = {.lex_state = 256, .external_lex_state = 4}, + [1448] = {.lex_state = 273, .external_lex_state = 2}, + [1449] = {.lex_state = 273, .external_lex_state = 2}, + [1450] = {.lex_state = 256, .external_lex_state = 4}, + [1451] = {.lex_state = 273, .external_lex_state = 2}, + [1452] = {.lex_state = 181, .external_lex_state = 11}, + [1453] = {.lex_state = 181, .external_lex_state = 11}, + [1454] = {.lex_state = 275, .external_lex_state = 11}, + [1455] = {.lex_state = 130}, + [1456] = {.lex_state = 275, .external_lex_state = 11}, + [1457] = {.lex_state = 130}, + [1458] = {.lex_state = 130, .external_lex_state = 25}, + [1459] = {.lex_state = 261, .external_lex_state = 37}, + [1460] = {.lex_state = 275, .external_lex_state = 11}, + [1461] = {.lex_state = 261, .external_lex_state = 37}, + [1462] = {.lex_state = 261, .external_lex_state = 37}, + [1463] = {.lex_state = 130, .external_lex_state = 25}, + [1464] = {.lex_state = 261, .external_lex_state = 37}, + [1465] = {.lex_state = 261, .external_lex_state = 37}, + [1466] = {.lex_state = 261, .external_lex_state = 37}, + [1467] = {.lex_state = 275, .external_lex_state = 11}, + [1468] = {.lex_state = 190, .external_lex_state = 27}, + [1469] = {.lex_state = 190, .external_lex_state = 27}, + [1470] = {.lex_state = 130, .external_lex_state = 25}, + [1471] = {.lex_state = 130, .external_lex_state = 25}, + [1472] = {.lex_state = 130, .external_lex_state = 18}, + [1473] = {.lex_state = 236, .external_lex_state = 28}, + [1474] = {.lex_state = 184, .external_lex_state = 36}, + [1475] = {.lex_state = 236, .external_lex_state = 28}, + [1476] = {.lex_state = 184, .external_lex_state = 36}, + [1477] = {.lex_state = 130, .external_lex_state = 18}, + [1478] = {.lex_state = 236, .external_lex_state = 28}, + [1479] = {.lex_state = 184, .external_lex_state = 36}, + [1480] = {.lex_state = 236, .external_lex_state = 28}, + [1481] = {.lex_state = 184, .external_lex_state = 36}, + [1482] = {.lex_state = 202, .external_lex_state = 17}, + [1483] = {.lex_state = 202, .external_lex_state = 17}, + [1484] = {.lex_state = 158}, + [1485] = {.lex_state = 158}, + [1486] = {.lex_state = 130}, + [1487] = {.lex_state = 130}, + [1488] = {.lex_state = 130}, + [1489] = {.lex_state = 281, .external_lex_state = 39}, + [1490] = {.lex_state = 281, .external_lex_state = 39}, + [1491] = {.lex_state = 277, .external_lex_state = 39}, + [1492] = {.lex_state = 281, .external_lex_state = 39}, + [1493] = {.lex_state = 130, .external_lex_state = 18}, + [1494] = {.lex_state = 130, .external_lex_state = 18}, + [1495] = {.lex_state = 281, .external_lex_state = 39}, + [1496] = {.lex_state = 130}, + [1497] = {.lex_state = 236, .external_lex_state = 28}, + [1498] = {.lex_state = 281, .external_lex_state = 39}, + [1499] = {.lex_state = 130}, + [1500] = {.lex_state = 236, .external_lex_state = 28}, + [1501] = {.lex_state = 281, .external_lex_state = 39}, + [1502] = {.lex_state = 281, .external_lex_state = 39}, + [1503] = {.lex_state = 238, .external_lex_state = 40}, + [1504] = {.lex_state = 130}, + [1505] = {.lex_state = 238, .external_lex_state = 40}, + [1506] = {.lex_state = 130}, + [1507] = {.lex_state = 130, .external_lex_state = 25}, + [1508] = {.lex_state = 261, .external_lex_state = 37}, + [1509] = {.lex_state = 238, .external_lex_state = 40}, + [1510] = {.lex_state = 261, .external_lex_state = 37}, + [1511] = {.lex_state = 261, .external_lex_state = 37}, + [1512] = {.lex_state = 130, .external_lex_state = 25}, + [1513] = {.lex_state = 261, .external_lex_state = 37}, + [1514] = {.lex_state = 261, .external_lex_state = 37}, + [1515] = {.lex_state = 261, .external_lex_state = 37}, + [1516] = {.lex_state = 195, .external_lex_state = 19}, + [1517] = {.lex_state = 195, .external_lex_state = 19}, + [1518] = {.lex_state = 130, .external_lex_state = 25}, + [1519] = {.lex_state = 130, .external_lex_state = 25}, + [1520] = {.lex_state = 130, .external_lex_state = 18}, + [1521] = {.lex_state = 236, .external_lex_state = 28}, + [1522] = {.lex_state = 240, .external_lex_state = 38}, + [1523] = {.lex_state = 236, .external_lex_state = 28}, + [1524] = {.lex_state = 240, .external_lex_state = 38}, + [1525] = {.lex_state = 130, .external_lex_state = 18}, + [1526] = {.lex_state = 236, .external_lex_state = 28}, + [1527] = {.lex_state = 240, .external_lex_state = 38}, + [1528] = {.lex_state = 236, .external_lex_state = 28}, + [1529] = {.lex_state = 240, .external_lex_state = 38}, + [1530] = {.lex_state = 279, .external_lex_state = 39}, + [1531] = {.lex_state = 130, .external_lex_state = 18}, + [1532] = {.lex_state = 130, .external_lex_state = 18}, + [1533] = {.lex_state = 214, .external_lex_state = 30}, + [1534] = {.lex_state = 214, .external_lex_state = 30}, + [1535] = {.lex_state = 214, .external_lex_state = 30}, + [1536] = {.lex_state = 214, .external_lex_state = 30}, + [1537] = {.lex_state = 130, .external_lex_state = 25}, + [1538] = {.lex_state = 130, .external_lex_state = 25}, + [1539] = {.lex_state = 130, .external_lex_state = 18}, + [1540] = {.lex_state = 236, .external_lex_state = 28}, + [1541] = {.lex_state = 246, .external_lex_state = 31}, + [1542] = {.lex_state = 236, .external_lex_state = 28}, + [1543] = {.lex_state = 246, .external_lex_state = 31}, + [1544] = {.lex_state = 130, .external_lex_state = 18}, + [1545] = {.lex_state = 236, .external_lex_state = 28}, + [1546] = {.lex_state = 246, .external_lex_state = 31}, + [1547] = {.lex_state = 236, .external_lex_state = 28}, + [1548] = {.lex_state = 246, .external_lex_state = 31}, + [1549] = {.lex_state = 249, .external_lex_state = 32}, + [1550] = {.lex_state = 249, .external_lex_state = 32}, + [1551] = {.lex_state = 179, .external_lex_state = 26}, + [1552] = {.lex_state = 179, .external_lex_state = 26}, + [1553] = {.lex_state = 130, .external_lex_state = 18}, + [1554] = {.lex_state = 130, .external_lex_state = 18}, + [1555] = {.lex_state = 252, .external_lex_state = 34}, + [1556] = {.lex_state = 252, .external_lex_state = 34}, + [1557] = {.lex_state = 252, .external_lex_state = 34}, + [1558] = {.lex_state = 252, .external_lex_state = 34}, + [1559] = {.lex_state = 256, .external_lex_state = 4}, + [1560] = {.lex_state = 256, .external_lex_state = 4}, + [1561] = {.lex_state = 130, .external_lex_state = 25}, + [1562] = {.lex_state = 130, .external_lex_state = 25}, + [1563] = {.lex_state = 130, .external_lex_state = 18}, + [1564] = {.lex_state = 236, .external_lex_state = 28}, + [1565] = {.lex_state = 275, .external_lex_state = 11}, + [1566] = {.lex_state = 236, .external_lex_state = 28}, + [1567] = {.lex_state = 275, .external_lex_state = 11}, + [1568] = {.lex_state = 130, .external_lex_state = 18}, + [1569] = {.lex_state = 236, .external_lex_state = 28}, + [1570] = {.lex_state = 275, .external_lex_state = 11}, + [1571] = {.lex_state = 236, .external_lex_state = 28}, + [1572] = {.lex_state = 275, .external_lex_state = 11}, + [1573] = {.lex_state = 130, .external_lex_state = 18}, + [1574] = {.lex_state = 130, .external_lex_state = 18}, + [1575] = {.lex_state = 184, .external_lex_state = 36}, + [1576] = {.lex_state = 184, .external_lex_state = 36}, + [1577] = {.lex_state = 184, .external_lex_state = 36}, + [1578] = {.lex_state = 184, .external_lex_state = 36}, + [1579] = {.lex_state = 281, .external_lex_state = 39}, + [1580] = {.lex_state = 130}, + [1581] = {.lex_state = 281, .external_lex_state = 39}, + [1582] = {.lex_state = 130}, + [1583] = {.lex_state = 130, .external_lex_state = 25}, + [1584] = {.lex_state = 261, .external_lex_state = 37}, + [1585] = {.lex_state = 281, .external_lex_state = 39}, + [1586] = {.lex_state = 261, .external_lex_state = 37}, + [1587] = {.lex_state = 261, .external_lex_state = 37}, + [1588] = {.lex_state = 130, .external_lex_state = 25}, + [1589] = {.lex_state = 261, .external_lex_state = 37}, + [1590] = {.lex_state = 261, .external_lex_state = 37}, + [1591] = {.lex_state = 261, .external_lex_state = 37}, + [1592] = {.lex_state = 130, .external_lex_state = 25}, + [1593] = {.lex_state = 130, .external_lex_state = 25}, + [1594] = {.lex_state = 130, .external_lex_state = 18}, + [1595] = {.lex_state = 236, .external_lex_state = 28}, + [1596] = {.lex_state = 238, .external_lex_state = 40}, + [1597] = {.lex_state = 236, .external_lex_state = 28}, + [1598] = {.lex_state = 238, .external_lex_state = 40}, + [1599] = {.lex_state = 130, .external_lex_state = 18}, + [1600] = {.lex_state = 236, .external_lex_state = 28}, + [1601] = {.lex_state = 238, .external_lex_state = 40}, + [1602] = {.lex_state = 236, .external_lex_state = 28}, + [1603] = {.lex_state = 238, .external_lex_state = 40}, + [1604] = {.lex_state = 130, .external_lex_state = 18}, + [1605] = {.lex_state = 130, .external_lex_state = 18}, + [1606] = {.lex_state = 240, .external_lex_state = 38}, + [1607] = {.lex_state = 240, .external_lex_state = 38}, + [1608] = {.lex_state = 240, .external_lex_state = 38}, + [1609] = {.lex_state = 240, .external_lex_state = 38}, + [1610] = {.lex_state = 214, .external_lex_state = 30}, + [1611] = {.lex_state = 214, .external_lex_state = 30}, + [1612] = {.lex_state = 130, .external_lex_state = 18}, + [1613] = {.lex_state = 130, .external_lex_state = 18}, + [1614] = {.lex_state = 246, .external_lex_state = 31}, + [1615] = {.lex_state = 246, .external_lex_state = 31}, + [1616] = {.lex_state = 246, .external_lex_state = 31}, + [1617] = {.lex_state = 246, .external_lex_state = 31}, + [1618] = {.lex_state = 252, .external_lex_state = 34}, + [1619] = {.lex_state = 252, .external_lex_state = 34}, + [1620] = {.lex_state = 130, .external_lex_state = 18}, + [1621] = {.lex_state = 130, .external_lex_state = 18}, + [1622] = {.lex_state = 275, .external_lex_state = 11}, + [1623] = {.lex_state = 275, .external_lex_state = 11}, + [1624] = {.lex_state = 275, .external_lex_state = 11}, + [1625] = {.lex_state = 275, .external_lex_state = 11}, + [1626] = {.lex_state = 184, .external_lex_state = 36}, + [1627] = {.lex_state = 184, .external_lex_state = 36}, + [1628] = {.lex_state = 130, .external_lex_state = 25}, + [1629] = {.lex_state = 130, .external_lex_state = 25}, + [1630] = {.lex_state = 130, .external_lex_state = 18}, + [1631] = {.lex_state = 236, .external_lex_state = 28}, + [1632] = {.lex_state = 281, .external_lex_state = 39}, + [1633] = {.lex_state = 236, .external_lex_state = 28}, + [1634] = {.lex_state = 281, .external_lex_state = 39}, + [1635] = {.lex_state = 130, .external_lex_state = 18}, + [1636] = {.lex_state = 236, .external_lex_state = 28}, + [1637] = {.lex_state = 281, .external_lex_state = 39}, + [1638] = {.lex_state = 236, .external_lex_state = 28}, + [1639] = {.lex_state = 281, .external_lex_state = 39}, + [1640] = {.lex_state = 130, .external_lex_state = 18}, + [1641] = {.lex_state = 130, .external_lex_state = 18}, + [1642] = {.lex_state = 238, .external_lex_state = 40}, + [1643] = {.lex_state = 238, .external_lex_state = 40}, + [1644] = {.lex_state = 238, .external_lex_state = 40}, + [1645] = {.lex_state = 238, .external_lex_state = 40}, + [1646] = {.lex_state = 240, .external_lex_state = 38}, + [1647] = {.lex_state = 240, .external_lex_state = 38}, + [1648] = {.lex_state = 246, .external_lex_state = 31}, + [1649] = {.lex_state = 246, .external_lex_state = 31}, + [1650] = {.lex_state = 275, .external_lex_state = 11}, + [1651] = {.lex_state = 275, .external_lex_state = 11}, + [1652] = {.lex_state = 130, .external_lex_state = 18}, + [1653] = {.lex_state = 130, .external_lex_state = 18}, + [1654] = {.lex_state = 281, .external_lex_state = 39}, + [1655] = {.lex_state = 281, .external_lex_state = 39}, + [1656] = {.lex_state = 281, .external_lex_state = 39}, + [1657] = {.lex_state = 281, .external_lex_state = 39}, + [1658] = {.lex_state = 238, .external_lex_state = 40}, + [1659] = {.lex_state = 238, .external_lex_state = 40}, + [1660] = {.lex_state = 281, .external_lex_state = 39}, + [1661] = {.lex_state = 281, .external_lex_state = 39}, }; enum { @@ -6830,10 +5674,14 @@ enum { ts_external_token__heredoc_middle, ts_external_token__heredoc_end, ts_external_token_file_descriptor, + ts_external_token_word, ts_external_token__empty_value, ts_external_token__concat, ts_external_token_variable_name, ts_external_token_LF, + ts_external_token_RBRACK, + ts_external_token_RBRACK_RBRACK, + ts_external_token_RBRACE, }; static TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -6842,94 +5690,205 @@ static TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_middle] = sym__heredoc_middle, [ts_external_token__heredoc_end] = sym__heredoc_end, [ts_external_token_file_descriptor] = sym_file_descriptor, + [ts_external_token_word] = sym_word, [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, + [ts_external_token_RBRACK] = anon_sym_RBRACK, + [ts_external_token_RBRACK_RBRACK] = anon_sym_RBRACK_RBRACK, + [ts_external_token_RBRACE] = anon_sym_RBRACE, }; -static bool ts_external_scanner_states[20][EXTERNAL_TOKEN_COUNT] = { +static bool ts_external_scanner_states[41][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_word] = true, [ts_external_token__empty_value] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, [ts_external_token_LF] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_RBRACK_RBRACK] = true, + [ts_external_token_RBRACE] = true, }, [2] = { [ts_external_token_file_descriptor] = true, + [ts_external_token_word] = 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_word] = true, [ts_external_token__concat] = true, [ts_external_token_LF] = true, }, + [4] = { + [ts_external_token_word] = true, + }, [5] = { + [ts_external_token_word] = true, + [ts_external_token_variable_name] = true, [ts_external_token_LF] = true, }, [6] = { [ts_external_token_file_descriptor] = true, - [ts_external_token_LF] = true, + [ts_external_token_word] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_RBRACE] = 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, + [ts_external_token_file_descriptor] = true, + [ts_external_token_word] = true, + [ts_external_token_LF] = true, }, [9] = { - [ts_external_token__concat] = true, + [ts_external_token_file_descriptor] = true, + [ts_external_token_word] = true, + [ts_external_token_variable_name] = true, [ts_external_token_LF] = true, }, [10] = { - [ts_external_token__concat] = true, + [ts_external_token_word] = true, + [ts_external_token__empty_value] = true, }, [11] = { - [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, - [ts_external_token_variable_name] = true, + [ts_external_token_LF] = true, }, [12] = { - [ts_external_token_variable_name] = true, + [ts_external_token_word] = true, + [ts_external_token__concat] = true, + [ts_external_token_RBRACK] = true, }, [13] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, + [ts_external_token_word] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_RBRACK_RBRACK] = true, }, [14] = { - [ts_external_token_file_descriptor] = true, + [ts_external_token_word] = true, + [ts_external_token_RBRACK] = true, }, [15] = { + [ts_external_token_word] = true, + [ts_external_token__concat] = true, + [ts_external_token_RBRACK_RBRACK] = true, + }, + [16] = { + [ts_external_token_word] = true, + [ts_external_token_RBRACK_RBRACK] = true, + }, + [17] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_word] = true, + [ts_external_token__concat] = true, + [ts_external_token_variable_name] = true, + }, + [18] = { + [ts_external_token_RBRACE] = true, + }, + [19] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_word] = true, + [ts_external_token__concat] = true, + }, + [20] = { + [ts_external_token_word] = true, + [ts_external_token_variable_name] = true, + }, + [21] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_word] = true, + }, + [22] = { [ts_external_token__simple_heredoc] = true, [ts_external_token__heredoc_beginning] = true, }, - [16] = { + [23] = { [ts_external_token_file_descriptor] = true, + [ts_external_token_LF] = true, + }, + [24] = { + [ts_external_token__concat] = true, + [ts_external_token_RBRACK] = true, + }, + [25] = { + [ts_external_token_RBRACK] = true, + }, + [26] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_word] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, [ts_external_token_LF] = true, }, - [17] = { + [27] = { + [ts_external_token_word] = true, + [ts_external_token__concat] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_RBRACK_RBRACK] = true, + }, + [28] = { + [ts_external_token_word] = true, + [ts_external_token_RBRACE] = true, + }, + [29] = { + [ts_external_token_file_descriptor] = true, + }, + [30] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, + [ts_external_token_LF] = true, + }, + [31] = { [ts_external_token__heredoc_middle] = true, [ts_external_token__heredoc_end] = true, }, - [18] = { + [32] = { + [ts_external_token__concat] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_RBRACE] = true, + }, + [33] = { + [ts_external_token_word] = true, + [ts_external_token__concat] = true, + }, + [34] = { + [ts_external_token_word] = true, + [ts_external_token__concat] = true, + [ts_external_token_LF] = true, + }, + [35] = { + [ts_external_token_word] = true, + [ts_external_token_LF] = true, + }, + [36] = { + [ts_external_token_word] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, [ts_external_token_LF] = true, }, - [19] = { + [37] = { + [ts_external_token__concat] = true, + [ts_external_token_RBRACE] = true, + }, + [38] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, + }, + [39] = { + [ts_external_token__concat] = true, + }, + [40] = { + [ts_external_token_word] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, }, @@ -6942,13 +5901,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_middle] = ACTIONS(1), [sym__heredoc_end] = ACTIONS(1), [sym_file_descriptor] = ACTIONS(1), + [sym_word] = ACTIONS(1), [sym__empty_value] = ACTIONS(1), [sym__concat] = ACTIONS(1), [sym_variable_name] = ACTIONS(1), [ts_builtin_sym_end] = ACTIONS(3), + [anon_sym_for] = ACTIONS(3), + [anon_sym_while] = ACTIONS(3), + [anon_sym_done] = ACTIONS(3), + [anon_sym_if] = ACTIONS(3), + [anon_sym_fi] = ACTIONS(3), + [anon_sym_elif] = ACTIONS(3), + [anon_sym_else] = ACTIONS(3), + [anon_sym_case] = ACTIONS(3), + [anon_sym_esac] = ACTIONS(3), [anon_sym_PIPE] = ACTIONS(3), [anon_sym_RPAREN] = ACTIONS(3), [anon_sym_SEMI_SEMI] = ACTIONS(3), + [anon_sym_function] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(3), [anon_sym_RBRACE] = ACTIONS(3), @@ -6959,7 +5929,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(3), [anon_sym_LBRACK_LBRACK] = ACTIONS(3), [anon_sym_RBRACK_RBRACK] = ACTIONS(3), - [anon_sym_DASH] = ACTIONS(3), + [anon_sym_declare] = ACTIONS(3), + [anon_sym_typeset] = ACTIONS(3), + [anon_sym_export] = ACTIONS(3), + [anon_sym_readonly] = ACTIONS(3), + [anon_sym_local] = ACTIONS(3), [anon_sym_EQ] = ACTIONS(3), [anon_sym_PLUS_EQ] = ACTIONS(3), [anon_sym_LT] = ACTIONS(3), @@ -6987,9 +5961,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(3), [anon_sym_GT_LPAREN] = ACTIONS(3), [sym_comment] = ACTIONS(5), - [sym_simple_variable_name] = ACTIONS(3), + [sym_identifier] = ACTIONS(3), [anon_sym_STAR] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(3), [anon_sym_BANG] = ACTIONS(3), [anon_sym_0] = ACTIONS(3), [anon_sym__] = ACTIONS(3), @@ -7016,46 +5991,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), [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), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [ts_builtin_sym_end] = ACTIONS(14), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), [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), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), }, [2] = { [anon_sym_LT] = ACTIONS(54), @@ -7065,30 +6041,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(56), [anon_sym_LT_AMP] = ACTIONS(56), [anon_sym_GT_AMP] = ACTIONS(56), - [sym_comment] = ACTIONS(52), + [sym_comment] = ACTIONS(50), }, [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), + [aux_sym_concatenation_repeat1] = STATE(34), + [sym_file_descriptor] = ACTIONS(58), + [sym_word] = ACTIONS(58), + [sym__concat] = ACTIONS(60), + [anon_sym_PIPE] = ACTIONS(62), + [anon_sym_SEMI_SEMI] = ACTIONS(62), + [anon_sym_PIPE_AMP] = ACTIONS(62), + [anon_sym_AMP_AMP] = ACTIONS(62), + [anon_sym_PIPE_PIPE] = ACTIONS(62), + [anon_sym_LT] = ACTIONS(62), + [anon_sym_GT] = ACTIONS(62), + [anon_sym_GT_GT] = ACTIONS(62), + [anon_sym_AMP_GT] = ACTIONS(62), + [anon_sym_AMP_GT_GT] = ACTIONS(62), + [anon_sym_LT_AMP] = ACTIONS(62), + [anon_sym_GT_AMP] = ACTIONS(62), + [anon_sym_LT_LT] = ACTIONS(62), + [anon_sym_LT_LT_DASH] = ACTIONS(62), + [anon_sym_DQUOTE] = ACTIONS(62), + [sym_raw_string] = ACTIONS(62), + [anon_sym_DOLLAR] = ACTIONS(62), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(62), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(62), + [anon_sym_BQUOTE] = ACTIONS(62), + [anon_sym_LT_LPAREN] = ACTIONS(62), + [anon_sym_GT_LPAREN] = ACTIONS(62), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(62), + [anon_sym_SEMI] = ACTIONS(62), + [anon_sym_LF] = ACTIONS(62), + [anon_sym_AMP] = ACTIONS(62), }, [4] = { - [sym_special_variable_name] = STATE(38), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(62), - [anon_sym_AT] = ACTIONS(62), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(66), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), + [sym__assignment] = STATE(37), + [anon_sym_LBRACK] = ACTIONS(66), + [anon_sym_EQ] = ACTIONS(68), + [anon_sym_PLUS_EQ] = ACTIONS(68), + [sym_comment] = ACTIONS(50), }, [5] = { + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(70), + }, + [6] = { [sym__terminated_statement] = STATE(39), [sym_for_statement] = STATE(40), [sym_while_statement] = STATE(40), @@ -7106,46 +6105,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), [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), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), [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), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), }, - [6] = { + [7] = { [sym__terminated_statement] = STATE(42), [sym_for_statement] = STATE(40), [sym_while_statement] = STATE(40), @@ -7163,329 +6163,360 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), [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), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), [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(50), - [sym_string] = STATE(44), - [sym_simple_expansion] = STATE(44), - [sym_expansion] = STATE(44), - [sym_command_substitution] = STATE(44), - [sym_process_substitution] = STATE(44), - [anon_sym_DQUOTE] = ACTIONS(70), - [sym_raw_string] = ACTIONS(72), - [anon_sym_DOLLAR] = ACTIONS(74), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(76), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(78), - [anon_sym_BQUOTE] = ACTIONS(80), - [anon_sym_LT_LPAREN] = ACTIONS(82), - [anon_sym_GT_LPAREN] = ACTIONS(82), - [sym_word] = ACTIONS(84), - [sym_comment] = ACTIONS(52), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), }, [8] = { - [sym_word] = ACTIONS(86), - [sym_comment] = ACTIONS(52), + [sym_concatenation] = STATE(51), + [sym_string] = STATE(43), + [sym_simple_expansion] = STATE(43), + [sym_expansion] = STATE(43), + [sym_command_substitution] = STATE(43), + [sym_process_substitution] = STATE(43), + [sym_word] = ACTIONS(72), + [anon_sym_DQUOTE] = ACTIONS(74), + [sym_raw_string] = ACTIONS(72), + [anon_sym_DOLLAR] = ACTIONS(76), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(78), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(80), + [anon_sym_BQUOTE] = ACTIONS(82), + [anon_sym_LT_LPAREN] = ACTIONS(84), + [anon_sym_GT_LPAREN] = ACTIONS(84), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(86), }, [9] = { + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(88), + }, + [10] = { [sym__terminated_statement] = STATE(23), - [sym_for_statement] = STATE(57), - [sym_while_statement] = STATE(57), - [sym_if_statement] = STATE(57), - [sym_case_statement] = STATE(57), - [sym_function_definition] = STATE(57), - [sym_subshell] = STATE(57), - [sym_pipeline] = STATE(57), - [sym_list] = STATE(57), - [sym_bracket_command] = STATE(57), - [sym_command] = STATE(57), - [sym_command_name] = STATE(58), - [sym_variable_assignment] = STATE(59), - [sym_declaration_command] = STATE(57), - [sym_subscript] = STATE(60), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_subshell] = STATE(58), + [sym_pipeline] = STATE(58), + [sym_list] = STATE(58), + [sym_bracket_command] = STATE(58), + [sym_command] = STATE(58), + [sym_command_name] = STATE(59), + [sym_variable_assignment] = STATE(60), + [sym_declaration_command] = STATE(58), + [sym_subscript] = STATE(61), [sym_file_redirect] = STATE(28), [sym_concatenation] = STATE(29), - [sym_string] = STATE(55), - [sym_simple_expansion] = STATE(55), - [sym_expansion] = STATE(55), - [sym_command_substitution] = STATE(55), - [sym_process_substitution] = STATE(55), - [aux_sym_program_repeat1] = STATE(61), - [aux_sym_command_repeat1] = STATE(62), + [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(62), + [aux_sym_command_repeat1] = STATE(63), [sym_file_descriptor] = ACTIONS(8), - [sym_variable_name] = ACTIONS(88), - [anon_sym_for] = ACTIONS(14), - [anon_sym_while] = ACTIONS(16), - [anon_sym_if] = ACTIONS(18), - [anon_sym_case] = ACTIONS(20), - [anon_sym_function] = ACTIONS(90), - [anon_sym_LPAREN] = ACTIONS(24), - [anon_sym_LBRACK] = ACTIONS(26), - [anon_sym_LBRACK_LBRACK] = ACTIONS(28), - [anon_sym_declare] = ACTIONS(92), - [anon_sym_typeset] = ACTIONS(92), - [anon_sym_export] = ACTIONS(92), - [anon_sym_readonly] = ACTIONS(92), - [anon_sym_local] = ACTIONS(92), - [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(94), + [sym_word] = ACTIONS(90), + [sym_variable_name] = ACTIONS(92), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(94), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(96), + [anon_sym_typeset] = ACTIONS(96), + [anon_sym_export] = ACTIONS(96), + [anon_sym_readonly] = ACTIONS(96), + [anon_sym_local] = ACTIONS(96), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(90), [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(96), - [sym_comment] = ACTIONS(52), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(98), }, - [10] = { - [sym_concatenation] = STATE(70), + [11] = { + [sym_concatenation] = STATE(72), [sym_string] = STATE(64), [sym_simple_expansion] = STATE(64), [sym_expansion] = STATE(64), [sym_command_substitution] = STATE(64), [sym_process_substitution] = STATE(64), - [aux_sym_for_statement_repeat1] = STATE(71), - [anon_sym_DQUOTE] = ACTIONS(98), + [aux_sym_for_statement_repeat1] = STATE(73), + [sym_word] = ACTIONS(100), + [anon_sym_DQUOTE] = ACTIONS(102), [sym_raw_string] = ACTIONS(100), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(112), - [sym_comment] = ACTIONS(52), - }, - [11] = { - [sym_concatenation] = STATE(79), - [sym_string] = STATE(73), - [sym_simple_expansion] = STATE(73), - [sym_expansion] = STATE(73), - [sym_command_substitution] = STATE(73), - [sym_process_substitution] = STATE(73), - [aux_sym_for_statement_repeat1] = STATE(80), - [anon_sym_DQUOTE] = ACTIONS(114), - [sym_raw_string] = ACTIONS(116), - [anon_sym_DOLLAR] = ACTIONS(118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(122), - [anon_sym_BQUOTE] = ACTIONS(124), - [anon_sym_LT_LPAREN] = ACTIONS(126), - [anon_sym_GT_LPAREN] = ACTIONS(126), - [sym_word] = ACTIONS(128), - [sym_comment] = ACTIONS(52), + [anon_sym_DOLLAR] = ACTIONS(104), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(108), + [anon_sym_BQUOTE] = ACTIONS(110), + [anon_sym_LT_LPAREN] = ACTIONS(112), + [anon_sym_GT_LPAREN] = ACTIONS(112), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(114), }, [12] = { - [sym_variable_assignment] = STATE(83), - [sym_subscript] = STATE(84), - [aux_sym_declaration_command_repeat1] = STATE(85), - [aux_sym_declaration_command_repeat2] = STATE(86), - [sym_variable_name] = ACTIONS(130), - [anon_sym_PIPE] = ACTIONS(132), - [anon_sym_SEMI_SEMI] = ACTIONS(132), - [anon_sym_PIPE_AMP] = ACTIONS(132), - [anon_sym_AMP_AMP] = ACTIONS(132), - [anon_sym_PIPE_PIPE] = ACTIONS(132), - [anon_sym_DASH] = ACTIONS(134), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(136), - [anon_sym_SEMI] = ACTIONS(132), - [anon_sym_LF] = ACTIONS(132), - [anon_sym_AMP] = ACTIONS(132), + [sym_concatenation] = STATE(72), + [sym_string] = STATE(74), + [sym_simple_expansion] = STATE(74), + [sym_expansion] = STATE(74), + [sym_command_substitution] = STATE(74), + [sym_process_substitution] = STATE(74), + [aux_sym_for_statement_repeat1] = STATE(76), + [sym_word] = ACTIONS(116), + [anon_sym_DQUOTE] = ACTIONS(102), + [sym_raw_string] = ACTIONS(116), + [anon_sym_DOLLAR] = ACTIONS(104), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(108), + [anon_sym_BQUOTE] = ACTIONS(110), + [anon_sym_LT_LPAREN] = ACTIONS(112), + [anon_sym_GT_LPAREN] = ACTIONS(112), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(118), }, [13] = { - [sym_concatenation] = STATE(94), - [sym_string] = STATE(88), - [sym_simple_expansion] = STATE(88), - [sym_expansion] = STATE(88), - [sym_command_substitution] = STATE(88), - [sym_process_substitution] = STATE(88), - [anon_sym_DQUOTE] = ACTIONS(138), - [sym_raw_string] = ACTIONS(140), - [anon_sym_DOLLAR] = ACTIONS(142), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(144), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(146), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_LT_LPAREN] = ACTIONS(150), - [anon_sym_GT_LPAREN] = ACTIONS(150), - [sym_word] = ACTIONS(152), - [sym_comment] = ACTIONS(52), + [sym_variable_assignment] = STATE(77), + [sym_subscript] = STATE(80), + [aux_sym_declaration_command_repeat1] = STATE(81), + [sym_word] = ACTIONS(120), + [sym_variable_name] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(124), + [anon_sym_SEMI_SEMI] = ACTIONS(124), + [anon_sym_PIPE_AMP] = ACTIONS(124), + [anon_sym_AMP_AMP] = ACTIONS(124), + [anon_sym_PIPE_PIPE] = ACTIONS(124), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(126), + [anon_sym_SEMI] = ACTIONS(124), + [anon_sym_LF] = ACTIONS(124), + [anon_sym_AMP] = ACTIONS(124), }, [14] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(101), - [anon_sym_DQUOTE] = ACTIONS(154), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), + [sym_concatenation] = STATE(90), + [sym_string] = STATE(82), + [sym_simple_expansion] = STATE(82), + [sym_expansion] = STATE(82), + [sym_command_substitution] = STATE(82), + [sym_process_substitution] = STATE(82), + [sym_word] = ACTIONS(128), + [anon_sym_DQUOTE] = ACTIONS(130), + [sym_raw_string] = ACTIONS(128), + [anon_sym_DOLLAR] = ACTIONS(132), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(134), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(136), + [anon_sym_BQUOTE] = ACTIONS(138), + [anon_sym_LT_LPAREN] = ACTIONS(140), + [anon_sym_GT_LPAREN] = ACTIONS(140), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(142), }, [15] = { - [aux_sym_concatenation_repeat1] = STATE(103), - [sym_file_descriptor] = ACTIONS(166), - [sym__concat] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(170), - [anon_sym_SEMI_SEMI] = ACTIONS(170), - [anon_sym_PIPE_AMP] = ACTIONS(170), - [anon_sym_AMP_AMP] = ACTIONS(170), - [anon_sym_PIPE_PIPE] = ACTIONS(170), - [anon_sym_LT] = ACTIONS(170), - [anon_sym_GT] = ACTIONS(170), - [anon_sym_GT_GT] = ACTIONS(170), - [anon_sym_AMP_GT] = ACTIONS(170), - [anon_sym_AMP_GT_GT] = ACTIONS(170), - [anon_sym_LT_AMP] = ACTIONS(170), - [anon_sym_GT_AMP] = ACTIONS(170), - [anon_sym_LT_LT] = ACTIONS(170), - [anon_sym_LT_LT_DASH] = ACTIONS(170), - [anon_sym_DQUOTE] = ACTIONS(170), - [sym_raw_string] = ACTIONS(170), - [anon_sym_DOLLAR] = ACTIONS(170), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(170), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(170), - [anon_sym_LT_LPAREN] = ACTIONS(170), - [anon_sym_GT_LPAREN] = ACTIONS(170), - [sym_word] = ACTIONS(170), + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(97), + [anon_sym_DQUOTE] = ACTIONS(144), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(170), - [anon_sym_LF] = ACTIONS(170), - [anon_sym_AMP] = ACTIONS(170), }, [16] = { - [sym_special_variable_name] = STATE(106), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_DOLLAR] = ACTIONS(172), - [anon_sym_POUND] = ACTIONS(172), - [anon_sym_AT] = ACTIONS(172), + [sym_special_variable_name] = STATE(100), + [anon_sym_DOLLAR] = ACTIONS(156), + [anon_sym_POUND] = ACTIONS(156), + [anon_sym_AT] = ACTIONS(156), [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(174), - [anon_sym_STAR] = ACTIONS(172), - [anon_sym_QMARK] = ACTIONS(172), - [anon_sym_BANG] = ACTIONS(172), - [anon_sym_0] = ACTIONS(176), - [anon_sym__] = ACTIONS(176), + [sym_identifier] = ACTIONS(158), + [anon_sym_STAR] = ACTIONS(156), + [anon_sym_QMARK] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_BANG] = ACTIONS(156), + [anon_sym_0] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), }, [17] = { - [sym_special_variable_name] = STATE(109), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(178), - [anon_sym_AT] = ACTIONS(62), + [sym_special_variable_name] = STATE(104), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(164), + [anon_sym_AT] = ACTIONS(162), [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(180), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), + [sym_identifier] = ACTIONS(166), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), }, [18] = { - [sym_for_statement] = STATE(128), - [sym_while_statement] = STATE(128), - [sym_if_statement] = STATE(128), - [sym_case_statement] = STATE(128), - [sym_function_definition] = STATE(128), - [sym_subshell] = STATE(128), - [sym_pipeline] = STATE(128), - [sym_list] = STATE(128), - [sym_bracket_command] = STATE(128), - [sym_command] = STATE(128), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(130), - [sym_declaration_command] = STATE(128), - [sym_subscript] = STATE(131), + [sym_for_statement] = STATE(123), + [sym_while_statement] = STATE(123), + [sym_if_statement] = STATE(123), + [sym_case_statement] = STATE(123), + [sym_function_definition] = STATE(123), + [sym_subshell] = STATE(123), + [sym_pipeline] = STATE(123), + [sym_list] = STATE(123), + [sym_bracket_command] = STATE(123), + [sym_command] = STATE(123), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(125), + [sym_declaration_command] = STATE(123), + [sym_subscript] = STATE(126), [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), [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), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), }, [19] = { + [sym_for_statement] = STATE(134), + [sym_while_statement] = STATE(134), + [sym_if_statement] = STATE(134), + [sym_case_statement] = STATE(134), + [sym_function_definition] = STATE(134), + [sym_subshell] = STATE(134), + [sym_pipeline] = STATE(134), + [sym_list] = STATE(134), + [sym_bracket_command] = STATE(134), + [sym_command] = STATE(134), + [sym_command_name] = STATE(135), + [sym_variable_assignment] = STATE(136), + [sym_declaration_command] = STATE(134), + [sym_subscript] = STATE(137), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(129), + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [sym_process_substitution] = STATE(129), + [aux_sym_command_repeat1] = STATE(138), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(206), + [sym_variable_name] = ACTIONS(208), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(212), + [anon_sym_typeset] = ACTIONS(212), + [anon_sym_export] = ACTIONS(212), + [anon_sym_readonly] = ACTIONS(212), + [anon_sym_local] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(206), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(214), + }, + [20] = { [sym_for_statement] = STATE(139), [sym_while_statement] = STATE(139), [sym_if_statement] = STATE(139), @@ -7496,318 +6527,269 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(139), [sym_bracket_command] = STATE(139), [sym_command] = STATE(139), - [sym_command_name] = STATE(140), - [sym_variable_assignment] = STATE(141), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(140), [sym_declaration_command] = STATE(139), - [sym_subscript] = STATE(142), + [sym_subscript] = STATE(126), [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(137), - [sym_simple_expansion] = STATE(137), - [sym_expansion] = STATE(137), - [sym_command_substitution] = STATE(137), - [sym_process_substitution] = STATE(137), - [aux_sym_command_repeat1] = STATE(143), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), [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(144), - [sym_while_statement] = STATE(144), - [sym_if_statement] = STATE(144), - [sym_case_statement] = STATE(144), - [sym_function_definition] = STATE(144), - [sym_subshell] = STATE(144), - [sym_pipeline] = STATE(144), - [sym_list] = STATE(144), - [sym_bracket_command] = STATE(144), - [sym_command] = STATE(144), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(145), - [sym_declaration_command] = STATE(144), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), }, [21] = { - [aux_sym_concatenation_repeat1] = STATE(103), - [sym_file_descriptor] = ACTIONS(166), - [sym__concat] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(170), - [anon_sym_SEMI_SEMI] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_PIPE_AMP] = ACTIONS(170), - [anon_sym_AMP_AMP] = ACTIONS(170), - [anon_sym_PIPE_PIPE] = ACTIONS(170), - [anon_sym_LT] = ACTIONS(170), - [anon_sym_GT] = ACTIONS(170), - [anon_sym_GT_GT] = ACTIONS(170), - [anon_sym_AMP_GT] = ACTIONS(170), - [anon_sym_AMP_GT_GT] = ACTIONS(170), - [anon_sym_LT_AMP] = ACTIONS(170), - [anon_sym_GT_AMP] = ACTIONS(170), - [anon_sym_LT_LT] = ACTIONS(170), - [anon_sym_LT_LT_DASH] = ACTIONS(170), - [anon_sym_DQUOTE] = ACTIONS(170), - [sym_raw_string] = ACTIONS(170), - [anon_sym_DOLLAR] = ACTIONS(170), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(170), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(170), - [anon_sym_LT_LPAREN] = ACTIONS(170), - [anon_sym_GT_LPAREN] = ACTIONS(170), - [sym_word] = ACTIONS(170), + [aux_sym_concatenation_repeat1] = STATE(142), + [sym_file_descriptor] = ACTIONS(216), + [sym_word] = ACTIONS(216), + [sym__concat] = ACTIONS(60), + [anon_sym_PIPE] = ACTIONS(218), + [anon_sym_SEMI_SEMI] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_PIPE_AMP] = ACTIONS(218), + [anon_sym_AMP_AMP] = ACTIONS(218), + [anon_sym_PIPE_PIPE] = ACTIONS(218), + [anon_sym_LT] = ACTIONS(218), + [anon_sym_GT] = ACTIONS(218), + [anon_sym_GT_GT] = ACTIONS(218), + [anon_sym_AMP_GT] = ACTIONS(218), + [anon_sym_AMP_GT_GT] = ACTIONS(218), + [anon_sym_LT_AMP] = ACTIONS(218), + [anon_sym_GT_AMP] = ACTIONS(218), + [anon_sym_LT_LT] = ACTIONS(218), + [anon_sym_LT_LT_DASH] = ACTIONS(218), + [anon_sym_DQUOTE] = ACTIONS(218), + [sym_raw_string] = ACTIONS(218), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(218), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(218), + [anon_sym_BQUOTE] = ACTIONS(218), + [anon_sym_LT_LPAREN] = ACTIONS(218), + [anon_sym_GT_LPAREN] = ACTIONS(218), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(170), - [anon_sym_LF] = ACTIONS(170), - [anon_sym_AMP] = ACTIONS(170), + [sym_identifier] = ACTIONS(218), + [anon_sym_SEMI] = ACTIONS(218), + [anon_sym_LF] = ACTIONS(218), + [anon_sym_AMP] = ACTIONS(218), }, [22] = { - [ts_builtin_sym_end] = ACTIONS(230), - [sym_comment] = ACTIONS(52), + [ts_builtin_sym_end] = ACTIONS(222), + [sym_comment] = ACTIONS(50), }, [23] = { - [sym_file_descriptor] = ACTIONS(232), - [sym_variable_name] = ACTIONS(232), - [ts_builtin_sym_end] = ACTIONS(232), - [anon_sym_for] = ACTIONS(234), - [anon_sym_while] = ACTIONS(234), - [anon_sym_if] = ACTIONS(234), - [anon_sym_case] = ACTIONS(234), - [anon_sym_SEMI_SEMI] = ACTIONS(232), - [anon_sym_function] = ACTIONS(234), - [anon_sym_LPAREN] = ACTIONS(232), - [anon_sym_RBRACE] = ACTIONS(232), - [anon_sym_LBRACK] = ACTIONS(234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(234), - [anon_sym_declare] = ACTIONS(234), - [anon_sym_typeset] = ACTIONS(234), - [anon_sym_export] = ACTIONS(234), - [anon_sym_readonly] = ACTIONS(234), - [anon_sym_local] = ACTIONS(234), - [anon_sym_LT] = ACTIONS(234), - [anon_sym_GT] = ACTIONS(234), - [anon_sym_GT_GT] = ACTIONS(232), - [anon_sym_AMP_GT] = ACTIONS(234), - [anon_sym_AMP_GT_GT] = ACTIONS(232), - [anon_sym_LT_AMP] = ACTIONS(232), - [anon_sym_GT_AMP] = ACTIONS(232), - [anon_sym_DQUOTE] = ACTIONS(232), - [sym_raw_string] = ACTIONS(232), - [anon_sym_DOLLAR] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(232), - [anon_sym_BQUOTE] = ACTIONS(232), - [anon_sym_LT_LPAREN] = ACTIONS(232), - [anon_sym_GT_LPAREN] = ACTIONS(232), - [sym_word] = ACTIONS(236), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(224), + [sym_word] = ACTIONS(224), + [sym_variable_name] = ACTIONS(224), + [ts_builtin_sym_end] = ACTIONS(224), + [anon_sym_for] = ACTIONS(226), + [anon_sym_while] = ACTIONS(226), + [anon_sym_if] = ACTIONS(226), + [anon_sym_case] = ACTIONS(226), + [anon_sym_SEMI_SEMI] = ACTIONS(224), + [anon_sym_function] = ACTIONS(226), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RBRACE] = ACTIONS(224), + [anon_sym_LBRACK] = ACTIONS(226), + [anon_sym_LBRACK_LBRACK] = ACTIONS(224), + [anon_sym_declare] = ACTIONS(226), + [anon_sym_typeset] = ACTIONS(226), + [anon_sym_export] = ACTIONS(226), + [anon_sym_readonly] = ACTIONS(226), + [anon_sym_local] = ACTIONS(226), + [anon_sym_LT] = ACTIONS(226), + [anon_sym_GT] = ACTIONS(226), + [anon_sym_GT_GT] = ACTIONS(224), + [anon_sym_AMP_GT] = ACTIONS(226), + [anon_sym_AMP_GT_GT] = ACTIONS(224), + [anon_sym_LT_AMP] = ACTIONS(224), + [anon_sym_GT_AMP] = ACTIONS(224), + [anon_sym_DQUOTE] = ACTIONS(224), + [sym_raw_string] = ACTIONS(224), + [anon_sym_DOLLAR] = ACTIONS(226), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(224), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(224), + [anon_sym_GT_LPAREN] = ACTIONS(224), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(228), }, [24] = { - [anon_sym_PIPE] = ACTIONS(238), - [anon_sym_SEMI_SEMI] = ACTIONS(240), - [anon_sym_PIPE_AMP] = ACTIONS(238), - [anon_sym_AMP_AMP] = ACTIONS(242), - [anon_sym_PIPE_PIPE] = ACTIONS(242), + [anon_sym_PIPE] = ACTIONS(230), + [anon_sym_SEMI_SEMI] = ACTIONS(232), + [anon_sym_PIPE_AMP] = ACTIONS(230), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE_PIPE] = ACTIONS(234), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(240), - [anon_sym_LF] = ACTIONS(240), - [anon_sym_AMP] = ACTIONS(240), + [anon_sym_SEMI] = ACTIONS(232), + [anon_sym_LF] = ACTIONS(232), + [anon_sym_AMP] = ACTIONS(232), }, [25] = { - [sym_file_redirect] = STATE(154), - [sym_heredoc_redirect] = STATE(154), - [sym_concatenation] = STATE(155), - [sym_string] = STATE(153), - [sym_simple_expansion] = STATE(153), - [sym_expansion] = STATE(153), - [sym_command_substitution] = STATE(153), - [sym_process_substitution] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(156), - [aux_sym_command_repeat2] = STATE(157), - [sym_file_descriptor] = ACTIONS(244), - [anon_sym_PIPE] = ACTIONS(246), - [anon_sym_SEMI_SEMI] = ACTIONS(246), - [anon_sym_PIPE_AMP] = ACTIONS(246), - [anon_sym_AMP_AMP] = ACTIONS(246), - [anon_sym_PIPE_PIPE] = ACTIONS(246), - [anon_sym_LT] = ACTIONS(248), - [anon_sym_GT] = ACTIONS(248), - [anon_sym_GT_GT] = ACTIONS(248), - [anon_sym_AMP_GT] = ACTIONS(248), - [anon_sym_AMP_GT_GT] = ACTIONS(248), - [anon_sym_LT_AMP] = ACTIONS(248), - [anon_sym_GT_AMP] = ACTIONS(248), - [anon_sym_LT_LT] = ACTIONS(250), - [anon_sym_LT_LT_DASH] = ACTIONS(250), - [anon_sym_DQUOTE] = ACTIONS(252), - [sym_raw_string] = ACTIONS(254), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(260), - [anon_sym_BQUOTE] = ACTIONS(262), - [anon_sym_LT_LPAREN] = ACTIONS(264), - [anon_sym_GT_LPAREN] = ACTIONS(264), - [sym_word] = ACTIONS(254), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(246), - [anon_sym_LF] = ACTIONS(246), - [anon_sym_AMP] = ACTIONS(246), - }, - [26] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(238), + [sym_file_redirect] = STATE(151), + [sym_heredoc_redirect] = STATE(151), + [sym_concatenation] = STATE(152), + [sym_string] = STATE(147), + [sym_simple_expansion] = STATE(147), + [sym_expansion] = STATE(147), + [sym_command_substitution] = STATE(147), + [sym_process_substitution] = STATE(147), + [aux_sym_for_statement_repeat1] = STATE(153), + [aux_sym_command_repeat2] = STATE(154), + [sym_file_descriptor] = ACTIONS(236), + [sym_word] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(240), [anon_sym_SEMI_SEMI] = ACTIONS(240), - [anon_sym_PIPE_AMP] = ACTIONS(238), - [anon_sym_AMP_AMP] = ACTIONS(242), - [anon_sym_PIPE_PIPE] = ACTIONS(242), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_AMP_GT] = ACTIONS(268), - [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(268), - [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(268), + [anon_sym_PIPE_AMP] = ACTIONS(240), + [anon_sym_AMP_AMP] = ACTIONS(240), + [anon_sym_PIPE_PIPE] = ACTIONS(240), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(242), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(242), + [anon_sym_LT_AMP] = ACTIONS(242), + [anon_sym_GT_AMP] = ACTIONS(242), + [anon_sym_LT_LT] = ACTIONS(244), + [anon_sym_LT_LT_DASH] = ACTIONS(244), + [anon_sym_DQUOTE] = ACTIONS(246), + [sym_raw_string] = ACTIONS(248), + [anon_sym_DOLLAR] = ACTIONS(250), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), + [anon_sym_BQUOTE] = ACTIONS(256), + [anon_sym_LT_LPAREN] = ACTIONS(258), + [anon_sym_GT_LPAREN] = ACTIONS(258), [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(260), [anon_sym_SEMI] = ACTIONS(240), [anon_sym_LF] = ACTIONS(240), [anon_sym_AMP] = ACTIONS(240), }, + [26] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(230), + [anon_sym_SEMI_SEMI] = ACTIONS(232), + [anon_sym_PIPE_AMP] = ACTIONS(230), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_GT_GT] = ACTIONS(264), + [anon_sym_AMP_GT] = ACTIONS(264), + [anon_sym_AMP_GT_GT] = ACTIONS(264), + [anon_sym_LT_AMP] = ACTIONS(264), + [anon_sym_GT_AMP] = ACTIONS(264), + [anon_sym_DQUOTE] = ACTIONS(264), + [sym_raw_string] = ACTIONS(264), + [anon_sym_DOLLAR] = ACTIONS(264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(264), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(264), + [anon_sym_BQUOTE] = ACTIONS(264), + [anon_sym_LT_LPAREN] = ACTIONS(264), + [anon_sym_GT_LPAREN] = ACTIONS(264), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(264), + [anon_sym_SEMI] = ACTIONS(232), + [anon_sym_LF] = ACTIONS(232), + [anon_sym_AMP] = ACTIONS(232), + }, [27] = { - [sym__assignment] = STATE(35), - [anon_sym_EQ] = ACTIONS(60), - [anon_sym_PLUS_EQ] = ACTIONS(60), - [sym_comment] = ACTIONS(52), + [sym__assignment] = STATE(37), + [anon_sym_EQ] = ACTIONS(68), + [anon_sym_PLUS_EQ] = ACTIONS(68), + [sym_comment] = ACTIONS(50), }, [28] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(270), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), }, [29] = { - [sym_file_descriptor] = ACTIONS(166), - [anon_sym_PIPE] = ACTIONS(170), - [anon_sym_RPAREN] = ACTIONS(170), - [anon_sym_SEMI_SEMI] = ACTIONS(170), - [anon_sym_PIPE_AMP] = ACTIONS(170), - [anon_sym_AMP_AMP] = ACTIONS(170), - [anon_sym_PIPE_PIPE] = ACTIONS(170), - [anon_sym_LT] = ACTIONS(170), - [anon_sym_GT] = ACTIONS(170), - [anon_sym_GT_GT] = ACTIONS(170), - [anon_sym_AMP_GT] = ACTIONS(170), - [anon_sym_AMP_GT_GT] = ACTIONS(170), - [anon_sym_LT_AMP] = ACTIONS(170), - [anon_sym_GT_AMP] = ACTIONS(170), - [anon_sym_LT_LT] = ACTIONS(170), - [anon_sym_LT_LT_DASH] = ACTIONS(170), - [anon_sym_DQUOTE] = ACTIONS(170), - [sym_raw_string] = ACTIONS(170), - [anon_sym_DOLLAR] = ACTIONS(170), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(170), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(170), - [anon_sym_LT_LPAREN] = ACTIONS(170), - [anon_sym_GT_LPAREN] = ACTIONS(170), - [sym_word] = ACTIONS(170), + [sym_file_descriptor] = ACTIONS(58), + [sym_word] = ACTIONS(58), + [anon_sym_PIPE] = ACTIONS(62), + [anon_sym_RPAREN] = ACTIONS(62), + [anon_sym_SEMI_SEMI] = ACTIONS(62), + [anon_sym_PIPE_AMP] = ACTIONS(62), + [anon_sym_AMP_AMP] = ACTIONS(62), + [anon_sym_PIPE_PIPE] = ACTIONS(62), + [anon_sym_LT] = ACTIONS(62), + [anon_sym_GT] = ACTIONS(62), + [anon_sym_GT_GT] = ACTIONS(62), + [anon_sym_AMP_GT] = ACTIONS(62), + [anon_sym_AMP_GT_GT] = ACTIONS(62), + [anon_sym_LT_AMP] = ACTIONS(62), + [anon_sym_GT_AMP] = ACTIONS(62), + [anon_sym_LT_LT] = ACTIONS(62), + [anon_sym_LT_LT_DASH] = ACTIONS(62), + [anon_sym_DQUOTE] = ACTIONS(62), + [sym_raw_string] = ACTIONS(62), + [anon_sym_DOLLAR] = ACTIONS(62), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(62), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(62), + [anon_sym_BQUOTE] = ACTIONS(62), + [anon_sym_LT_LPAREN] = ACTIONS(62), + [anon_sym_GT_LPAREN] = ACTIONS(62), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(170), - [anon_sym_LF] = ACTIONS(170), - [anon_sym_AMP] = ACTIONS(170), + [sym_identifier] = ACTIONS(62), + [anon_sym_SEMI] = ACTIONS(62), + [anon_sym_LF] = ACTIONS(62), + [anon_sym_AMP] = ACTIONS(62), }, [30] = { [sym__terminated_statement] = STATE(23), @@ -7827,1792 +6809,1749 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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(158), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(155), [aux_sym_command_repeat1] = STATE(31), [sym_file_descriptor] = ACTIONS(8), - [sym_variable_name] = ACTIONS(10), - [ts_builtin_sym_end] = ACTIONS(272), - [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), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [ts_builtin_sym_end] = ACTIONS(268), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), [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), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), }, [31] = { - [sym_command_name] = STATE(160), + [sym_command_name] = STATE(158), [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(161), + [sym_subscript] = STATE(159), [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(162), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_command_repeat1] = STATE(160), [sym_file_descriptor] = ACTIONS(8), - [sym_variable_name] = ACTIONS(274), - [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), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), [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(276), - [sym_comment] = ACTIONS(52), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(272), }, [32] = { - [sym_concatenation] = STATE(164), - [sym_string] = STATE(163), - [sym_simple_expansion] = STATE(163), - [sym_expansion] = STATE(163), - [sym_command_substitution] = STATE(163), - [sym_process_substitution] = STATE(163), - [anon_sym_DQUOTE] = ACTIONS(138), - [sym_raw_string] = ACTIONS(278), - [anon_sym_DOLLAR] = ACTIONS(142), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(144), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(146), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_LT_LPAREN] = ACTIONS(150), - [anon_sym_GT_LPAREN] = ACTIONS(150), - [sym_word] = ACTIONS(280), - [sym_comment] = ACTIONS(52), + [sym_concatenation] = STATE(163), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [sym_word] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(130), + [sym_raw_string] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(132), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(134), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(136), + [anon_sym_BQUOTE] = ACTIONS(138), + [anon_sym_LT_LPAREN] = ACTIONS(140), + [anon_sym_GT_LPAREN] = ACTIONS(140), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(276), }, [33] = { - [sym_concatenation] = STATE(172), - [sym_string] = STATE(166), - [sym_simple_expansion] = STATE(166), - [sym_expansion] = STATE(166), - [sym_command_substitution] = STATE(166), - [sym_process_substitution] = STATE(166), - [anon_sym_DQUOTE] = ACTIONS(282), - [sym_raw_string] = ACTIONS(284), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_word] = ACTIONS(296), - [sym_comment] = ACTIONS(52), + [sym_string] = STATE(164), + [sym_simple_expansion] = STATE(164), + [sym_expansion] = STATE(164), + [sym_command_substitution] = STATE(164), + [sym_process_substitution] = STATE(164), + [sym_word] = ACTIONS(278), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(278), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(280), }, [34] = { - [sym_concatenation] = STATE(173), + [aux_sym_concatenation_repeat1] = STATE(166), + [sym_file_descriptor] = ACTIONS(282), + [sym_word] = ACTIONS(282), + [sym__concat] = ACTIONS(60), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_SEMI_SEMI] = ACTIONS(284), + [anon_sym_PIPE_AMP] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_AMP_GT] = ACTIONS(284), + [anon_sym_AMP_GT_GT] = ACTIONS(284), + [anon_sym_LT_AMP] = ACTIONS(284), + [anon_sym_GT_AMP] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_LT_LT_DASH] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(284), + [sym_raw_string] = ACTIONS(284), + [anon_sym_DOLLAR] = ACTIONS(284), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(284), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(284), + [anon_sym_GT_LPAREN] = ACTIONS(284), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_LF] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(284), + }, + [35] = { + [sym_concatenation] = STATE(175), + [sym_string] = STATE(167), + [sym_simple_expansion] = STATE(167), + [sym_expansion] = STATE(167), + [sym_command_substitution] = STATE(167), + [sym_process_substitution] = STATE(167), + [sym_word] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(300), + }, + [36] = { + [sym_concatenation] = STATE(177), [sym_string] = STATE(176), - [sym_array] = STATE(173), + [sym_array] = STATE(177), [sym_simple_expansion] = STATE(176), [sym_expansion] = STATE(176), [sym_command_substitution] = STATE(176), [sym_process_substitution] = STATE(176), - [sym__empty_value] = ACTIONS(298), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(302), - [sym_raw_string] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(306), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(308), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(310), - [anon_sym_BQUOTE] = ACTIONS(312), - [anon_sym_LT_LPAREN] = ACTIONS(314), - [anon_sym_GT_LPAREN] = ACTIONS(314), - [sym_word] = ACTIONS(316), - [sym_comment] = ACTIONS(52), - }, - [35] = { - [sym_file_descriptor] = ACTIONS(318), - [sym_variable_name] = ACTIONS(318), - [anon_sym_PIPE] = ACTIONS(320), - [anon_sym_RPAREN] = ACTIONS(320), - [anon_sym_SEMI_SEMI] = ACTIONS(320), - [anon_sym_PIPE_AMP] = ACTIONS(320), - [anon_sym_AMP_AMP] = ACTIONS(320), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_LT] = ACTIONS(320), - [anon_sym_GT] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(320), - [anon_sym_AMP_GT] = ACTIONS(320), - [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(320), - [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(320), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(320), - [anon_sym_LF] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(320), - }, - [36] = { - [anon_sym_in] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_COLON] = ACTIONS(324), - [anon_sym_COLON_QMARK] = ACTIONS(322), - [anon_sym_COLON_DASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(302), + [sym__empty_value] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [sym_raw_string] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(310), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(312), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_LT_LPAREN] = ACTIONS(318), + [anon_sym_GT_LPAREN] = ACTIONS(318), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(320), }, [37] = { - [anon_sym_in] = ACTIONS(326), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(322), + [sym_word] = ACTIONS(322), + [sym_variable_name] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(324), + [anon_sym_RPAREN] = ACTIONS(324), + [anon_sym_SEMI_SEMI] = ACTIONS(324), + [anon_sym_PIPE_AMP] = ACTIONS(324), + [anon_sym_AMP_AMP] = ACTIONS(324), + [anon_sym_PIPE_PIPE] = ACTIONS(324), + [anon_sym_LT] = ACTIONS(324), + [anon_sym_GT] = ACTIONS(324), + [anon_sym_GT_GT] = ACTIONS(324), + [anon_sym_AMP_GT] = ACTIONS(324), + [anon_sym_AMP_GT_GT] = ACTIONS(324), + [anon_sym_LT_AMP] = ACTIONS(324), + [anon_sym_GT_AMP] = ACTIONS(324), + [anon_sym_DQUOTE] = ACTIONS(324), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(324), + [anon_sym_LT_LPAREN] = ACTIONS(324), + [anon_sym_GT_LPAREN] = ACTIONS(324), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(324), + [anon_sym_SEMI] = ACTIONS(324), + [anon_sym_LF] = ACTIONS(324), + [anon_sym_AMP] = ACTIONS(324), }, [38] = { - [anon_sym_in] = ACTIONS(328), - [sym_comment] = ACTIONS(52), + [anon_sym_in] = ACTIONS(326), + [sym_comment] = ACTIONS(50), }, [39] = { - [sym_do_group] = STATE(185), - [anon_sym_do] = ACTIONS(330), - [sym_comment] = ACTIONS(52), + [sym_do_group] = STATE(188), + [anon_sym_do] = ACTIONS(328), + [sym_comment] = ACTIONS(50), }, [40] = { - [anon_sym_PIPE] = ACTIONS(238), - [anon_sym_SEMI_SEMI] = ACTIONS(332), - [anon_sym_PIPE_AMP] = ACTIONS(238), - [anon_sym_AMP_AMP] = ACTIONS(242), - [anon_sym_PIPE_PIPE] = ACTIONS(242), + [anon_sym_PIPE] = ACTIONS(230), + [anon_sym_SEMI_SEMI] = ACTIONS(330), + [anon_sym_PIPE_AMP] = ACTIONS(230), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE_PIPE] = ACTIONS(234), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(332), - [anon_sym_LF] = ACTIONS(332), - [anon_sym_AMP] = ACTIONS(332), + [anon_sym_SEMI] = ACTIONS(330), + [anon_sym_LF] = ACTIONS(330), + [anon_sym_AMP] = ACTIONS(330), }, [41] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(238), - [anon_sym_SEMI_SEMI] = ACTIONS(332), - [anon_sym_PIPE_AMP] = ACTIONS(238), - [anon_sym_AMP_AMP] = ACTIONS(242), - [anon_sym_PIPE_PIPE] = ACTIONS(242), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_AMP_GT] = ACTIONS(268), - [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(268), - [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(268), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(332), - [anon_sym_LF] = ACTIONS(332), - [anon_sym_AMP] = ACTIONS(332), - }, - [42] = { - [anon_sym_then] = ACTIONS(334), - [sym_comment] = ACTIONS(52), - }, - [43] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(189), - [anon_sym_DQUOTE] = ACTIONS(336), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), - }, - [44] = { - [aux_sym_concatenation_repeat1] = STATE(193), - [sym__concat] = ACTIONS(338), - [anon_sym_in] = ACTIONS(340), - [anon_sym_SEMI_SEMI] = ACTIONS(342), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(342), - [anon_sym_LF] = ACTIONS(342), - [anon_sym_AMP] = ACTIONS(342), - }, - [45] = { - [sym_special_variable_name] = STATE(196), - [anon_sym_DASH] = ACTIONS(344), - [anon_sym_DOLLAR] = ACTIONS(344), - [anon_sym_POUND] = ACTIONS(344), - [anon_sym_AT] = ACTIONS(344), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(346), - [anon_sym_STAR] = ACTIONS(344), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_0] = ACTIONS(348), - [anon_sym__] = ACTIONS(348), - }, - [46] = { - [sym_special_variable_name] = STATE(199), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(350), - [anon_sym_AT] = ACTIONS(62), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), - }, - [47] = { - [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(129), - [sym_variable_assignment] = STATE(201), - [sym_declaration_command] = STATE(200), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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] = { - [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(140), - [sym_variable_assignment] = STATE(203), - [sym_declaration_command] = STATE(202), - [sym_subscript] = STATE(142), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(137), - [sym_simple_expansion] = STATE(137), - [sym_expansion] = STATE(137), - [sym_command_substitution] = STATE(137), - [sym_process_substitution] = STATE(137), - [aux_sym_command_repeat1] = STATE(143), - [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), - }, - [49] = { - [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(129), - [sym_variable_assignment] = STATE(205), - [sym_declaration_command] = STATE(204), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), - }, - [50] = { - [anon_sym_in] = ACTIONS(340), - [anon_sym_SEMI_SEMI] = ACTIONS(342), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(342), - [anon_sym_LF] = ACTIONS(342), - [anon_sym_AMP] = ACTIONS(342), - }, - [51] = { - [sym_compound_statement] = STATE(208), - [anon_sym_LPAREN] = ACTIONS(354), - [anon_sym_LBRACE] = ACTIONS(356), - [sym_comment] = ACTIONS(52), - }, - [52] = { - [sym__assignment] = STATE(35), - [anon_sym_LBRACK] = ACTIONS(58), - [anon_sym_EQ] = ACTIONS(358), - [anon_sym_PLUS_EQ] = ACTIONS(358), - [sym_comment] = ACTIONS(52), - }, - [53] = { - [sym_word] = ACTIONS(360), - [sym_comment] = ACTIONS(52), - }, - [54] = { - [sym_variable_assignment] = STATE(83), - [sym_subscript] = STATE(212), - [aux_sym_declaration_command_repeat1] = STATE(213), - [aux_sym_declaration_command_repeat2] = STATE(214), - [sym_variable_name] = ACTIONS(362), - [anon_sym_PIPE] = ACTIONS(132), - [anon_sym_RPAREN] = ACTIONS(132), - [anon_sym_SEMI_SEMI] = ACTIONS(132), - [anon_sym_PIPE_AMP] = ACTIONS(132), - [anon_sym_AMP_AMP] = ACTIONS(132), - [anon_sym_PIPE_PIPE] = ACTIONS(132), - [anon_sym_DASH] = ACTIONS(134), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(136), - [anon_sym_SEMI] = ACTIONS(132), - [anon_sym_LF] = ACTIONS(132), - [anon_sym_AMP] = ACTIONS(132), - }, - [55] = { - [aux_sym_concatenation_repeat1] = STATE(215), - [sym_file_descriptor] = ACTIONS(166), - [sym__concat] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(170), - [anon_sym_RPAREN] = ACTIONS(170), - [anon_sym_SEMI_SEMI] = ACTIONS(170), - [anon_sym_PIPE_AMP] = ACTIONS(170), - [anon_sym_AMP_AMP] = ACTIONS(170), - [anon_sym_PIPE_PIPE] = ACTIONS(170), - [anon_sym_LT] = ACTIONS(170), - [anon_sym_GT] = ACTIONS(170), - [anon_sym_GT_GT] = ACTIONS(170), - [anon_sym_AMP_GT] = ACTIONS(170), - [anon_sym_AMP_GT_GT] = ACTIONS(170), - [anon_sym_LT_AMP] = ACTIONS(170), - [anon_sym_GT_AMP] = ACTIONS(170), - [anon_sym_LT_LT] = ACTIONS(170), - [anon_sym_LT_LT_DASH] = ACTIONS(170), - [anon_sym_DQUOTE] = ACTIONS(170), - [sym_raw_string] = ACTIONS(170), - [anon_sym_DOLLAR] = ACTIONS(170), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(170), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(170), - [anon_sym_LT_LPAREN] = ACTIONS(170), - [anon_sym_GT_LPAREN] = ACTIONS(170), - [sym_word] = ACTIONS(170), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(170), - [anon_sym_LF] = ACTIONS(170), - [anon_sym_AMP] = ACTIONS(170), - }, - [56] = { - [aux_sym_concatenation_repeat1] = STATE(215), - [sym_file_descriptor] = ACTIONS(166), - [sym__concat] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(170), - [anon_sym_RPAREN] = ACTIONS(170), - [anon_sym_SEMI_SEMI] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_PIPE_AMP] = ACTIONS(170), - [anon_sym_AMP_AMP] = ACTIONS(170), - [anon_sym_PIPE_PIPE] = ACTIONS(170), - [anon_sym_LT] = ACTIONS(170), - [anon_sym_GT] = ACTIONS(170), - [anon_sym_GT_GT] = ACTIONS(170), - [anon_sym_AMP_GT] = ACTIONS(170), - [anon_sym_AMP_GT_GT] = ACTIONS(170), - [anon_sym_LT_AMP] = ACTIONS(170), - [anon_sym_GT_AMP] = ACTIONS(170), - [anon_sym_LT_LT] = ACTIONS(170), - [anon_sym_LT_LT_DASH] = ACTIONS(170), - [anon_sym_DQUOTE] = ACTIONS(170), - [sym_raw_string] = ACTIONS(170), - [anon_sym_DOLLAR] = ACTIONS(170), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(170), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(170), - [anon_sym_LT_LPAREN] = ACTIONS(170), - [anon_sym_GT_LPAREN] = ACTIONS(170), - [sym_word] = ACTIONS(170), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(170), - [anon_sym_LF] = ACTIONS(170), - [anon_sym_AMP] = ACTIONS(170), - }, - [57] = { - [anon_sym_PIPE] = ACTIONS(366), - [anon_sym_RPAREN] = ACTIONS(368), - [anon_sym_SEMI_SEMI] = ACTIONS(370), - [anon_sym_PIPE_AMP] = ACTIONS(366), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym_LF] = ACTIONS(370), - [anon_sym_AMP] = ACTIONS(370), - }, - [58] = { - [sym_file_redirect] = STATE(154), - [sym_heredoc_redirect] = STATE(154), - [sym_concatenation] = STATE(155), - [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(374), - [anon_sym_PIPE] = ACTIONS(246), - [anon_sym_RPAREN] = ACTIONS(246), - [anon_sym_SEMI_SEMI] = ACTIONS(246), - [anon_sym_PIPE_AMP] = ACTIONS(246), - [anon_sym_AMP_AMP] = ACTIONS(246), - [anon_sym_PIPE_PIPE] = ACTIONS(246), - [anon_sym_LT] = ACTIONS(376), - [anon_sym_GT] = ACTIONS(376), - [anon_sym_GT_GT] = ACTIONS(376), - [anon_sym_AMP_GT] = ACTIONS(376), - [anon_sym_AMP_GT_GT] = ACTIONS(376), - [anon_sym_LT_AMP] = ACTIONS(376), - [anon_sym_GT_AMP] = ACTIONS(376), - [anon_sym_LT_LT] = ACTIONS(250), - [anon_sym_LT_LT_DASH] = ACTIONS(250), - [anon_sym_DQUOTE] = ACTIONS(252), - [sym_raw_string] = ACTIONS(378), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(260), - [anon_sym_BQUOTE] = ACTIONS(262), + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(230), + [anon_sym_SEMI_SEMI] = ACTIONS(330), + [anon_sym_PIPE_AMP] = ACTIONS(230), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_GT_GT] = ACTIONS(264), + [anon_sym_AMP_GT] = ACTIONS(264), + [anon_sym_AMP_GT_GT] = ACTIONS(264), + [anon_sym_LT_AMP] = ACTIONS(264), + [anon_sym_GT_AMP] = ACTIONS(264), + [anon_sym_DQUOTE] = ACTIONS(264), + [sym_raw_string] = ACTIONS(264), + [anon_sym_DOLLAR] = ACTIONS(264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(264), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(264), + [anon_sym_BQUOTE] = ACTIONS(264), [anon_sym_LT_LPAREN] = ACTIONS(264), [anon_sym_GT_LPAREN] = ACTIONS(264), - [sym_word] = ACTIONS(378), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(246), - [anon_sym_LF] = ACTIONS(246), - [anon_sym_AMP] = ACTIONS(246), + [sym_identifier] = ACTIONS(264), + [anon_sym_SEMI] = ACTIONS(330), + [anon_sym_LF] = ACTIONS(330), + [anon_sym_AMP] = ACTIONS(330), + }, + [42] = { + [anon_sym_then] = ACTIONS(332), + [sym_comment] = ACTIONS(50), + }, + [43] = { + [aux_sym_concatenation_repeat1] = STATE(194), + [sym__concat] = ACTIONS(334), + [anon_sym_in] = ACTIONS(336), + [anon_sym_SEMI_SEMI] = ACTIONS(338), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(338), + [anon_sym_LF] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(338), + }, + [44] = { + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(196), + [anon_sym_DQUOTE] = ACTIONS(340), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_comment] = ACTIONS(64), + }, + [45] = { + [sym_special_variable_name] = STATE(199), + [anon_sym_DOLLAR] = ACTIONS(342), + [anon_sym_POUND] = ACTIONS(342), + [anon_sym_AT] = ACTIONS(342), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(344), + [anon_sym_STAR] = ACTIONS(342), + [anon_sym_QMARK] = ACTIONS(342), + [anon_sym_DASH] = ACTIONS(342), + [anon_sym_BANG] = ACTIONS(342), + [anon_sym_0] = ACTIONS(346), + [anon_sym__] = ACTIONS(346), + }, + [46] = { + [sym_special_variable_name] = STATE(202), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(348), + [anon_sym_AT] = ACTIONS(162), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(350), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + }, + [47] = { + [sym_for_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_case_statement] = STATE(203), + [sym_function_definition] = STATE(203), + [sym_subshell] = STATE(203), + [sym_pipeline] = STATE(203), + [sym_list] = STATE(203), + [sym_bracket_command] = STATE(203), + [sym_command] = STATE(203), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(204), + [sym_declaration_command] = STATE(203), + [sym_subscript] = STATE(126), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), + }, + [48] = { + [sym_for_statement] = STATE(205), + [sym_while_statement] = STATE(205), + [sym_if_statement] = STATE(205), + [sym_case_statement] = STATE(205), + [sym_function_definition] = STATE(205), + [sym_subshell] = STATE(205), + [sym_pipeline] = STATE(205), + [sym_list] = STATE(205), + [sym_bracket_command] = STATE(205), + [sym_command] = STATE(205), + [sym_command_name] = STATE(135), + [sym_variable_assignment] = STATE(206), + [sym_declaration_command] = STATE(205), + [sym_subscript] = STATE(137), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(129), + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [sym_process_substitution] = STATE(129), + [aux_sym_command_repeat1] = STATE(138), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(206), + [sym_variable_name] = ACTIONS(208), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(212), + [anon_sym_typeset] = ACTIONS(212), + [anon_sym_export] = ACTIONS(212), + [anon_sym_readonly] = ACTIONS(212), + [anon_sym_local] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(206), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(214), + }, + [49] = { + [sym_for_statement] = STATE(207), + [sym_while_statement] = STATE(207), + [sym_if_statement] = STATE(207), + [sym_case_statement] = STATE(207), + [sym_function_definition] = STATE(207), + [sym_subshell] = STATE(207), + [sym_pipeline] = STATE(207), + [sym_list] = STATE(207), + [sym_bracket_command] = STATE(207), + [sym_command] = STATE(207), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(208), + [sym_declaration_command] = STATE(207), + [sym_subscript] = STATE(126), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), + }, + [50] = { + [aux_sym_concatenation_repeat1] = STATE(211), + [sym__concat] = ACTIONS(334), + [anon_sym_in] = ACTIONS(352), + [anon_sym_SEMI_SEMI] = ACTIONS(354), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_LF] = ACTIONS(354), + [anon_sym_AMP] = ACTIONS(354), + }, + [51] = { + [anon_sym_in] = ACTIONS(336), + [anon_sym_SEMI_SEMI] = ACTIONS(338), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(338), + [anon_sym_LF] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(338), + }, + [52] = { + [sym_compound_statement] = STATE(214), + [anon_sym_LPAREN] = ACTIONS(356), + [anon_sym_LBRACE] = ACTIONS(358), + [sym_comment] = ACTIONS(50), + }, + [53] = { + [aux_sym_concatenation_repeat1] = STATE(215), + [sym_file_descriptor] = ACTIONS(58), + [sym_word] = ACTIONS(58), + [sym__concat] = ACTIONS(60), + [anon_sym_PIPE] = ACTIONS(62), + [anon_sym_RPAREN] = ACTIONS(62), + [anon_sym_SEMI_SEMI] = ACTIONS(62), + [anon_sym_PIPE_AMP] = ACTIONS(62), + [anon_sym_AMP_AMP] = ACTIONS(62), + [anon_sym_PIPE_PIPE] = ACTIONS(62), + [anon_sym_LT] = ACTIONS(62), + [anon_sym_GT] = ACTIONS(62), + [anon_sym_GT_GT] = ACTIONS(62), + [anon_sym_AMP_GT] = ACTIONS(62), + [anon_sym_AMP_GT_GT] = ACTIONS(62), + [anon_sym_LT_AMP] = ACTIONS(62), + [anon_sym_GT_AMP] = ACTIONS(62), + [anon_sym_LT_LT] = ACTIONS(62), + [anon_sym_LT_LT_DASH] = ACTIONS(62), + [anon_sym_DQUOTE] = ACTIONS(62), + [sym_raw_string] = ACTIONS(62), + [anon_sym_DOLLAR] = ACTIONS(62), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(62), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(62), + [anon_sym_BQUOTE] = ACTIONS(62), + [anon_sym_LT_LPAREN] = ACTIONS(62), + [anon_sym_GT_LPAREN] = ACTIONS(62), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(62), + [anon_sym_SEMI] = ACTIONS(62), + [anon_sym_LF] = ACTIONS(62), + [anon_sym_AMP] = ACTIONS(62), + }, + [54] = { + [sym__assignment] = STATE(37), + [anon_sym_LBRACK] = ACTIONS(66), + [anon_sym_EQ] = ACTIONS(360), + [anon_sym_PLUS_EQ] = ACTIONS(360), + [sym_comment] = ACTIONS(50), + }, + [55] = { + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(362), + }, + [56] = { + [sym_variable_assignment] = STATE(77), + [sym_subscript] = STATE(219), + [aux_sym_declaration_command_repeat1] = STATE(220), + [sym_word] = ACTIONS(120), + [sym_variable_name] = ACTIONS(364), + [anon_sym_PIPE] = ACTIONS(124), + [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_SEMI_SEMI] = ACTIONS(124), + [anon_sym_PIPE_AMP] = ACTIONS(124), + [anon_sym_AMP_AMP] = ACTIONS(124), + [anon_sym_PIPE_PIPE] = ACTIONS(124), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(126), + [anon_sym_SEMI] = ACTIONS(124), + [anon_sym_LF] = ACTIONS(124), + [anon_sym_AMP] = ACTIONS(124), + }, + [57] = { + [aux_sym_concatenation_repeat1] = STATE(222), + [sym_file_descriptor] = ACTIONS(216), + [sym_word] = ACTIONS(216), + [sym__concat] = ACTIONS(60), + [anon_sym_PIPE] = ACTIONS(218), + [anon_sym_RPAREN] = ACTIONS(218), + [anon_sym_SEMI_SEMI] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(366), + [anon_sym_PIPE_AMP] = ACTIONS(218), + [anon_sym_AMP_AMP] = ACTIONS(218), + [anon_sym_PIPE_PIPE] = ACTIONS(218), + [anon_sym_LT] = ACTIONS(218), + [anon_sym_GT] = ACTIONS(218), + [anon_sym_GT_GT] = ACTIONS(218), + [anon_sym_AMP_GT] = ACTIONS(218), + [anon_sym_AMP_GT_GT] = ACTIONS(218), + [anon_sym_LT_AMP] = ACTIONS(218), + [anon_sym_GT_AMP] = ACTIONS(218), + [anon_sym_LT_LT] = ACTIONS(218), + [anon_sym_LT_LT_DASH] = ACTIONS(218), + [anon_sym_DQUOTE] = ACTIONS(218), + [sym_raw_string] = ACTIONS(218), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(218), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(218), + [anon_sym_BQUOTE] = ACTIONS(218), + [anon_sym_LT_LPAREN] = ACTIONS(218), + [anon_sym_GT_LPAREN] = ACTIONS(218), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(218), + [anon_sym_SEMI] = ACTIONS(218), + [anon_sym_LF] = ACTIONS(218), + [anon_sym_AMP] = ACTIONS(218), + }, + [58] = { + [anon_sym_PIPE] = ACTIONS(368), + [anon_sym_RPAREN] = ACTIONS(370), + [anon_sym_SEMI_SEMI] = ACTIONS(372), + [anon_sym_PIPE_AMP] = ACTIONS(368), + [anon_sym_AMP_AMP] = ACTIONS(374), + [anon_sym_PIPE_PIPE] = ACTIONS(374), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(372), + [anon_sym_LF] = ACTIONS(372), + [anon_sym_AMP] = ACTIONS(372), }, [59] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(366), - [anon_sym_RPAREN] = ACTIONS(368), - [anon_sym_SEMI_SEMI] = ACTIONS(370), - [anon_sym_PIPE_AMP] = ACTIONS(366), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_AMP_GT] = ACTIONS(268), - [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(268), - [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(268), + [sym_file_redirect] = STATE(151), + [sym_heredoc_redirect] = STATE(151), + [sym_concatenation] = STATE(152), + [sym_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym_for_statement_repeat1] = STATE(231), + [aux_sym_command_repeat2] = STATE(232), + [sym_file_descriptor] = ACTIONS(376), + [sym_word] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(240), + [anon_sym_RPAREN] = ACTIONS(240), + [anon_sym_SEMI_SEMI] = ACTIONS(240), + [anon_sym_PIPE_AMP] = ACTIONS(240), + [anon_sym_AMP_AMP] = ACTIONS(240), + [anon_sym_PIPE_PIPE] = ACTIONS(240), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(380), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(380), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [anon_sym_LT_LT] = ACTIONS(244), + [anon_sym_LT_LT_DASH] = ACTIONS(244), + [anon_sym_DQUOTE] = ACTIONS(246), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(250), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), + [anon_sym_BQUOTE] = ACTIONS(256), + [anon_sym_LT_LPAREN] = ACTIONS(258), + [anon_sym_GT_LPAREN] = ACTIONS(258), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym_LF] = ACTIONS(370), - [anon_sym_AMP] = ACTIONS(370), + [sym_identifier] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(240), + [anon_sym_LF] = ACTIONS(240), + [anon_sym_AMP] = ACTIONS(240), }, [60] = { - [sym__assignment] = STATE(35), - [anon_sym_EQ] = ACTIONS(358), - [anon_sym_PLUS_EQ] = ACTIONS(358), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(368), + [anon_sym_RPAREN] = ACTIONS(370), + [anon_sym_SEMI_SEMI] = ACTIONS(372), + [anon_sym_PIPE_AMP] = ACTIONS(368), + [anon_sym_AMP_AMP] = ACTIONS(374), + [anon_sym_PIPE_PIPE] = ACTIONS(374), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_GT_GT] = ACTIONS(264), + [anon_sym_AMP_GT] = ACTIONS(264), + [anon_sym_AMP_GT_GT] = ACTIONS(264), + [anon_sym_LT_AMP] = ACTIONS(264), + [anon_sym_GT_AMP] = ACTIONS(264), + [anon_sym_DQUOTE] = ACTIONS(264), + [sym_raw_string] = ACTIONS(264), + [anon_sym_DOLLAR] = ACTIONS(264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(264), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(264), + [anon_sym_BQUOTE] = ACTIONS(264), + [anon_sym_LT_LPAREN] = ACTIONS(264), + [anon_sym_GT_LPAREN] = ACTIONS(264), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(264), + [anon_sym_SEMI] = ACTIONS(372), + [anon_sym_LF] = ACTIONS(372), + [anon_sym_AMP] = ACTIONS(372), }, [61] = { - [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(58), - [sym_variable_assignment] = STATE(227), - [sym_declaration_command] = STATE(226), - [sym_subscript] = STATE(60), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(29), - [sym_string] = STATE(55), - [sym_simple_expansion] = STATE(55), - [sym_expansion] = STATE(55), - [sym_command_substitution] = STATE(55), - [sym_process_substitution] = STATE(55), - [aux_sym_program_repeat1] = STATE(228), - [aux_sym_command_repeat1] = STATE(62), - [sym_file_descriptor] = ACTIONS(8), - [sym_variable_name] = ACTIONS(88), - [anon_sym_for] = ACTIONS(14), - [anon_sym_while] = ACTIONS(16), - [anon_sym_if] = ACTIONS(18), - [anon_sym_case] = ACTIONS(20), - [anon_sym_function] = ACTIONS(90), - [anon_sym_LPAREN] = ACTIONS(24), - [anon_sym_LBRACK] = ACTIONS(26), - [anon_sym_LBRACK_LBRACK] = ACTIONS(28), - [anon_sym_declare] = ACTIONS(92), - [anon_sym_typeset] = ACTIONS(92), - [anon_sym_export] = ACTIONS(92), - [anon_sym_readonly] = ACTIONS(92), - [anon_sym_local] = ACTIONS(92), - [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(94), - [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(96), - [sym_comment] = ACTIONS(52), + [sym__assignment] = STATE(37), + [anon_sym_EQ] = ACTIONS(360), + [anon_sym_PLUS_EQ] = ACTIONS(360), + [sym_comment] = ACTIONS(50), }, [62] = { - [sym_command_name] = STATE(229), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(161), + [sym__terminated_statement] = STATE(23), + [sym_for_statement] = STATE(233), + [sym_while_statement] = STATE(233), + [sym_if_statement] = STATE(233), + [sym_case_statement] = STATE(233), + [sym_function_definition] = STATE(233), + [sym_subshell] = STATE(233), + [sym_pipeline] = STATE(233), + [sym_list] = STATE(233), + [sym_bracket_command] = STATE(233), + [sym_command] = STATE(233), + [sym_command_name] = STATE(59), + [sym_variable_assignment] = STATE(234), + [sym_declaration_command] = STATE(233), + [sym_subscript] = STATE(61), [sym_file_redirect] = STATE(28), [sym_concatenation] = STATE(29), - [sym_string] = STATE(55), - [sym_simple_expansion] = STATE(55), - [sym_expansion] = STATE(55), - [sym_command_substitution] = STATE(55), - [sym_process_substitution] = STATE(55), - [aux_sym_command_repeat1] = STATE(162), + [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(235), + [aux_sym_command_repeat1] = STATE(63), [sym_file_descriptor] = ACTIONS(8), - [sym_variable_name] = ACTIONS(274), - [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(94), + [sym_word] = ACTIONS(90), + [sym_variable_name] = ACTIONS(92), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(94), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(96), + [anon_sym_typeset] = ACTIONS(96), + [anon_sym_export] = ACTIONS(96), + [anon_sym_readonly] = ACTIONS(96), + [anon_sym_local] = ACTIONS(96), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(90), [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(380), - [sym_comment] = ACTIONS(52), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(98), }, [63] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(231), - [anon_sym_DQUOTE] = ACTIONS(382), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), + [sym_command_name] = STATE(237), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(159), + [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(160), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(90), + [sym_variable_name] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(90), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(386), }, [64] = { - [aux_sym_concatenation_repeat1] = STATE(233), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACK] = ACTIONS(386), + [aux_sym_concatenation_repeat1] = STATE(239), + [sym_word] = ACTIONS(388), + [sym__concat] = ACTIONS(390), + [anon_sym_RBRACK] = ACTIONS(388), [anon_sym_DQUOTE] = ACTIONS(388), [sym_raw_string] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(386), + [anon_sym_DOLLAR] = ACTIONS(392), [anon_sym_DOLLAR_LBRACE] = ACTIONS(388), [anon_sym_DOLLAR_LPAREN] = ACTIONS(388), [anon_sym_BQUOTE] = ACTIONS(388), [anon_sym_LT_LPAREN] = ACTIONS(388), [anon_sym_GT_LPAREN] = ACTIONS(388), - [sym_word] = ACTIONS(390), - [sym_comment] = ACTIONS(52), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(392), }, [65] = { - [sym_special_variable_name] = STATE(236), - [anon_sym_DASH] = ACTIONS(392), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(241), + [anon_sym_DQUOTE] = ACTIONS(394), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_0] = ACTIONS(396), - [anon_sym__] = ACTIONS(396), }, [66] = { - [sym_special_variable_name] = STATE(239), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(398), - [anon_sym_AT] = ACTIONS(62), + [sym_special_variable_name] = STATE(244), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(396), [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), + [sym_identifier] = ACTIONS(398), + [anon_sym_STAR] = ACTIONS(396), + [anon_sym_QMARK] = ACTIONS(396), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_0] = ACTIONS(400), + [anon_sym__] = ACTIONS(400), }, [67] = { - [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(129), - [sym_variable_assignment] = STATE(241), - [sym_declaration_command] = STATE(240), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), + [sym_special_variable_name] = STATE(247), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(162), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), }, [68] = { - [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(140), - [sym_variable_assignment] = STATE(243), - [sym_declaration_command] = STATE(242), - [sym_subscript] = STATE(142), + [sym_for_statement] = STATE(248), + [sym_while_statement] = STATE(248), + [sym_if_statement] = STATE(248), + [sym_case_statement] = STATE(248), + [sym_function_definition] = STATE(248), + [sym_subshell] = STATE(248), + [sym_pipeline] = STATE(248), + [sym_list] = STATE(248), + [sym_bracket_command] = STATE(248), + [sym_command] = STATE(248), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(249), + [sym_declaration_command] = STATE(248), + [sym_subscript] = STATE(126), [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(137), - [sym_simple_expansion] = STATE(137), - [sym_expansion] = STATE(137), - [sym_command_substitution] = STATE(137), - [sym_process_substitution] = STATE(137), - [aux_sym_command_repeat1] = STATE(143), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), [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), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), }, [69] = { - [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(129), - [sym_variable_assignment] = STATE(245), - [sym_declaration_command] = STATE(244), - [sym_subscript] = STATE(131), + [sym_for_statement] = STATE(250), + [sym_while_statement] = STATE(250), + [sym_if_statement] = STATE(250), + [sym_case_statement] = STATE(250), + [sym_function_definition] = STATE(250), + [sym_subshell] = STATE(250), + [sym_pipeline] = STATE(250), + [sym_list] = STATE(250), + [sym_bracket_command] = STATE(250), + [sym_command] = STATE(250), + [sym_command_name] = STATE(135), + [sym_variable_assignment] = STATE(251), + [sym_declaration_command] = STATE(250), + [sym_subscript] = STATE(137), [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(129), + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [sym_process_substitution] = STATE(129), + [aux_sym_command_repeat1] = STATE(138), [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), + [sym_word] = ACTIONS(206), + [sym_variable_name] = ACTIONS(208), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(212), + [anon_sym_typeset] = ACTIONS(212), + [anon_sym_export] = ACTIONS(212), + [anon_sym_readonly] = ACTIONS(212), + [anon_sym_local] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(206), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(214), }, [70] = { - [anon_sym_RBRACK] = ACTIONS(386), + [sym_for_statement] = STATE(252), + [sym_while_statement] = STATE(252), + [sym_if_statement] = STATE(252), + [sym_case_statement] = STATE(252), + [sym_function_definition] = STATE(252), + [sym_subshell] = STATE(252), + [sym_pipeline] = STATE(252), + [sym_list] = STATE(252), + [sym_bracket_command] = STATE(252), + [sym_command] = STATE(252), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(253), + [sym_declaration_command] = STATE(252), + [sym_subscript] = STATE(126), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), + }, + [71] = { + [aux_sym_concatenation_repeat1] = STATE(254), + [sym_word] = ACTIONS(406), + [sym__concat] = ACTIONS(390), + [anon_sym_RBRACK] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(406), + [sym_raw_string] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(408), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(406), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(406), + [anon_sym_BQUOTE] = ACTIONS(406), + [anon_sym_LT_LPAREN] = ACTIONS(406), + [anon_sym_GT_LPAREN] = ACTIONS(406), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(408), + }, + [72] = { + [sym_word] = ACTIONS(388), + [anon_sym_RPAREN] = ACTIONS(388), + [anon_sym_RBRACK] = ACTIONS(392), + [anon_sym_RBRACK_RBRACK] = ACTIONS(388), [anon_sym_DQUOTE] = ACTIONS(388), [sym_raw_string] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(386), + [anon_sym_DOLLAR] = ACTIONS(392), [anon_sym_DOLLAR_LBRACE] = ACTIONS(388), [anon_sym_DOLLAR_LPAREN] = ACTIONS(388), [anon_sym_BQUOTE] = ACTIONS(388), [anon_sym_LT_LPAREN] = ACTIONS(388), [anon_sym_GT_LPAREN] = ACTIONS(388), - [sym_word] = ACTIONS(390), - [sym_comment] = ACTIONS(52), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(392), }, - [71] = { - [sym_concatenation] = STATE(70), + [73] = { + [sym_concatenation] = STATE(72), [sym_string] = STATE(64), [sym_simple_expansion] = STATE(64), [sym_expansion] = STATE(64), [sym_command_substitution] = STATE(64), [sym_process_substitution] = STATE(64), - [aux_sym_for_statement_repeat1] = STATE(247), - [anon_sym_RBRACK] = ACTIONS(402), - [anon_sym_DQUOTE] = ACTIONS(98), + [aux_sym_for_statement_repeat1] = STATE(256), + [sym_word] = ACTIONS(100), + [anon_sym_RBRACK] = ACTIONS(410), + [anon_sym_DQUOTE] = ACTIONS(102), [sym_raw_string] = ACTIONS(100), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(404), - [sym_comment] = ACTIONS(52), - }, - [72] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(249), - [anon_sym_DQUOTE] = ACTIONS(406), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), - }, - [73] = { - [aux_sym_concatenation_repeat1] = STATE(251), - [sym__concat] = ACTIONS(408), - [anon_sym_RBRACK_RBRACK] = ACTIONS(386), - [anon_sym_DQUOTE] = ACTIONS(388), - [sym_raw_string] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(386), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(388), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(388), - [anon_sym_BQUOTE] = ACTIONS(388), - [anon_sym_LT_LPAREN] = ACTIONS(388), - [anon_sym_GT_LPAREN] = ACTIONS(388), - [sym_word] = ACTIONS(390), - [sym_comment] = ACTIONS(52), + [anon_sym_DOLLAR] = ACTIONS(104), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(108), + [anon_sym_BQUOTE] = ACTIONS(110), + [anon_sym_LT_LPAREN] = ACTIONS(112), + [anon_sym_GT_LPAREN] = ACTIONS(112), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(114), }, [74] = { - [sym_special_variable_name] = STATE(254), - [anon_sym_DASH] = ACTIONS(410), - [anon_sym_DOLLAR] = ACTIONS(410), - [anon_sym_POUND] = ACTIONS(410), - [anon_sym_AT] = ACTIONS(410), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(410), - [anon_sym_QMARK] = ACTIONS(410), - [anon_sym_BANG] = ACTIONS(410), - [anon_sym_0] = ACTIONS(414), - [anon_sym__] = ACTIONS(414), - }, - [75] = { - [sym_special_variable_name] = STATE(257), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(416), - [anon_sym_AT] = ACTIONS(62), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(418), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), - }, - [76] = { - [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(129), - [sym_variable_assignment] = STATE(259), - [sym_declaration_command] = STATE(258), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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] = { - [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(140), - [sym_variable_assignment] = STATE(261), - [sym_declaration_command] = STATE(260), - [sym_subscript] = STATE(142), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(137), - [sym_simple_expansion] = STATE(137), - [sym_expansion] = STATE(137), - [sym_command_substitution] = STATE(137), - [sym_process_substitution] = STATE(137), - [aux_sym_command_repeat1] = STATE(143), - [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), - }, - [78] = { - [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(129), - [sym_variable_assignment] = STATE(263), - [sym_declaration_command] = STATE(262), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), - }, - [79] = { - [anon_sym_RBRACK_RBRACK] = ACTIONS(386), + [aux_sym_concatenation_repeat1] = STATE(257), + [sym_word] = ACTIONS(388), + [sym__concat] = ACTIONS(390), + [anon_sym_RBRACK_RBRACK] = ACTIONS(388), [anon_sym_DQUOTE] = ACTIONS(388), [sym_raw_string] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(386), + [anon_sym_DOLLAR] = ACTIONS(392), [anon_sym_DOLLAR_LBRACE] = ACTIONS(388), [anon_sym_DOLLAR_LPAREN] = ACTIONS(388), [anon_sym_BQUOTE] = ACTIONS(388), [anon_sym_LT_LPAREN] = ACTIONS(388), [anon_sym_GT_LPAREN] = ACTIONS(388), - [sym_word] = ACTIONS(390), - [sym_comment] = ACTIONS(52), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(392), + }, + [75] = { + [aux_sym_concatenation_repeat1] = STATE(258), + [sym_word] = ACTIONS(406), + [sym__concat] = ACTIONS(390), + [anon_sym_RBRACK_RBRACK] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(406), + [sym_raw_string] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(408), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(406), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(406), + [anon_sym_BQUOTE] = ACTIONS(406), + [anon_sym_LT_LPAREN] = ACTIONS(406), + [anon_sym_GT_LPAREN] = ACTIONS(406), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(408), + }, + [76] = { + [sym_concatenation] = STATE(72), + [sym_string] = STATE(74), + [sym_simple_expansion] = STATE(74), + [sym_expansion] = STATE(74), + [sym_command_substitution] = STATE(74), + [sym_process_substitution] = STATE(74), + [aux_sym_for_statement_repeat1] = STATE(259), + [sym_word] = ACTIONS(116), + [anon_sym_RBRACK_RBRACK] = ACTIONS(410), + [anon_sym_DQUOTE] = ACTIONS(102), + [sym_raw_string] = ACTIONS(116), + [anon_sym_DOLLAR] = ACTIONS(104), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(108), + [anon_sym_BQUOTE] = ACTIONS(110), + [anon_sym_LT_LPAREN] = ACTIONS(112), + [anon_sym_GT_LPAREN] = ACTIONS(112), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(118), + }, + [77] = { + [sym_word] = ACTIONS(412), + [sym_variable_name] = ACTIONS(412), + [anon_sym_PIPE] = ACTIONS(414), + [anon_sym_RPAREN] = ACTIONS(414), + [anon_sym_SEMI_SEMI] = ACTIONS(414), + [anon_sym_PIPE_AMP] = ACTIONS(414), + [anon_sym_AMP_AMP] = ACTIONS(414), + [anon_sym_PIPE_PIPE] = ACTIONS(414), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(414), + [anon_sym_SEMI] = ACTIONS(414), + [anon_sym_LF] = ACTIONS(414), + [anon_sym_AMP] = ACTIONS(414), + }, + [78] = { + [sym__assignment] = STATE(261), + [anon_sym_LBRACK] = ACTIONS(66), + [anon_sym_EQ] = ACTIONS(416), + [anon_sym_PLUS_EQ] = ACTIONS(416), + [sym_comment] = ACTIONS(50), + }, + [79] = { + [sym_word] = ACTIONS(418), + [sym_variable_name] = ACTIONS(418), + [anon_sym_PIPE] = ACTIONS(420), + [anon_sym_RPAREN] = ACTIONS(420), + [anon_sym_SEMI_SEMI] = ACTIONS(420), + [anon_sym_PIPE_AMP] = ACTIONS(420), + [anon_sym_AMP_AMP] = ACTIONS(420), + [anon_sym_PIPE_PIPE] = ACTIONS(420), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(420), + [anon_sym_SEMI] = ACTIONS(420), + [anon_sym_LF] = ACTIONS(420), + [anon_sym_AMP] = ACTIONS(420), }, [80] = { - [sym_concatenation] = STATE(79), - [sym_string] = STATE(73), - [sym_simple_expansion] = STATE(73), - [sym_expansion] = STATE(73), - [sym_command_substitution] = STATE(73), - [sym_process_substitution] = STATE(73), - [aux_sym_for_statement_repeat1] = STATE(264), - [anon_sym_RBRACK_RBRACK] = ACTIONS(402), - [anon_sym_DQUOTE] = ACTIONS(114), - [sym_raw_string] = ACTIONS(116), - [anon_sym_DOLLAR] = ACTIONS(118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(122), - [anon_sym_BQUOTE] = ACTIONS(124), - [anon_sym_LT_LPAREN] = ACTIONS(126), - [anon_sym_GT_LPAREN] = ACTIONS(126), - [sym_word] = ACTIONS(420), - [sym_comment] = ACTIONS(52), + [sym__assignment] = STATE(261), + [anon_sym_EQ] = ACTIONS(416), + [anon_sym_PLUS_EQ] = ACTIONS(416), + [sym_comment] = ACTIONS(50), }, [81] = { - [sym__assignment] = STATE(266), - [anon_sym_LBRACK] = ACTIONS(58), - [anon_sym_EQ] = ACTIONS(422), - [anon_sym_PLUS_EQ] = ACTIONS(422), - [sym_comment] = ACTIONS(52), + [sym_variable_assignment] = STATE(77), + [sym_subscript] = STATE(80), + [aux_sym_declaration_command_repeat1] = STATE(262), + [sym_word] = ACTIONS(120), + [sym_variable_name] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(422), + [anon_sym_SEMI_SEMI] = ACTIONS(422), + [anon_sym_PIPE_AMP] = ACTIONS(422), + [anon_sym_AMP_AMP] = ACTIONS(422), + [anon_sym_PIPE_PIPE] = ACTIONS(422), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(126), + [anon_sym_SEMI] = ACTIONS(422), + [anon_sym_LF] = ACTIONS(422), + [anon_sym_AMP] = ACTIONS(422), }, [82] = { + [aux_sym_concatenation_repeat1] = STATE(264), + [sym_file_descriptor] = ACTIONS(424), [sym_word] = ACTIONS(424), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(426), + [sym_variable_name] = ACTIONS(424), + [anon_sym_LT] = ACTIONS(428), + [anon_sym_GT] = ACTIONS(428), + [anon_sym_GT_GT] = ACTIONS(424), + [anon_sym_AMP_GT] = ACTIONS(428), + [anon_sym_AMP_GT_GT] = ACTIONS(424), + [anon_sym_LT_AMP] = ACTIONS(424), + [anon_sym_GT_AMP] = ACTIONS(424), + [anon_sym_DQUOTE] = ACTIONS(424), + [sym_raw_string] = ACTIONS(424), + [anon_sym_DOLLAR] = ACTIONS(428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(424), + [anon_sym_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(424), + [anon_sym_GT_LPAREN] = ACTIONS(424), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(428), }, [83] = { - [sym_variable_name] = ACTIONS(426), - [anon_sym_PIPE] = ACTIONS(428), - [anon_sym_RPAREN] = ACTIONS(428), - [anon_sym_SEMI_SEMI] = ACTIONS(428), - [anon_sym_PIPE_AMP] = ACTIONS(428), - [anon_sym_AMP_AMP] = ACTIONS(428), - [anon_sym_PIPE_PIPE] = ACTIONS(428), + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(266), + [anon_sym_DQUOTE] = ACTIONS(430), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(428), - [anon_sym_SEMI] = ACTIONS(428), - [anon_sym_LF] = ACTIONS(428), - [anon_sym_AMP] = ACTIONS(428), }, [84] = { - [sym__assignment] = STATE(266), - [anon_sym_EQ] = ACTIONS(422), - [anon_sym_PLUS_EQ] = ACTIONS(422), - [sym_comment] = ACTIONS(52), + [sym_special_variable_name] = STATE(269), + [anon_sym_DOLLAR] = ACTIONS(432), + [anon_sym_POUND] = ACTIONS(432), + [anon_sym_AT] = ACTIONS(432), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(434), + [anon_sym_STAR] = ACTIONS(432), + [anon_sym_QMARK] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(432), + [anon_sym_0] = ACTIONS(436), + [anon_sym__] = ACTIONS(436), }, [85] = { - [sym_variable_assignment] = STATE(83), - [sym_subscript] = STATE(84), - [aux_sym_declaration_command_repeat1] = STATE(268), - [aux_sym_declaration_command_repeat2] = STATE(269), - [sym_variable_name] = ACTIONS(130), - [anon_sym_PIPE] = ACTIONS(430), - [anon_sym_SEMI_SEMI] = ACTIONS(430), - [anon_sym_PIPE_AMP] = ACTIONS(430), - [anon_sym_AMP_AMP] = ACTIONS(430), - [anon_sym_PIPE_PIPE] = ACTIONS(430), - [anon_sym_DASH] = ACTIONS(134), + [sym_special_variable_name] = STATE(272), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(438), + [anon_sym_AT] = ACTIONS(162), [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(136), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_LF] = ACTIONS(430), - [anon_sym_AMP] = ACTIONS(430), + [sym_identifier] = ACTIONS(440), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), }, [86] = { - [sym_variable_assignment] = STATE(83), - [sym_subscript] = STATE(84), - [aux_sym_declaration_command_repeat2] = STATE(270), - [sym_variable_name] = ACTIONS(130), - [anon_sym_PIPE] = ACTIONS(430), - [anon_sym_SEMI_SEMI] = ACTIONS(430), - [anon_sym_PIPE_AMP] = ACTIONS(430), - [anon_sym_AMP_AMP] = ACTIONS(430), - [anon_sym_PIPE_PIPE] = ACTIONS(430), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(136), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_LF] = ACTIONS(430), - [anon_sym_AMP] = ACTIONS(430), + [sym_for_statement] = STATE(273), + [sym_while_statement] = STATE(273), + [sym_if_statement] = STATE(273), + [sym_case_statement] = STATE(273), + [sym_function_definition] = STATE(273), + [sym_subshell] = STATE(273), + [sym_pipeline] = STATE(273), + [sym_list] = STATE(273), + [sym_bracket_command] = STATE(273), + [sym_command] = STATE(273), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(274), + [sym_declaration_command] = STATE(273), + [sym_subscript] = STATE(126), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), }, [87] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(272), - [anon_sym_DQUOTE] = ACTIONS(432), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), + [sym_for_statement] = STATE(275), + [sym_while_statement] = STATE(275), + [sym_if_statement] = STATE(275), + [sym_case_statement] = STATE(275), + [sym_function_definition] = STATE(275), + [sym_subshell] = STATE(275), + [sym_pipeline] = STATE(275), + [sym_list] = STATE(275), + [sym_bracket_command] = STATE(275), + [sym_command] = STATE(275), + [sym_command_name] = STATE(135), + [sym_variable_assignment] = STATE(276), + [sym_declaration_command] = STATE(275), + [sym_subscript] = STATE(137), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(129), + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [sym_process_substitution] = STATE(129), + [aux_sym_command_repeat1] = STATE(138), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(206), + [sym_variable_name] = ACTIONS(208), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(212), + [anon_sym_typeset] = ACTIONS(212), + [anon_sym_export] = ACTIONS(212), + [anon_sym_readonly] = ACTIONS(212), + [anon_sym_local] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(206), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(214), }, [88] = { - [aux_sym_concatenation_repeat1] = STATE(274), - [sym_file_descriptor] = ACTIONS(434), - [sym__concat] = ACTIONS(436), - [sym_variable_name] = ACTIONS(434), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_GT] = ACTIONS(438), - [anon_sym_GT_GT] = ACTIONS(434), - [anon_sym_AMP_GT] = ACTIONS(438), - [anon_sym_AMP_GT_GT] = ACTIONS(434), - [anon_sym_LT_AMP] = ACTIONS(434), - [anon_sym_GT_AMP] = ACTIONS(434), - [anon_sym_DQUOTE] = ACTIONS(434), - [sym_raw_string] = ACTIONS(434), - [anon_sym_DOLLAR] = ACTIONS(438), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(434), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(434), - [anon_sym_BQUOTE] = ACTIONS(434), - [anon_sym_LT_LPAREN] = ACTIONS(434), - [anon_sym_GT_LPAREN] = ACTIONS(434), - [sym_word] = ACTIONS(438), - [sym_comment] = ACTIONS(52), + [sym_for_statement] = STATE(277), + [sym_while_statement] = STATE(277), + [sym_if_statement] = STATE(277), + [sym_case_statement] = STATE(277), + [sym_function_definition] = STATE(277), + [sym_subshell] = STATE(277), + [sym_pipeline] = STATE(277), + [sym_list] = STATE(277), + [sym_bracket_command] = STATE(277), + [sym_command] = STATE(277), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(278), + [sym_declaration_command] = STATE(277), + [sym_subscript] = STATE(126), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), }, [89] = { - [sym_special_variable_name] = STATE(277), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_DOLLAR] = ACTIONS(440), - [anon_sym_POUND] = ACTIONS(440), - [anon_sym_AT] = ACTIONS(440), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(440), - [anon_sym_QMARK] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(440), - [anon_sym_0] = ACTIONS(444), - [anon_sym__] = ACTIONS(444), + [aux_sym_concatenation_repeat1] = STATE(279), + [sym_file_descriptor] = ACTIONS(442), + [sym_word] = ACTIONS(442), + [sym__concat] = ACTIONS(426), + [sym_variable_name] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_GT] = ACTIONS(444), + [anon_sym_GT_GT] = ACTIONS(442), + [anon_sym_AMP_GT] = ACTIONS(444), + [anon_sym_AMP_GT_GT] = ACTIONS(442), + [anon_sym_LT_AMP] = ACTIONS(442), + [anon_sym_GT_AMP] = ACTIONS(442), + [anon_sym_DQUOTE] = ACTIONS(442), + [sym_raw_string] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(444), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(442), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(442), + [anon_sym_BQUOTE] = ACTIONS(442), + [anon_sym_LT_LPAREN] = ACTIONS(442), + [anon_sym_GT_LPAREN] = ACTIONS(442), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(444), }, [90] = { - [sym_special_variable_name] = STATE(280), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(446), - [anon_sym_AT] = ACTIONS(62), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(448), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), + [sym_file_descriptor] = ACTIONS(424), + [sym_word] = ACTIONS(424), + [sym_variable_name] = ACTIONS(424), + [anon_sym_LT] = ACTIONS(428), + [anon_sym_GT] = ACTIONS(428), + [anon_sym_GT_GT] = ACTIONS(424), + [anon_sym_AMP_GT] = ACTIONS(428), + [anon_sym_AMP_GT_GT] = ACTIONS(424), + [anon_sym_LT_AMP] = ACTIONS(424), + [anon_sym_GT_AMP] = ACTIONS(424), + [anon_sym_DQUOTE] = ACTIONS(424), + [sym_raw_string] = ACTIONS(424), + [anon_sym_DOLLAR] = ACTIONS(428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(424), + [anon_sym_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(424), + [anon_sym_GT_LPAREN] = ACTIONS(424), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(428), }, [91] = { - [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(129), - [sym_variable_assignment] = STATE(282), - [sym_declaration_command] = STATE(281), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), + [sym_file_descriptor] = ACTIONS(446), + [sym_word] = 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_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(448), + [anon_sym_SEMI] = ACTIONS(448), + [anon_sym_LF] = ACTIONS(448), + [anon_sym_AMP] = ACTIONS(448), }, [92] = { - [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(140), - [sym_variable_assignment] = STATE(284), - [sym_declaration_command] = STATE(283), - [sym_subscript] = STATE(142), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(137), - [sym_simple_expansion] = STATE(137), - [sym_expansion] = STATE(137), - [sym_command_substitution] = STATE(137), - [sym_process_substitution] = STATE(137), - [aux_sym_command_repeat1] = STATE(143), - [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), + [anon_sym_DQUOTE] = ACTIONS(450), + [sym__string_content] = 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(64), }, [93] = { - [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(129), - [sym_variable_assignment] = STATE(286), - [sym_declaration_command] = STATE(285), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), + [sym_special_variable_name] = STATE(282), + [anon_sym_DOLLAR] = ACTIONS(454), + [anon_sym_POUND] = ACTIONS(454), + [anon_sym_AT] = ACTIONS(454), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(456), + [anon_sym_STAR] = ACTIONS(454), + [anon_sym_QMARK] = ACTIONS(454), + [anon_sym_DASH] = ACTIONS(454), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_0] = ACTIONS(458), + [anon_sym__] = ACTIONS(458), }, [94] = { - [sym_file_descriptor] = ACTIONS(434), - [sym_variable_name] = ACTIONS(434), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_GT] = ACTIONS(438), - [anon_sym_GT_GT] = ACTIONS(434), - [anon_sym_AMP_GT] = ACTIONS(438), - [anon_sym_AMP_GT_GT] = ACTIONS(434), - [anon_sym_LT_AMP] = ACTIONS(434), - [anon_sym_GT_AMP] = ACTIONS(434), - [anon_sym_DQUOTE] = ACTIONS(434), - [sym_raw_string] = ACTIONS(434), - [anon_sym_DOLLAR] = ACTIONS(438), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(434), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(434), - [anon_sym_BQUOTE] = ACTIONS(434), - [anon_sym_LT_LPAREN] = ACTIONS(434), - [anon_sym_GT_LPAREN] = ACTIONS(434), - [sym_word] = ACTIONS(438), - [sym_comment] = ACTIONS(52), + [sym_special_variable_name] = STATE(285), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(460), + [anon_sym_AT] = ACTIONS(162), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(462), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), }, [95] = { - [sym_file_descriptor] = ACTIONS(450), - [sym__concat] = ACTIONS(450), - [anon_sym_PIPE] = ACTIONS(452), - [anon_sym_RPAREN] = ACTIONS(452), - [anon_sym_SEMI_SEMI] = ACTIONS(452), - [anon_sym_PIPE_AMP] = ACTIONS(452), - [anon_sym_AMP_AMP] = ACTIONS(452), - [anon_sym_PIPE_PIPE] = ACTIONS(452), - [anon_sym_LT] = ACTIONS(452), - [anon_sym_GT] = ACTIONS(452), - [anon_sym_GT_GT] = ACTIONS(452), - [anon_sym_AMP_GT] = ACTIONS(452), - [anon_sym_AMP_GT_GT] = ACTIONS(452), - [anon_sym_LT_AMP] = ACTIONS(452), - [anon_sym_GT_AMP] = ACTIONS(452), - [anon_sym_LT_LT] = ACTIONS(452), - [anon_sym_LT_LT_DASH] = ACTIONS(452), - [anon_sym_DQUOTE] = ACTIONS(452), - [sym_raw_string] = ACTIONS(452), - [anon_sym_DOLLAR] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(452), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(452), - [anon_sym_BQUOTE] = ACTIONS(452), - [anon_sym_LT_LPAREN] = ACTIONS(452), - [anon_sym_GT_LPAREN] = ACTIONS(452), - [sym_word] = ACTIONS(452), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(452), - [anon_sym_LF] = ACTIONS(452), - [anon_sym_AMP] = ACTIONS(452), + [sym_for_statement] = STATE(286), + [sym_while_statement] = STATE(286), + [sym_if_statement] = STATE(286), + [sym_case_statement] = STATE(286), + [sym_function_definition] = STATE(286), + [sym_subshell] = STATE(286), + [sym_pipeline] = STATE(286), + [sym_list] = STATE(286), + [sym_bracket_command] = STATE(286), + [sym_command] = STATE(286), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(287), + [sym_declaration_command] = STATE(286), + [sym_subscript] = STATE(126), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), }, [96] = { - [anon_sym_DQUOTE] = ACTIONS(454), - [sym__string_content] = ACTIONS(456), - [anon_sym_DOLLAR] = ACTIONS(454), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(454), - [anon_sym_BQUOTE] = ACTIONS(454), - [sym_comment] = ACTIONS(64), + [sym_for_statement] = STATE(288), + [sym_while_statement] = STATE(288), + [sym_if_statement] = STATE(288), + [sym_case_statement] = STATE(288), + [sym_function_definition] = STATE(288), + [sym_subshell] = STATE(288), + [sym_pipeline] = STATE(288), + [sym_list] = STATE(288), + [sym_bracket_command] = STATE(288), + [sym_command] = STATE(288), + [sym_command_name] = STATE(135), + [sym_variable_assignment] = STATE(289), + [sym_declaration_command] = STATE(288), + [sym_subscript] = STATE(137), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(129), + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [sym_process_substitution] = STATE(129), + [aux_sym_command_repeat1] = STATE(138), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(206), + [sym_variable_name] = ACTIONS(208), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(212), + [anon_sym_typeset] = ACTIONS(212), + [anon_sym_export] = ACTIONS(212), + [anon_sym_readonly] = ACTIONS(212), + [anon_sym_local] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(206), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(214), }, [97] = { - [sym_special_variable_name] = STATE(289), - [anon_sym_DASH] = ACTIONS(458), - [anon_sym_DOLLAR] = ACTIONS(458), - [anon_sym_POUND] = ACTIONS(458), - [anon_sym_AT] = ACTIONS(458), + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(291), + [anon_sym_DQUOTE] = ACTIONS(464), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(460), - [anon_sym_STAR] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(458), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_0] = ACTIONS(462), - [anon_sym__] = ACTIONS(462), }, [98] = { - [sym_special_variable_name] = STATE(292), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(464), - [anon_sym_AT] = ACTIONS(62), + [sym_file_descriptor] = ACTIONS(466), + [sym_word] = ACTIONS(466), + [sym__concat] = ACTIONS(466), + [anon_sym_PIPE] = ACTIONS(468), + [anon_sym_RPAREN] = ACTIONS(468), + [anon_sym_SEMI_SEMI] = ACTIONS(468), + [anon_sym_PIPE_AMP] = ACTIONS(468), + [anon_sym_AMP_AMP] = ACTIONS(468), + [anon_sym_PIPE_PIPE] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(468), + [anon_sym_GT_GT] = ACTIONS(468), + [anon_sym_AMP_GT] = ACTIONS(468), + [anon_sym_AMP_GT_GT] = ACTIONS(468), + [anon_sym_LT_AMP] = ACTIONS(468), + [anon_sym_GT_AMP] = ACTIONS(468), + [anon_sym_LT_LT] = ACTIONS(468), + [anon_sym_LT_LT_DASH] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [sym_raw_string] = ACTIONS(468), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(468), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(468), + [anon_sym_BQUOTE] = ACTIONS(468), + [anon_sym_LT_LPAREN] = ACTIONS(468), + [anon_sym_GT_LPAREN] = ACTIONS(468), [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), + [sym_identifier] = ACTIONS(468), + [anon_sym_SEMI] = ACTIONS(468), + [anon_sym_LF] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(468), }, [99] = { - [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(129), - [sym_variable_assignment] = STATE(294), - [sym_declaration_command] = STATE(293), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), + [sym_file_descriptor] = ACTIONS(470), + [sym_word] = ACTIONS(470), + [sym__concat] = 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_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_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(472), + [anon_sym_SEMI] = ACTIONS(472), + [anon_sym_LF] = ACTIONS(472), + [anon_sym_AMP] = ACTIONS(472), }, [100] = { - [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(140), - [sym_variable_assignment] = STATE(296), - [sym_declaration_command] = STATE(295), - [sym_subscript] = STATE(142), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(137), - [sym_simple_expansion] = STATE(137), - [sym_expansion] = STATE(137), - [sym_command_substitution] = STATE(137), - [sym_process_substitution] = STATE(137), - [aux_sym_command_repeat1] = STATE(143), - [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), - }, - [101] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(298), - [anon_sym_DQUOTE] = ACTIONS(468), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), - }, - [102] = { - [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(470), - [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(472), - [sym_comment] = ACTIONS(52), - }, - [103] = { - [aux_sym_concatenation_repeat1] = STATE(300), [sym_file_descriptor] = ACTIONS(474), - [sym__concat] = ACTIONS(168), + [sym_word] = 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), @@ -9634,131 +8573,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(476), [anon_sym_LT_LPAREN] = ACTIONS(476), [anon_sym_GT_LPAREN] = ACTIONS(476), - [sym_word] = ACTIONS(476), [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(476), [anon_sym_SEMI] = ACTIONS(476), [anon_sym_LF] = ACTIONS(476), [anon_sym_AMP] = ACTIONS(476), }, + [101] = { + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(466), + [anon_sym_COLON] = ACTIONS(478), + [anon_sym_COLON_QMARK] = ACTIONS(466), + [anon_sym_COLON_DASH] = ACTIONS(466), + [anon_sym_PERCENT] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(466), + [sym_comment] = ACTIONS(50), + }, + [102] = { + [sym_special_variable_name] = STATE(293), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(466), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(478), + [anon_sym_COLON_QMARK] = ACTIONS(466), + [anon_sym_COLON_DASH] = ACTIONS(466), + [anon_sym_PERCENT] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(466), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(480), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + }, + [103] = { + [anon_sym_RBRACE] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_EQ] = ACTIONS(486), + [anon_sym_COLON] = ACTIONS(488), + [anon_sym_COLON_QMARK] = ACTIONS(486), + [anon_sym_COLON_DASH] = ACTIONS(486), + [anon_sym_PERCENT] = ACTIONS(486), + [anon_sym_SLASH] = ACTIONS(486), + [sym_comment] = ACTIONS(50), + }, [104] = { - [sym_file_descriptor] = ACTIONS(322), - [sym__concat] = ACTIONS(322), - [anon_sym_PIPE] = ACTIONS(478), - [anon_sym_RPAREN] = ACTIONS(478), - [anon_sym_SEMI_SEMI] = ACTIONS(478), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(478), - [anon_sym_PIPE_PIPE] = ACTIONS(478), - [anon_sym_LT] = ACTIONS(478), - [anon_sym_GT] = ACTIONS(478), - [anon_sym_GT_GT] = ACTIONS(478), - [anon_sym_AMP_GT] = ACTIONS(478), - [anon_sym_AMP_GT_GT] = ACTIONS(478), - [anon_sym_LT_AMP] = ACTIONS(478), - [anon_sym_GT_AMP] = ACTIONS(478), - [anon_sym_LT_LT] = ACTIONS(478), - [anon_sym_LT_LT_DASH] = ACTIONS(478), - [anon_sym_DQUOTE] = ACTIONS(478), - [sym_raw_string] = ACTIONS(478), - [anon_sym_DOLLAR] = ACTIONS(478), - [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(478), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_LF] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(478), - }, - [105] = { - [sym_file_descriptor] = ACTIONS(480), - [sym__concat] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(482), - [anon_sym_RPAREN] = ACTIONS(482), - [anon_sym_SEMI_SEMI] = ACTIONS(482), - [anon_sym_PIPE_AMP] = ACTIONS(482), - [anon_sym_AMP_AMP] = ACTIONS(482), - [anon_sym_PIPE_PIPE] = ACTIONS(482), - [anon_sym_LT] = ACTIONS(482), - [anon_sym_GT] = ACTIONS(482), - [anon_sym_GT_GT] = ACTIONS(482), - [anon_sym_AMP_GT] = ACTIONS(482), - [anon_sym_AMP_GT_GT] = ACTIONS(482), - [anon_sym_LT_AMP] = ACTIONS(482), - [anon_sym_GT_AMP] = ACTIONS(482), - [anon_sym_LT_LT] = ACTIONS(482), - [anon_sym_LT_LT_DASH] = ACTIONS(482), - [anon_sym_DQUOTE] = ACTIONS(482), - [sym_raw_string] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(482), - [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(482), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(482), - [anon_sym_LF] = ACTIONS(482), - [anon_sym_AMP] = ACTIONS(482), - }, - [106] = { - [sym_file_descriptor] = ACTIONS(484), - [sym__concat] = ACTIONS(484), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_RPAREN] = ACTIONS(486), - [anon_sym_SEMI_SEMI] = ACTIONS(486), - [anon_sym_PIPE_AMP] = ACTIONS(486), - [anon_sym_AMP_AMP] = ACTIONS(486), - [anon_sym_PIPE_PIPE] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(486), - [anon_sym_GT_GT] = ACTIONS(486), - [anon_sym_AMP_GT] = ACTIONS(486), - [anon_sym_AMP_GT_GT] = ACTIONS(486), - [anon_sym_LT_AMP] = ACTIONS(486), - [anon_sym_GT_AMP] = ACTIONS(486), - [anon_sym_LT_LT] = ACTIONS(486), - [anon_sym_LT_LT_DASH] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(486), - [sym_raw_string] = ACTIONS(486), - [anon_sym_DOLLAR] = ACTIONS(486), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(486), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(486), - [anon_sym_BQUOTE] = ACTIONS(486), - [anon_sym_LT_LPAREN] = ACTIONS(486), - [anon_sym_GT_LPAREN] = ACTIONS(486), - [sym_word] = ACTIONS(486), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(486), - [anon_sym_LF] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(486), - }, - [107] = { - [sym_special_variable_name] = STATE(302), - [anon_sym_RBRACE] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(62), - [anon_sym_AT] = ACTIONS(62), - [anon_sym_COLON] = ACTIONS(324), - [anon_sym_COLON_QMARK] = ACTIONS(322), - [anon_sym_COLON_DASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(488), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), - }, - [108] = { [anon_sym_RBRACE] = ACTIONS(490), [anon_sym_LBRACK] = ACTIONS(492), [anon_sym_EQ] = ACTIONS(494), @@ -9767,1252 +8632,1323 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DASH] = ACTIONS(494), [anon_sym_PERCENT] = ACTIONS(494), [anon_sym_SLASH] = ACTIONS(494), - [sym_comment] = ACTIONS(52), + [sym_comment] = ACTIONS(50), + }, + [105] = { + [aux_sym_concatenation_repeat1] = STATE(301), + [sym_file_descriptor] = ACTIONS(58), + [sym_word] = ACTIONS(58), + [sym__concat] = ACTIONS(498), + [anon_sym_PIPE] = ACTIONS(500), + [anon_sym_RPAREN] = ACTIONS(58), + [anon_sym_PIPE_AMP] = ACTIONS(58), + [anon_sym_AMP_AMP] = ACTIONS(58), + [anon_sym_PIPE_PIPE] = ACTIONS(58), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_GT_GT] = ACTIONS(58), + [anon_sym_AMP_GT] = ACTIONS(500), + [anon_sym_AMP_GT_GT] = ACTIONS(58), + [anon_sym_LT_AMP] = ACTIONS(58), + [anon_sym_GT_AMP] = ACTIONS(58), + [anon_sym_LT_LT] = ACTIONS(500), + [anon_sym_LT_LT_DASH] = ACTIONS(58), + [anon_sym_DQUOTE] = ACTIONS(58), + [sym_raw_string] = ACTIONS(58), + [anon_sym_DOLLAR] = ACTIONS(500), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(58), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(58), + [anon_sym_BQUOTE] = ACTIONS(58), + [anon_sym_LT_LPAREN] = ACTIONS(58), + [anon_sym_GT_LPAREN] = ACTIONS(58), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(500), + }, + [106] = { + [sym__assignment] = STATE(303), + [anon_sym_LBRACK] = ACTIONS(66), + [anon_sym_EQ] = ACTIONS(502), + [anon_sym_PLUS_EQ] = ACTIONS(502), + [sym_comment] = ACTIONS(50), + }, + [107] = { + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(504), + }, + [108] = { + [sym__terminated_statement] = STATE(305), + [sym_for_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_function_definition] = STATE(40), + [sym_subshell] = STATE(40), + [sym_pipeline] = STATE(40), + [sym_list] = STATE(40), + [sym_bracket_command] = STATE(40), + [sym_command] = STATE(40), + [sym_command_name] = STATE(25), + [sym_variable_assignment] = STATE(41), + [sym_declaration_command] = STATE(40), + [sym_subscript] = STATE(27), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), }, [109] = { - [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), + [sym__terminated_statement] = STATE(306), + [sym_for_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_function_definition] = STATE(40), + [sym_subshell] = STATE(40), + [sym_pipeline] = STATE(40), + [sym_list] = STATE(40), + [sym_bracket_command] = STATE(40), + [sym_command] = STATE(40), + [sym_command_name] = STATE(25), + [sym_variable_assignment] = STATE(41), + [sym_declaration_command] = STATE(40), + [sym_subscript] = STATE(27), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), }, [110] = { - [sym__assignment] = STATE(310), - [anon_sym_LBRACK] = ACTIONS(58), - [anon_sym_EQ] = ACTIONS(506), - [anon_sym_PLUS_EQ] = ACTIONS(506), - [sym_comment] = ACTIONS(52), + [sym_concatenation] = STATE(309), + [sym_string] = STATE(307), + [sym_simple_expansion] = STATE(307), + [sym_expansion] = STATE(307), + [sym_command_substitution] = STATE(307), + [sym_process_substitution] = STATE(307), + [sym_word] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(74), + [sym_raw_string] = ACTIONS(506), + [anon_sym_DOLLAR] = ACTIONS(76), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(78), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(80), + [anon_sym_BQUOTE] = ACTIONS(82), + [anon_sym_LT_LPAREN] = ACTIONS(84), + [anon_sym_GT_LPAREN] = ACTIONS(84), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(508), }, [111] = { - [sym_special_variable_name] = STATE(312), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(62), - [anon_sym_AT] = ACTIONS(62), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(508), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(510), }, [112] = { - [sym__terminated_statement] = STATE(313), - [sym_for_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_function_definition] = STATE(40), - [sym_subshell] = STATE(40), - [sym_pipeline] = STATE(40), - [sym_list] = STATE(40), - [sym_bracket_command] = STATE(40), - [sym_command] = STATE(40), - [sym_command_name] = STATE(25), - [sym_variable_assignment] = STATE(41), - [sym_declaration_command] = STATE(40), - [sym_subscript] = STATE(27), + [sym__terminated_statement] = STATE(23), + [sym_for_statement] = STATE(311), + [sym_while_statement] = STATE(311), + [sym_if_statement] = STATE(311), + [sym_case_statement] = STATE(311), + [sym_function_definition] = STATE(311), + [sym_subshell] = STATE(311), + [sym_pipeline] = STATE(311), + [sym_list] = STATE(311), + [sym_bracket_command] = STATE(311), + [sym_command] = STATE(311), + [sym_command_name] = STATE(59), + [sym_variable_assignment] = STATE(312), + [sym_declaration_command] = STATE(311), + [sym_subscript] = STATE(61), [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_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(313), + [aux_sym_command_repeat1] = STATE(63), [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), + [sym_word] = ACTIONS(90), + [sym_variable_name] = ACTIONS(92), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(94), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(96), + [anon_sym_typeset] = ACTIONS(96), + [anon_sym_export] = ACTIONS(96), + [anon_sym_readonly] = ACTIONS(96), + [anon_sym_local] = ACTIONS(96), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(90), [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), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(98), }, [113] = { - [sym__terminated_statement] = STATE(314), - [sym_for_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_function_definition] = STATE(40), - [sym_subshell] = STATE(40), - [sym_pipeline] = STATE(40), - [sym_list] = STATE(40), - [sym_bracket_command] = STATE(40), - [sym_command] = STATE(40), - [sym_command_name] = STATE(25), - [sym_variable_assignment] = STATE(41), - [sym_declaration_command] = STATE(40), - [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), - }, - [114] = { - [sym_concatenation] = STATE(316), - [sym_string] = STATE(315), - [sym_simple_expansion] = STATE(315), - [sym_expansion] = STATE(315), - [sym_command_substitution] = STATE(315), - [sym_process_substitution] = STATE(315), - [anon_sym_DQUOTE] = ACTIONS(70), - [sym_raw_string] = ACTIONS(510), - [anon_sym_DOLLAR] = ACTIONS(74), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(76), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(78), - [anon_sym_BQUOTE] = ACTIONS(80), - [anon_sym_LT_LPAREN] = ACTIONS(82), - [anon_sym_GT_LPAREN] = ACTIONS(82), - [sym_word] = ACTIONS(512), - [sym_comment] = ACTIONS(52), - }, - [115] = { - [sym_word] = ACTIONS(514), - [sym_comment] = ACTIONS(52), - }, - [116] = { - [sym__terminated_statement] = STATE(23), - [sym_for_statement] = STATE(318), - [sym_while_statement] = STATE(318), - [sym_if_statement] = STATE(318), - [sym_case_statement] = STATE(318), - [sym_function_definition] = STATE(318), - [sym_subshell] = STATE(318), - [sym_pipeline] = STATE(318), - [sym_list] = STATE(318), - [sym_bracket_command] = STATE(318), - [sym_command] = STATE(318), - [sym_command_name] = STATE(58), - [sym_variable_assignment] = STATE(319), - [sym_declaration_command] = STATE(318), - [sym_subscript] = STATE(60), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(29), - [sym_string] = STATE(55), - [sym_simple_expansion] = STATE(55), - [sym_expansion] = STATE(55), - [sym_command_substitution] = STATE(55), - [sym_process_substitution] = STATE(55), - [aux_sym_program_repeat1] = STATE(320), - [aux_sym_command_repeat1] = STATE(62), - [sym_file_descriptor] = ACTIONS(8), - [sym_variable_name] = ACTIONS(88), - [anon_sym_for] = ACTIONS(14), - [anon_sym_while] = ACTIONS(16), - [anon_sym_if] = ACTIONS(18), - [anon_sym_case] = ACTIONS(20), - [anon_sym_function] = ACTIONS(90), - [anon_sym_LPAREN] = ACTIONS(24), - [anon_sym_LBRACK] = ACTIONS(26), - [anon_sym_LBRACK_LBRACK] = ACTIONS(28), - [anon_sym_declare] = ACTIONS(92), - [anon_sym_typeset] = ACTIONS(92), - [anon_sym_export] = ACTIONS(92), - [anon_sym_readonly] = ACTIONS(92), - [anon_sym_local] = ACTIONS(92), - [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(94), - [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(96), - [sym_comment] = ACTIONS(52), - }, - [117] = { - [sym_concatenation] = STATE(70), + [sym_concatenation] = STATE(72), [sym_string] = STATE(64), [sym_simple_expansion] = STATE(64), [sym_expansion] = STATE(64), [sym_command_substitution] = STATE(64), [sym_process_substitution] = STATE(64), - [aux_sym_for_statement_repeat1] = STATE(321), - [anon_sym_DQUOTE] = ACTIONS(98), + [aux_sym_for_statement_repeat1] = STATE(314), + [sym_word] = ACTIONS(100), + [anon_sym_DQUOTE] = ACTIONS(102), [sym_raw_string] = ACTIONS(100), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(112), - [sym_comment] = ACTIONS(52), + [anon_sym_DOLLAR] = ACTIONS(104), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(108), + [anon_sym_BQUOTE] = ACTIONS(110), + [anon_sym_LT_LPAREN] = ACTIONS(112), + [anon_sym_GT_LPAREN] = ACTIONS(112), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(114), + }, + [114] = { + [sym_concatenation] = STATE(72), + [sym_string] = STATE(74), + [sym_simple_expansion] = STATE(74), + [sym_expansion] = STATE(74), + [sym_command_substitution] = STATE(74), + [sym_process_substitution] = STATE(74), + [aux_sym_for_statement_repeat1] = STATE(315), + [sym_word] = ACTIONS(116), + [anon_sym_DQUOTE] = ACTIONS(102), + [sym_raw_string] = ACTIONS(116), + [anon_sym_DOLLAR] = ACTIONS(104), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(108), + [anon_sym_BQUOTE] = ACTIONS(110), + [anon_sym_LT_LPAREN] = ACTIONS(112), + [anon_sym_GT_LPAREN] = ACTIONS(112), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(118), + }, + [115] = { + [sym_variable_assignment] = STATE(316), + [sym_subscript] = STATE(319), + [aux_sym_declaration_command_repeat1] = STATE(320), + [sym_word] = ACTIONS(512), + [sym_variable_name] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_PIPE_AMP] = ACTIONS(518), + [anon_sym_AMP_AMP] = ACTIONS(518), + [anon_sym_PIPE_PIPE] = ACTIONS(518), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(520), + }, + [116] = { + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(322), + [anon_sym_DQUOTE] = ACTIONS(522), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_comment] = ACTIONS(64), + }, + [117] = { + [sym_special_variable_name] = STATE(325), + [anon_sym_DOLLAR] = ACTIONS(524), + [anon_sym_POUND] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(524), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(526), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_QMARK] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_0] = ACTIONS(528), + [anon_sym__] = ACTIONS(528), }, [118] = { - [sym_concatenation] = STATE(79), - [sym_string] = STATE(73), - [sym_simple_expansion] = STATE(73), - [sym_expansion] = STATE(73), - [sym_command_substitution] = STATE(73), - [sym_process_substitution] = STATE(73), - [aux_sym_for_statement_repeat1] = STATE(322), - [anon_sym_DQUOTE] = ACTIONS(114), - [sym_raw_string] = ACTIONS(116), - [anon_sym_DOLLAR] = ACTIONS(118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(122), - [anon_sym_BQUOTE] = ACTIONS(124), - [anon_sym_LT_LPAREN] = ACTIONS(126), - [anon_sym_GT_LPAREN] = ACTIONS(126), - [sym_word] = ACTIONS(128), - [sym_comment] = ACTIONS(52), + [sym_special_variable_name] = STATE(328), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(530), + [anon_sym_AT] = ACTIONS(162), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), }, [119] = { - [sym_variable_assignment] = STATE(325), - [sym_subscript] = STATE(326), - [aux_sym_declaration_command_repeat1] = STATE(327), - [aux_sym_declaration_command_repeat2] = STATE(328), - [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), + [sym_for_statement] = STATE(329), + [sym_while_statement] = STATE(329), + [sym_if_statement] = STATE(329), + [sym_case_statement] = STATE(329), + [sym_function_definition] = STATE(329), + [sym_subshell] = STATE(329), + [sym_pipeline] = STATE(329), + [sym_list] = STATE(329), + [sym_bracket_command] = STATE(329), + [sym_command] = STATE(329), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(330), + [sym_declaration_command] = STATE(329), + [sym_subscript] = STATE(126), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), }, [120] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(330), - [anon_sym_DQUOTE] = ACTIONS(526), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), + [sym_for_statement] = STATE(331), + [sym_while_statement] = STATE(331), + [sym_if_statement] = STATE(331), + [sym_case_statement] = STATE(331), + [sym_function_definition] = STATE(331), + [sym_subshell] = STATE(331), + [sym_pipeline] = STATE(331), + [sym_list] = STATE(331), + [sym_bracket_command] = STATE(331), + [sym_command] = STATE(331), + [sym_command_name] = STATE(135), + [sym_variable_assignment] = STATE(332), + [sym_declaration_command] = STATE(331), + [sym_subscript] = STATE(137), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(129), + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [sym_process_substitution] = STATE(129), + [aux_sym_command_repeat1] = STATE(138), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(206), + [sym_variable_name] = ACTIONS(208), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(212), + [anon_sym_typeset] = ACTIONS(212), + [anon_sym_export] = ACTIONS(212), + [anon_sym_readonly] = ACTIONS(212), + [anon_sym_local] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(206), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(214), }, [121] = { - [aux_sym_concatenation_repeat1] = STATE(332), - [sym_file_descriptor] = ACTIONS(166), - [sym__concat] = ACTIONS(528), - [anon_sym_PIPE] = ACTIONS(530), - [anon_sym_RPAREN] = ACTIONS(166), - [anon_sym_PIPE_AMP] = ACTIONS(166), - [anon_sym_AMP_AMP] = ACTIONS(166), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(530), - [anon_sym_GT] = ACTIONS(530), - [anon_sym_GT_GT] = ACTIONS(166), - [anon_sym_AMP_GT] = ACTIONS(530), - [anon_sym_AMP_GT_GT] = ACTIONS(166), - [anon_sym_LT_AMP] = ACTIONS(166), - [anon_sym_GT_AMP] = ACTIONS(166), - [anon_sym_LT_LT] = ACTIONS(530), - [anon_sym_LT_LT_DASH] = ACTIONS(166), - [anon_sym_DQUOTE] = ACTIONS(166), - [sym_raw_string] = ACTIONS(166), - [anon_sym_DOLLAR] = ACTIONS(530), - [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_for_statement] = STATE(333), + [sym_while_statement] = STATE(333), + [sym_if_statement] = STATE(333), + [sym_case_statement] = STATE(333), + [sym_function_definition] = STATE(333), + [sym_subshell] = STATE(333), + [sym_pipeline] = STATE(333), + [sym_list] = STATE(333), + [sym_bracket_command] = STATE(333), + [sym_command] = STATE(333), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(334), + [sym_declaration_command] = STATE(333), + [sym_subscript] = STATE(126), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), + [sym_file_descriptor] = ACTIONS(8), [sym_word] = ACTIONS(170), - [sym_comment] = ACTIONS(52), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), }, [122] = { - [sym_special_variable_name] = STATE(335), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(532), - [anon_sym_POUND] = ACTIONS(532), - [anon_sym_AT] = ACTIONS(532), - [sym_comment] = ACTIONS(64), - [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), + [aux_sym_concatenation_repeat1] = STATE(336), + [sym_file_descriptor] = ACTIONS(216), + [sym_word] = ACTIONS(216), + [sym__concat] = ACTIONS(498), + [anon_sym_PIPE] = ACTIONS(534), + [anon_sym_RPAREN] = ACTIONS(216), + [anon_sym_LPAREN] = ACTIONS(536), + [anon_sym_PIPE_AMP] = ACTIONS(216), + [anon_sym_AMP_AMP] = ACTIONS(216), + [anon_sym_PIPE_PIPE] = ACTIONS(216), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_GT] = ACTIONS(534), + [anon_sym_GT_GT] = ACTIONS(216), + [anon_sym_AMP_GT] = ACTIONS(534), + [anon_sym_AMP_GT_GT] = ACTIONS(216), + [anon_sym_LT_AMP] = ACTIONS(216), + [anon_sym_GT_AMP] = ACTIONS(216), + [anon_sym_LT_LT] = ACTIONS(534), + [anon_sym_LT_LT_DASH] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(216), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(534), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(216), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(216), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_LT_LPAREN] = ACTIONS(216), + [anon_sym_GT_LPAREN] = ACTIONS(216), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(534), }, [123] = { - [sym_special_variable_name] = STATE(338), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(538), - [anon_sym_AT] = ACTIONS(62), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(540), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(540), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), }, [124] = { - [sym_for_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_function_definition] = STATE(339), - [sym_subshell] = STATE(339), - [sym_pipeline] = STATE(339), - [sym_list] = STATE(339), - [sym_bracket_command] = STATE(339), - [sym_command] = STATE(339), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(340), - [sym_declaration_command] = STATE(339), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), + [sym_file_redirect] = STATE(345), + [sym_heredoc_redirect] = STATE(345), + [sym_concatenation] = STATE(346), + [sym_string] = STATE(341), + [sym_simple_expansion] = STATE(341), + [sym_expansion] = STATE(341), + [sym_command_substitution] = STATE(341), + [sym_process_substitution] = STATE(341), + [aux_sym_for_statement_repeat1] = STATE(347), + [aux_sym_command_repeat2] = STATE(348), + [sym_file_descriptor] = ACTIONS(546), + [sym_word] = ACTIONS(548), + [anon_sym_PIPE] = ACTIONS(550), + [anon_sym_RPAREN] = ACTIONS(552), + [anon_sym_PIPE_AMP] = ACTIONS(552), + [anon_sym_AMP_AMP] = ACTIONS(552), + [anon_sym_PIPE_PIPE] = ACTIONS(552), + [anon_sym_LT] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(556), + [anon_sym_AMP_GT] = ACTIONS(554), + [anon_sym_AMP_GT_GT] = ACTIONS(556), + [anon_sym_LT_AMP] = ACTIONS(556), + [anon_sym_GT_AMP] = ACTIONS(556), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_LT_LT_DASH] = ACTIONS(560), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(548), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(562), }, [125] = { - [sym_for_statement] = STATE(341), - [sym_while_statement] = STATE(341), - [sym_if_statement] = STATE(341), - [sym_case_statement] = STATE(341), - [sym_function_definition] = STATE(341), - [sym_subshell] = STATE(341), - [sym_pipeline] = STATE(341), - [sym_list] = STATE(341), - [sym_bracket_command] = STATE(341), - [sym_command] = STATE(341), - [sym_command_name] = STATE(140), - [sym_variable_assignment] = STATE(342), - [sym_declaration_command] = STATE(341), - [sym_subscript] = STATE(142), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(137), - [sym_simple_expansion] = STATE(137), - [sym_expansion] = STATE(137), - [sym_command_substitution] = STATE(137), - [sym_process_substitution] = STATE(137), - [aux_sym_command_repeat1] = STATE(143), - [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), + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(540), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), }, [126] = { - [sym_for_statement] = STATE(343), - [sym_while_statement] = STATE(343), - [sym_if_statement] = STATE(343), - [sym_case_statement] = STATE(343), - [sym_function_definition] = STATE(343), - [sym_subshell] = STATE(343), - [sym_pipeline] = STATE(343), - [sym_list] = STATE(343), - [sym_bracket_command] = STATE(343), - [sym_command] = STATE(343), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(344), - [sym_declaration_command] = STATE(343), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), + [sym__assignment] = STATE(303), + [anon_sym_EQ] = ACTIONS(502), + [anon_sym_PLUS_EQ] = ACTIONS(502), + [sym_comment] = ACTIONS(50), }, [127] = { - [aux_sym_concatenation_repeat1] = STATE(332), - [sym_file_descriptor] = ACTIONS(166), - [sym__concat] = ACTIONS(528), - [anon_sym_PIPE] = ACTIONS(530), - [anon_sym_RPAREN] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_PIPE_AMP] = ACTIONS(166), - [anon_sym_AMP_AMP] = ACTIONS(166), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(530), - [anon_sym_GT] = ACTIONS(530), - [anon_sym_GT_GT] = ACTIONS(166), - [anon_sym_AMP_GT] = ACTIONS(530), - [anon_sym_AMP_GT_GT] = ACTIONS(166), - [anon_sym_LT_AMP] = ACTIONS(166), - [anon_sym_GT_AMP] = ACTIONS(166), - [anon_sym_LT_LT] = ACTIONS(530), - [anon_sym_LT_LT_DASH] = ACTIONS(166), - [anon_sym_DQUOTE] = ACTIONS(166), - [sym_raw_string] = ACTIONS(166), - [anon_sym_DOLLAR] = ACTIONS(530), - [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(170), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(58), + [sym_word] = ACTIONS(58), + [anon_sym_PIPE] = ACTIONS(500), + [anon_sym_RPAREN] = ACTIONS(58), + [anon_sym_PIPE_AMP] = ACTIONS(58), + [anon_sym_AMP_AMP] = ACTIONS(58), + [anon_sym_PIPE_PIPE] = ACTIONS(58), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_GT_GT] = ACTIONS(58), + [anon_sym_AMP_GT] = ACTIONS(500), + [anon_sym_AMP_GT_GT] = ACTIONS(58), + [anon_sym_LT_AMP] = ACTIONS(58), + [anon_sym_GT_AMP] = ACTIONS(58), + [anon_sym_LT_LT] = ACTIONS(500), + [anon_sym_LT_LT_DASH] = ACTIONS(58), + [anon_sym_DQUOTE] = ACTIONS(58), + [sym_raw_string] = ACTIONS(58), + [anon_sym_DOLLAR] = ACTIONS(500), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(58), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(58), + [anon_sym_BQUOTE] = ACTIONS(58), + [anon_sym_LT_LPAREN] = ACTIONS(58), + [anon_sym_GT_LPAREN] = ACTIONS(58), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(500), }, [128] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(546), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), + [sym_command_name] = STATE(350), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(159), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(160), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(564), }, [129] = { - [sym_file_redirect] = STATE(353), - [sym_heredoc_redirect] = STATE(353), - [sym_concatenation] = STATE(354), - [sym_string] = STATE(352), - [sym_simple_expansion] = STATE(352), - [sym_expansion] = STATE(352), - [sym_command_substitution] = STATE(352), - [sym_process_substitution] = STATE(352), - [aux_sym_for_statement_repeat1] = STATE(355), - [aux_sym_command_repeat2] = STATE(356), - [sym_file_descriptor] = ACTIONS(552), - [anon_sym_PIPE] = ACTIONS(554), - [anon_sym_RPAREN] = ACTIONS(556), - [anon_sym_PIPE_AMP] = ACTIONS(556), - [anon_sym_AMP_AMP] = ACTIONS(556), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT] = ACTIONS(558), - [anon_sym_GT] = ACTIONS(558), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(558), - [anon_sym_AMP_GT_GT] = ACTIONS(560), - [anon_sym_LT_AMP] = ACTIONS(560), - [anon_sym_GT_AMP] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_LT_LT_DASH] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(202), - [sym_raw_string] = ACTIONS(566), - [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(568), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(351), + [sym_file_descriptor] = ACTIONS(58), + [sym_word] = ACTIONS(58), + [sym__concat] = ACTIONS(498), + [anon_sym_PIPE] = ACTIONS(500), + [anon_sym_PIPE_AMP] = ACTIONS(58), + [anon_sym_AMP_AMP] = ACTIONS(58), + [anon_sym_PIPE_PIPE] = ACTIONS(58), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_GT_GT] = ACTIONS(58), + [anon_sym_AMP_GT] = ACTIONS(500), + [anon_sym_AMP_GT_GT] = ACTIONS(58), + [anon_sym_LT_AMP] = ACTIONS(58), + [anon_sym_GT_AMP] = ACTIONS(58), + [anon_sym_LT_LT] = ACTIONS(500), + [anon_sym_LT_LT_DASH] = ACTIONS(58), + [anon_sym_DQUOTE] = ACTIONS(58), + [sym_raw_string] = ACTIONS(58), + [anon_sym_DOLLAR] = ACTIONS(500), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(58), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(58), + [anon_sym_BQUOTE] = ACTIONS(58), + [anon_sym_LT_LPAREN] = ACTIONS(58), + [anon_sym_GT_LPAREN] = ACTIONS(58), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(500), }, [130] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(546), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), + [sym__assignment] = STATE(303), + [anon_sym_LBRACK] = ACTIONS(66), + [anon_sym_EQ] = ACTIONS(566), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [sym_comment] = ACTIONS(50), }, [131] = { - [sym__assignment] = STATE(310), - [anon_sym_EQ] = ACTIONS(506), - [anon_sym_PLUS_EQ] = ACTIONS(506), - [sym_comment] = ACTIONS(52), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(568), }, [132] = { - [sym_file_descriptor] = ACTIONS(166), - [anon_sym_PIPE] = ACTIONS(530), - [anon_sym_RPAREN] = ACTIONS(166), - [anon_sym_PIPE_AMP] = ACTIONS(166), - [anon_sym_AMP_AMP] = ACTIONS(166), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(530), - [anon_sym_GT] = ACTIONS(530), - [anon_sym_GT_GT] = ACTIONS(166), - [anon_sym_AMP_GT] = ACTIONS(530), - [anon_sym_AMP_GT_GT] = ACTIONS(166), - [anon_sym_LT_AMP] = ACTIONS(166), - [anon_sym_GT_AMP] = ACTIONS(166), - [anon_sym_LT_LT] = ACTIONS(530), - [anon_sym_LT_LT_DASH] = ACTIONS(166), - [anon_sym_DQUOTE] = ACTIONS(166), - [sym_raw_string] = ACTIONS(166), - [anon_sym_DOLLAR] = ACTIONS(530), - [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(170), - [sym_comment] = ACTIONS(52), + [sym_variable_assignment] = STATE(316), + [sym_subscript] = STATE(355), + [aux_sym_declaration_command_repeat1] = STATE(356), + [sym_word] = ACTIONS(512), + [sym_variable_name] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_PIPE_AMP] = ACTIONS(518), + [anon_sym_AMP_AMP] = ACTIONS(518), + [anon_sym_PIPE_PIPE] = ACTIONS(518), + [anon_sym_BQUOTE] = ACTIONS(518), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(520), }, [133] = { - [sym_command_name] = STATE(357), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(161), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(162), - [sym_file_descriptor] = ACTIONS(8), - [sym_variable_name] = ACTIONS(274), - [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(572), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(358), + [sym_file_descriptor] = ACTIONS(216), + [sym_word] = ACTIONS(216), + [sym__concat] = ACTIONS(498), + [anon_sym_PIPE] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(216), + [anon_sym_AMP_AMP] = ACTIONS(216), + [anon_sym_PIPE_PIPE] = ACTIONS(216), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_GT] = ACTIONS(534), + [anon_sym_GT_GT] = ACTIONS(216), + [anon_sym_AMP_GT] = ACTIONS(534), + [anon_sym_AMP_GT_GT] = ACTIONS(216), + [anon_sym_LT_AMP] = ACTIONS(216), + [anon_sym_GT_AMP] = ACTIONS(216), + [anon_sym_LT_LT] = ACTIONS(534), + [anon_sym_LT_LT_DASH] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(216), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(534), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(216), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(216), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_LT_LPAREN] = ACTIONS(216), + [anon_sym_GT_LPAREN] = ACTIONS(216), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(534), }, [134] = { - [sym__assignment] = STATE(310), - [anon_sym_LBRACK] = ACTIONS(58), - [anon_sym_EQ] = ACTIONS(574), - [anon_sym_PLUS_EQ] = ACTIONS(574), - [sym_comment] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_BQUOTE] = ACTIONS(540), + [sym_comment] = ACTIONS(50), }, [135] = { - [sym_word] = ACTIONS(576), - [sym_comment] = ACTIONS(52), + [sym_file_redirect] = STATE(345), + [sym_heredoc_redirect] = STATE(345), + [sym_concatenation] = STATE(346), + [sym_string] = STATE(362), + [sym_simple_expansion] = STATE(362), + [sym_expansion] = STATE(362), + [sym_command_substitution] = STATE(362), + [sym_process_substitution] = STATE(362), + [aux_sym_for_statement_repeat1] = STATE(365), + [aux_sym_command_repeat2] = STATE(366), + [sym_file_descriptor] = ACTIONS(580), + [sym_word] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(550), + [anon_sym_PIPE_AMP] = ACTIONS(552), + [anon_sym_AMP_AMP] = ACTIONS(552), + [anon_sym_PIPE_PIPE] = ACTIONS(552), + [anon_sym_LT] = ACTIONS(584), + [anon_sym_GT] = ACTIONS(584), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_AMP_GT] = ACTIONS(584), + [anon_sym_AMP_GT_GT] = ACTIONS(586), + [anon_sym_LT_AMP] = ACTIONS(586), + [anon_sym_GT_AMP] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_LT_LT_DASH] = ACTIONS(560), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(552), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(588), }, [136] = { - [sym_variable_assignment] = STATE(325), - [sym_subscript] = STATE(361), - [aux_sym_declaration_command_repeat1] = STATE(362), - [aux_sym_declaration_command_repeat2] = STATE(363), - [sym_variable_name] = ACTIONS(578), - [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), + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(540), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), }, [137] = { - [aux_sym_concatenation_repeat1] = STATE(364), - [sym_file_descriptor] = ACTIONS(166), - [sym__concat] = ACTIONS(528), - [anon_sym_PIPE] = ACTIONS(530), - [anon_sym_PIPE_AMP] = ACTIONS(166), - [anon_sym_AMP_AMP] = ACTIONS(166), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(530), - [anon_sym_GT] = ACTIONS(530), - [anon_sym_GT_GT] = ACTIONS(166), - [anon_sym_AMP_GT] = ACTIONS(530), - [anon_sym_AMP_GT_GT] = ACTIONS(166), - [anon_sym_LT_AMP] = ACTIONS(166), - [anon_sym_GT_AMP] = ACTIONS(166), - [anon_sym_LT_LT] = ACTIONS(530), - [anon_sym_LT_LT_DASH] = ACTIONS(166), - [anon_sym_DQUOTE] = ACTIONS(166), - [sym_raw_string] = ACTIONS(166), - [anon_sym_DOLLAR] = ACTIONS(530), - [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(170), - [sym_comment] = ACTIONS(52), + [sym__assignment] = STATE(303), + [anon_sym_EQ] = ACTIONS(566), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [sym_comment] = ACTIONS(50), }, [138] = { - [aux_sym_concatenation_repeat1] = STATE(364), - [sym_file_descriptor] = ACTIONS(166), - [sym__concat] = ACTIONS(528), - [anon_sym_PIPE] = ACTIONS(530), - [anon_sym_LPAREN] = ACTIONS(580), - [anon_sym_PIPE_AMP] = ACTIONS(166), - [anon_sym_AMP_AMP] = ACTIONS(166), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(530), - [anon_sym_GT] = ACTIONS(530), - [anon_sym_GT_GT] = ACTIONS(166), - [anon_sym_AMP_GT] = ACTIONS(530), - [anon_sym_AMP_GT_GT] = ACTIONS(166), - [anon_sym_LT_AMP] = ACTIONS(166), - [anon_sym_GT_AMP] = ACTIONS(166), - [anon_sym_LT_LT] = ACTIONS(530), - [anon_sym_LT_LT_DASH] = ACTIONS(166), - [anon_sym_DQUOTE] = ACTIONS(166), - [sym_raw_string] = ACTIONS(166), - [anon_sym_DOLLAR] = ACTIONS(530), - [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(170), - [sym_comment] = ACTIONS(52), + [sym_command_name] = STATE(368), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(159), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(129), + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [sym_process_substitution] = STATE(129), + [aux_sym_command_repeat1] = STATE(160), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(206), + [sym_variable_name] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(206), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(590), }, [139] = { - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_BQUOTE] = ACTIONS(546), - [sym_comment] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(592), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), }, [140] = { - [sym_file_redirect] = STATE(353), - [sym_heredoc_redirect] = STATE(353), - [sym_concatenation] = STATE(354), - [sym_string] = STATE(370), - [sym_simple_expansion] = STATE(370), - [sym_expansion] = STATE(370), - [sym_command_substitution] = STATE(370), - [sym_process_substitution] = STATE(370), - [aux_sym_for_statement_repeat1] = STATE(371), - [aux_sym_command_repeat2] = STATE(372), - [sym_file_descriptor] = ACTIONS(588), - [anon_sym_PIPE] = ACTIONS(554), - [anon_sym_PIPE_AMP] = ACTIONS(556), - [anon_sym_AMP_AMP] = ACTIONS(556), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT] = ACTIONS(590), - [anon_sym_GT] = ACTIONS(590), - [anon_sym_GT_GT] = ACTIONS(592), - [anon_sym_AMP_GT] = ACTIONS(590), - [anon_sym_AMP_GT_GT] = ACTIONS(592), - [anon_sym_LT_AMP] = ACTIONS(592), - [anon_sym_GT_AMP] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_LT_LT_DASH] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(202), - [sym_raw_string] = ACTIONS(594), - [anon_sym_DOLLAR] = ACTIONS(206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(210), - [anon_sym_BQUOTE] = ACTIONS(556), - [anon_sym_LT_LPAREN] = ACTIONS(214), - [anon_sym_GT_LPAREN] = ACTIONS(214), - [sym_word] = ACTIONS(596), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(592), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), }, [141] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(546), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(594), + [sym_comment] = ACTIONS(50), }, [142] = { - [sym__assignment] = STATE(310), - [anon_sym_EQ] = ACTIONS(574), - [anon_sym_PLUS_EQ] = ACTIONS(574), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(166), + [sym_file_descriptor] = ACTIONS(596), + [sym_word] = ACTIONS(596), + [sym__concat] = ACTIONS(60), + [anon_sym_PIPE] = ACTIONS(598), + [anon_sym_SEMI_SEMI] = ACTIONS(598), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(598), + [anon_sym_PIPE_PIPE] = ACTIONS(598), + [anon_sym_LT] = ACTIONS(598), + [anon_sym_GT] = ACTIONS(598), + [anon_sym_GT_GT] = ACTIONS(598), + [anon_sym_AMP_GT] = ACTIONS(598), + [anon_sym_AMP_GT_GT] = ACTIONS(598), + [anon_sym_LT_AMP] = ACTIONS(598), + [anon_sym_GT_AMP] = ACTIONS(598), + [anon_sym_LT_LT] = ACTIONS(598), + [anon_sym_LT_LT_DASH] = ACTIONS(598), + [anon_sym_DQUOTE] = ACTIONS(598), + [sym_raw_string] = ACTIONS(598), + [anon_sym_DOLLAR] = ACTIONS(598), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(598), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(598), + [anon_sym_BQUOTE] = ACTIONS(598), + [anon_sym_LT_LPAREN] = ACTIONS(598), + [anon_sym_GT_LPAREN] = ACTIONS(598), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(598), + [anon_sym_SEMI] = ACTIONS(598), + [anon_sym_LF] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(598), }, [143] = { - [sym_command_name] = STATE(373), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(161), + [sym_for_statement] = STATE(371), + [sym_while_statement] = STATE(371), + [sym_if_statement] = STATE(371), + [sym_case_statement] = STATE(371), + [sym_function_definition] = STATE(371), + [sym_subshell] = STATE(371), + [sym_pipeline] = STATE(371), + [sym_list] = STATE(371), + [sym_bracket_command] = STATE(371), + [sym_command] = STATE(371), + [sym_command_name] = STATE(25), + [sym_variable_assignment] = STATE(372), + [sym_declaration_command] = STATE(371), + [sym_subscript] = STATE(27), [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(137), - [sym_simple_expansion] = STATE(137), - [sym_expansion] = STATE(137), - [sym_command_substitution] = STATE(137), - [sym_process_substitution] = STATE(137), - [aux_sym_command_repeat1] = STATE(162), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_command_repeat1] = STATE(31), [sym_file_descriptor] = ACTIONS(8), - [sym_variable_name] = ACTIONS(274), - [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(600), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), }, [144] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(602), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(600), + [sym_word] = ACTIONS(600), + [sym_variable_name] = ACTIONS(600), + [ts_builtin_sym_end] = ACTIONS(600), + [anon_sym_for] = ACTIONS(602), + [anon_sym_while] = ACTIONS(602), + [anon_sym_if] = ACTIONS(602), + [anon_sym_case] = ACTIONS(602), + [anon_sym_SEMI_SEMI] = ACTIONS(600), + [anon_sym_function] = ACTIONS(602), + [anon_sym_LPAREN] = ACTIONS(600), + [anon_sym_RBRACE] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(602), + [anon_sym_typeset] = ACTIONS(602), + [anon_sym_export] = ACTIONS(602), + [anon_sym_readonly] = ACTIONS(602), + [anon_sym_local] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_GT_GT] = ACTIONS(600), + [anon_sym_AMP_GT] = ACTIONS(602), + [anon_sym_AMP_GT_GT] = ACTIONS(600), + [anon_sym_LT_AMP] = ACTIONS(600), + [anon_sym_GT_AMP] = ACTIONS(600), + [anon_sym_DQUOTE] = ACTIONS(600), + [sym_raw_string] = ACTIONS(600), + [anon_sym_DOLLAR] = ACTIONS(602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(600), + [anon_sym_LT_LPAREN] = ACTIONS(600), + [anon_sym_GT_LPAREN] = ACTIONS(600), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(604), }, [145] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(602), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), + [sym_for_statement] = STATE(373), + [sym_while_statement] = STATE(373), + [sym_if_statement] = STATE(373), + [sym_case_statement] = STATE(373), + [sym_function_definition] = STATE(373), + [sym_subshell] = STATE(373), + [sym_pipeline] = STATE(373), + [sym_list] = STATE(373), + [sym_bracket_command] = STATE(373), + [sym_command] = STATE(373), + [sym_command_name] = STATE(25), + [sym_variable_assignment] = STATE(374), + [sym_declaration_command] = STATE(373), + [sym_subscript] = STATE(27), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), }, [146] = { - [anon_sym_RPAREN] = ACTIONS(604), - [sym_comment] = ACTIONS(52), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_GT] = ACTIONS(606), + [anon_sym_GT_GT] = ACTIONS(608), + [anon_sym_AMP_GT] = ACTIONS(606), + [anon_sym_AMP_GT_GT] = ACTIONS(608), + [anon_sym_LT_AMP] = ACTIONS(608), + [anon_sym_GT_AMP] = ACTIONS(608), + [sym_comment] = ACTIONS(50), }, [147] = { - [sym_for_statement] = STATE(376), - [sym_while_statement] = STATE(376), - [sym_if_statement] = STATE(376), - [sym_case_statement] = STATE(376), - [sym_function_definition] = STATE(376), - [sym_subshell] = STATE(376), - [sym_pipeline] = STATE(376), - [sym_list] = STATE(376), - [sym_bracket_command] = STATE(376), - [sym_command] = STATE(376), - [sym_command_name] = STATE(25), - [sym_variable_assignment] = STATE(377), - [sym_declaration_command] = STATE(376), - [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), + [aux_sym_concatenation_repeat1] = STATE(34), + [sym_file_descriptor] = ACTIONS(388), + [sym_word] = ACTIONS(388), + [sym__concat] = ACTIONS(60), + [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_SEMI_SEMI] = ACTIONS(610), + [anon_sym_PIPE_AMP] = ACTIONS(610), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_PIPE_PIPE] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(610), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_AMP_GT] = ACTIONS(610), + [anon_sym_AMP_GT_GT] = ACTIONS(610), + [anon_sym_LT_AMP] = ACTIONS(610), + [anon_sym_GT_AMP] = ACTIONS(610), + [anon_sym_LT_LT] = ACTIONS(610), + [anon_sym_LT_LT_DASH] = ACTIONS(610), + [anon_sym_DQUOTE] = ACTIONS(610), + [sym_raw_string] = ACTIONS(610), + [anon_sym_DOLLAR] = ACTIONS(610), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(610), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(610), + [anon_sym_BQUOTE] = ACTIONS(610), + [anon_sym_LT_LPAREN] = ACTIONS(610), + [anon_sym_GT_LPAREN] = ACTIONS(610), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(610), + [anon_sym_SEMI] = ACTIONS(610), + [anon_sym_LF] = ACTIONS(610), + [anon_sym_AMP] = ACTIONS(610), }, [148] = { - [sym_file_descriptor] = ACTIONS(606), - [sym_variable_name] = ACTIONS(606), - [ts_builtin_sym_end] = ACTIONS(606), - [anon_sym_for] = ACTIONS(608), - [anon_sym_while] = ACTIONS(608), - [anon_sym_if] = ACTIONS(608), - [anon_sym_case] = ACTIONS(608), - [anon_sym_SEMI_SEMI] = ACTIONS(606), - [anon_sym_function] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(606), - [anon_sym_RBRACE] = ACTIONS(606), - [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_LBRACK_LBRACK] = ACTIONS(608), - [anon_sym_declare] = ACTIONS(608), - [anon_sym_typeset] = ACTIONS(608), - [anon_sym_export] = ACTIONS(608), - [anon_sym_readonly] = ACTIONS(608), - [anon_sym_local] = ACTIONS(608), - [anon_sym_LT] = ACTIONS(608), - [anon_sym_GT] = ACTIONS(608), - [anon_sym_GT_GT] = ACTIONS(606), - [anon_sym_AMP_GT] = ACTIONS(608), - [anon_sym_AMP_GT_GT] = ACTIONS(606), - [anon_sym_LT_AMP] = ACTIONS(606), - [anon_sym_GT_AMP] = ACTIONS(606), - [anon_sym_DQUOTE] = ACTIONS(606), - [sym_raw_string] = ACTIONS(606), - [anon_sym_DOLLAR] = ACTIONS(608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(606), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), - [anon_sym_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(606), - [anon_sym_GT_LPAREN] = ACTIONS(606), - [sym_word] = ACTIONS(610), - [sym_comment] = ACTIONS(52), + [sym_concatenation] = STATE(384), + [sym_string] = STATE(376), + [sym_simple_expansion] = STATE(376), + [sym_expansion] = STATE(376), + [sym_command_substitution] = STATE(376), + [sym_process_substitution] = STATE(376), + [sym_word] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(614), + [sym_raw_string] = ACTIONS(612), + [anon_sym_DOLLAR] = ACTIONS(616), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(618), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(620), + [anon_sym_BQUOTE] = ACTIONS(622), + [anon_sym_LT_LPAREN] = ACTIONS(624), + [anon_sym_GT_LPAREN] = ACTIONS(624), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(626), }, [149] = { - [sym_for_statement] = STATE(378), - [sym_while_statement] = STATE(378), - [sym_if_statement] = STATE(378), - [sym_case_statement] = STATE(378), - [sym_function_definition] = STATE(378), - [sym_subshell] = STATE(378), - [sym_pipeline] = STATE(378), - [sym_list] = STATE(378), - [sym_bracket_command] = STATE(378), - [sym_command] = STATE(378), - [sym_command_name] = STATE(25), - [sym_variable_assignment] = STATE(379), - [sym_declaration_command] = STATE(378), - [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), + [sym_heredoc] = STATE(387), + [sym__simple_heredoc] = ACTIONS(628), + [sym__heredoc_beginning] = ACTIONS(630), + [sym_comment] = ACTIONS(50), }, [150] = { - [anon_sym_LT] = ACTIONS(612), - [anon_sym_GT] = ACTIONS(612), - [anon_sym_GT_GT] = ACTIONS(614), - [anon_sym_AMP_GT] = ACTIONS(612), - [anon_sym_AMP_GT_GT] = ACTIONS(614), - [anon_sym_LT_AMP] = ACTIONS(614), - [anon_sym_GT_AMP] = ACTIONS(614), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(142), + [sym_file_descriptor] = ACTIONS(406), + [sym_word] = ACTIONS(406), + [sym__concat] = ACTIONS(60), + [anon_sym_PIPE] = ACTIONS(632), + [anon_sym_SEMI_SEMI] = ACTIONS(632), + [anon_sym_PIPE_AMP] = ACTIONS(632), + [anon_sym_AMP_AMP] = ACTIONS(632), + [anon_sym_PIPE_PIPE] = ACTIONS(632), + [anon_sym_LT] = ACTIONS(632), + [anon_sym_GT] = ACTIONS(632), + [anon_sym_GT_GT] = ACTIONS(632), + [anon_sym_AMP_GT] = ACTIONS(632), + [anon_sym_AMP_GT_GT] = ACTIONS(632), + [anon_sym_LT_AMP] = ACTIONS(632), + [anon_sym_GT_AMP] = ACTIONS(632), + [anon_sym_LT_LT] = ACTIONS(632), + [anon_sym_LT_LT_DASH] = ACTIONS(632), + [anon_sym_DQUOTE] = ACTIONS(632), + [sym_raw_string] = ACTIONS(632), + [anon_sym_DOLLAR] = ACTIONS(632), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(632), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(632), + [anon_sym_BQUOTE] = ACTIONS(632), + [anon_sym_LT_LPAREN] = ACTIONS(632), + [anon_sym_GT_LPAREN] = ACTIONS(632), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(632), + [anon_sym_SEMI] = ACTIONS(632), + [anon_sym_LF] = ACTIONS(632), + [anon_sym_AMP] = ACTIONS(632), }, [151] = { - [sym_concatenation] = STATE(388), - [sym_string] = STATE(382), - [sym_simple_expansion] = STATE(382), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [sym_process_substitution] = STATE(382), - [anon_sym_DQUOTE] = ACTIONS(616), - [sym_raw_string] = ACTIONS(618), - [anon_sym_DOLLAR] = ACTIONS(620), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(622), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), - [anon_sym_BQUOTE] = ACTIONS(626), - [anon_sym_LT_LPAREN] = ACTIONS(628), - [anon_sym_GT_LPAREN] = ACTIONS(628), - [sym_word] = ACTIONS(630), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(634), + [anon_sym_PIPE] = ACTIONS(636), + [anon_sym_RPAREN] = ACTIONS(636), + [anon_sym_SEMI_SEMI] = ACTIONS(636), + [anon_sym_PIPE_AMP] = ACTIONS(636), + [anon_sym_AMP_AMP] = ACTIONS(636), + [anon_sym_PIPE_PIPE] = ACTIONS(636), + [anon_sym_LT] = ACTIONS(636), + [anon_sym_GT] = ACTIONS(636), + [anon_sym_GT_GT] = ACTIONS(636), + [anon_sym_AMP_GT] = ACTIONS(636), + [anon_sym_AMP_GT_GT] = ACTIONS(636), + [anon_sym_LT_AMP] = ACTIONS(636), + [anon_sym_GT_AMP] = ACTIONS(636), + [anon_sym_LT_LT] = ACTIONS(636), + [anon_sym_LT_LT_DASH] = ACTIONS(636), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(636), + [anon_sym_LF] = ACTIONS(636), + [anon_sym_AMP] = ACTIONS(636), }, [152] = { - [sym_heredoc] = STATE(391), - [sym__simple_heredoc] = ACTIONS(632), - [sym__heredoc_beginning] = ACTIONS(634), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(388), + [sym_word] = ACTIONS(388), + [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_RPAREN] = ACTIONS(610), + [anon_sym_SEMI_SEMI] = ACTIONS(610), + [anon_sym_PIPE_AMP] = ACTIONS(610), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_PIPE_PIPE] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(610), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_AMP_GT] = ACTIONS(610), + [anon_sym_AMP_GT_GT] = ACTIONS(610), + [anon_sym_LT_AMP] = ACTIONS(610), + [anon_sym_GT_AMP] = ACTIONS(610), + [anon_sym_LT_LT] = ACTIONS(610), + [anon_sym_LT_LT_DASH] = ACTIONS(610), + [anon_sym_DQUOTE] = ACTIONS(610), + [sym_raw_string] = ACTIONS(610), + [anon_sym_DOLLAR] = ACTIONS(610), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(610), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(610), + [anon_sym_BQUOTE] = ACTIONS(610), + [anon_sym_LT_LPAREN] = ACTIONS(610), + [anon_sym_GT_LPAREN] = ACTIONS(610), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(610), + [anon_sym_SEMI] = ACTIONS(610), + [anon_sym_LF] = ACTIONS(610), + [anon_sym_AMP] = ACTIONS(610), }, [153] = { - [aux_sym_concatenation_repeat1] = STATE(103), - [sym_file_descriptor] = ACTIONS(388), - [sym__concat] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(390), - [anon_sym_SEMI_SEMI] = ACTIONS(390), - [anon_sym_PIPE_AMP] = ACTIONS(390), - [anon_sym_AMP_AMP] = ACTIONS(390), - [anon_sym_PIPE_PIPE] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(390), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_AMP_GT] = ACTIONS(390), - [anon_sym_AMP_GT_GT] = ACTIONS(390), - [anon_sym_LT_AMP] = ACTIONS(390), - [anon_sym_GT_AMP] = ACTIONS(390), - [anon_sym_LT_LT] = ACTIONS(390), - [anon_sym_LT_LT_DASH] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(390), - [sym_raw_string] = ACTIONS(390), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(390), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), - [anon_sym_BQUOTE] = ACTIONS(390), - [anon_sym_LT_LPAREN] = ACTIONS(390), - [anon_sym_GT_LPAREN] = ACTIONS(390), - [sym_word] = ACTIONS(390), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(390), - [anon_sym_LF] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(390), - }, - [154] = { - [sym_file_descriptor] = ACTIONS(636), + [sym_file_redirect] = STATE(151), + [sym_heredoc_redirect] = STATE(151), + [sym_concatenation] = STATE(152), + [sym_string] = STATE(147), + [sym_simple_expansion] = STATE(147), + [sym_expansion] = STATE(147), + [sym_command_substitution] = STATE(147), + [sym_process_substitution] = STATE(147), + [aux_sym_for_statement_repeat1] = STATE(388), + [aux_sym_command_repeat2] = STATE(389), + [sym_file_descriptor] = ACTIONS(236), + [sym_word] = ACTIONS(238), [anon_sym_PIPE] = ACTIONS(638), - [anon_sym_RPAREN] = ACTIONS(638), [anon_sym_SEMI_SEMI] = ACTIONS(638), [anon_sym_PIPE_AMP] = ACTIONS(638), [anon_sym_AMP_AMP] = ACTIONS(638), [anon_sym_PIPE_PIPE] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_AMP_GT] = ACTIONS(638), - [anon_sym_AMP_GT_GT] = ACTIONS(638), - [anon_sym_LT_AMP] = ACTIONS(638), - [anon_sym_GT_AMP] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(638), - [anon_sym_LT_LT_DASH] = ACTIONS(638), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(242), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(242), + [anon_sym_LT_AMP] = ACTIONS(242), + [anon_sym_GT_AMP] = ACTIONS(242), + [anon_sym_LT_LT] = ACTIONS(244), + [anon_sym_LT_LT_DASH] = ACTIONS(244), + [anon_sym_DQUOTE] = ACTIONS(246), + [sym_raw_string] = ACTIONS(248), + [anon_sym_DOLLAR] = ACTIONS(250), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), + [anon_sym_BQUOTE] = ACTIONS(256), + [anon_sym_LT_LPAREN] = ACTIONS(258), + [anon_sym_GT_LPAREN] = ACTIONS(258), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(260), + [anon_sym_SEMI] = ACTIONS(638), + [anon_sym_LF] = ACTIONS(638), + [anon_sym_AMP] = ACTIONS(638), + }, + [154] = { + [sym_file_redirect] = STATE(151), + [sym_heredoc_redirect] = STATE(151), + [aux_sym_command_repeat2] = STATE(390), + [sym_file_descriptor] = ACTIONS(236), + [anon_sym_PIPE] = ACTIONS(638), + [anon_sym_SEMI_SEMI] = ACTIONS(638), + [anon_sym_PIPE_AMP] = ACTIONS(638), + [anon_sym_AMP_AMP] = ACTIONS(638), + [anon_sym_PIPE_PIPE] = ACTIONS(638), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(242), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(242), + [anon_sym_LT_AMP] = ACTIONS(242), + [anon_sym_GT_AMP] = ACTIONS(242), + [anon_sym_LT_LT] = ACTIONS(244), + [anon_sym_LT_LT_DASH] = ACTIONS(244), [sym_comment] = ACTIONS(64), [anon_sym_SEMI] = ACTIONS(638), [anon_sym_LF] = ACTIONS(638), [anon_sym_AMP] = ACTIONS(638), }, [155] = { - [sym_file_descriptor] = ACTIONS(388), - [anon_sym_PIPE] = ACTIONS(390), - [anon_sym_RPAREN] = ACTIONS(390), - [anon_sym_SEMI_SEMI] = ACTIONS(390), - [anon_sym_PIPE_AMP] = ACTIONS(390), - [anon_sym_AMP_AMP] = ACTIONS(390), - [anon_sym_PIPE_PIPE] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(390), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_AMP_GT] = ACTIONS(390), - [anon_sym_AMP_GT_GT] = ACTIONS(390), - [anon_sym_LT_AMP] = ACTIONS(390), - [anon_sym_GT_AMP] = ACTIONS(390), - [anon_sym_LT_LT] = ACTIONS(390), - [anon_sym_LT_LT_DASH] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(390), - [sym_raw_string] = ACTIONS(390), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(390), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), - [anon_sym_BQUOTE] = ACTIONS(390), - [anon_sym_LT_LPAREN] = ACTIONS(390), - [anon_sym_GT_LPAREN] = ACTIONS(390), - [sym_word] = ACTIONS(390), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(390), - [anon_sym_LF] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(390), - }, - [156] = { - [sym_file_redirect] = STATE(154), - [sym_heredoc_redirect] = STATE(154), - [sym_concatenation] = STATE(155), - [sym_string] = STATE(153), - [sym_simple_expansion] = STATE(153), - [sym_expansion] = STATE(153), - [sym_command_substitution] = STATE(153), - [sym_process_substitution] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(392), - [aux_sym_command_repeat2] = STATE(393), - [sym_file_descriptor] = ACTIONS(244), - [anon_sym_PIPE] = ACTIONS(640), - [anon_sym_SEMI_SEMI] = ACTIONS(640), - [anon_sym_PIPE_AMP] = ACTIONS(640), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT] = ACTIONS(248), - [anon_sym_GT] = ACTIONS(248), - [anon_sym_GT_GT] = ACTIONS(248), - [anon_sym_AMP_GT] = ACTIONS(248), - [anon_sym_AMP_GT_GT] = ACTIONS(248), - [anon_sym_LT_AMP] = ACTIONS(248), - [anon_sym_GT_AMP] = ACTIONS(248), - [anon_sym_LT_LT] = ACTIONS(250), - [anon_sym_LT_LT_DASH] = ACTIONS(250), - [anon_sym_DQUOTE] = ACTIONS(252), - [sym_raw_string] = ACTIONS(254), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(260), - [anon_sym_BQUOTE] = ACTIONS(262), - [anon_sym_LT_LPAREN] = ACTIONS(264), - [anon_sym_GT_LPAREN] = ACTIONS(264), - [sym_word] = ACTIONS(254), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LF] = ACTIONS(640), - [anon_sym_AMP] = ACTIONS(640), - }, - [157] = { - [sym_file_redirect] = STATE(154), - [sym_heredoc_redirect] = STATE(154), - [aux_sym_command_repeat2] = STATE(394), - [sym_file_descriptor] = ACTIONS(244), - [anon_sym_PIPE] = ACTIONS(640), - [anon_sym_SEMI_SEMI] = ACTIONS(640), - [anon_sym_PIPE_AMP] = ACTIONS(640), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT] = ACTIONS(248), - [anon_sym_GT] = ACTIONS(248), - [anon_sym_GT_GT] = ACTIONS(248), - [anon_sym_AMP_GT] = ACTIONS(248), - [anon_sym_AMP_GT_GT] = ACTIONS(248), - [anon_sym_LT_AMP] = ACTIONS(248), - [anon_sym_GT_AMP] = ACTIONS(248), - [anon_sym_LT_LT] = ACTIONS(250), - [anon_sym_LT_LT_DASH] = ACTIONS(250), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LF] = ACTIONS(640), - [anon_sym_AMP] = ACTIONS(640), - }, - [158] = { [sym__terminated_statement] = STATE(23), [sym_for_statement] = STATE(24), [sym_while_statement] = STATE(24), @@ -11030,106 +9966,142 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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(158), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(155), [aux_sym_command_repeat1] = STATE(31), - [sym_file_descriptor] = ACTIONS(642), - [sym_variable_name] = ACTIONS(645), - [ts_builtin_sym_end] = ACTIONS(648), - [anon_sym_for] = ACTIONS(650), - [anon_sym_while] = ACTIONS(653), - [anon_sym_if] = ACTIONS(656), - [anon_sym_case] = ACTIONS(659), - [anon_sym_function] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_LBRACK_LBRACK] = ACTIONS(671), - [anon_sym_declare] = ACTIONS(674), - [anon_sym_typeset] = ACTIONS(674), - [anon_sym_export] = ACTIONS(674), - [anon_sym_readonly] = ACTIONS(674), - [anon_sym_local] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(677), - [anon_sym_GT_GT] = ACTIONS(680), - [anon_sym_AMP_GT] = ACTIONS(677), - [anon_sym_AMP_GT_GT] = ACTIONS(680), - [anon_sym_LT_AMP] = ACTIONS(680), - [anon_sym_GT_AMP] = ACTIONS(680), - [anon_sym_DQUOTE] = ACTIONS(683), - [sym_raw_string] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(692), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), - [anon_sym_BQUOTE] = ACTIONS(698), - [anon_sym_LT_LPAREN] = ACTIONS(701), - [anon_sym_GT_LPAREN] = ACTIONS(701), - [sym_word] = ACTIONS(704), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(640), + [sym_word] = ACTIONS(643), + [sym_variable_name] = ACTIONS(646), + [ts_builtin_sym_end] = ACTIONS(649), + [anon_sym_for] = ACTIONS(651), + [anon_sym_while] = ACTIONS(654), + [anon_sym_if] = ACTIONS(657), + [anon_sym_case] = ACTIONS(660), + [anon_sym_function] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACK_LBRACK] = ACTIONS(672), + [anon_sym_declare] = ACTIONS(675), + [anon_sym_typeset] = ACTIONS(675), + [anon_sym_export] = ACTIONS(675), + [anon_sym_readonly] = ACTIONS(675), + [anon_sym_local] = ACTIONS(675), + [anon_sym_LT] = ACTIONS(678), + [anon_sym_GT] = ACTIONS(678), + [anon_sym_GT_GT] = ACTIONS(681), + [anon_sym_AMP_GT] = ACTIONS(678), + [anon_sym_AMP_GT_GT] = ACTIONS(681), + [anon_sym_LT_AMP] = ACTIONS(681), + [anon_sym_GT_AMP] = ACTIONS(681), + [anon_sym_DQUOTE] = ACTIONS(684), + [sym_raw_string] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(696), + [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(702), + }, + [156] = { + [sym__assignment] = STATE(303), + [anon_sym_LBRACK] = ACTIONS(66), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_PLUS_EQ] = ACTIONS(705), + [sym_comment] = ACTIONS(50), + }, + [157] = { + [aux_sym_concatenation_repeat1] = STATE(142), + [sym_file_descriptor] = ACTIONS(216), + [sym_word] = ACTIONS(216), + [sym__concat] = ACTIONS(60), + [anon_sym_PIPE] = ACTIONS(218), + [anon_sym_SEMI_SEMI] = ACTIONS(218), + [anon_sym_PIPE_AMP] = ACTIONS(218), + [anon_sym_AMP_AMP] = ACTIONS(218), + [anon_sym_PIPE_PIPE] = ACTIONS(218), + [anon_sym_LT] = ACTIONS(218), + [anon_sym_GT] = ACTIONS(218), + [anon_sym_GT_GT] = ACTIONS(218), + [anon_sym_AMP_GT] = ACTIONS(218), + [anon_sym_AMP_GT_GT] = ACTIONS(218), + [anon_sym_LT_AMP] = ACTIONS(218), + [anon_sym_GT_AMP] = ACTIONS(218), + [anon_sym_LT_LT] = ACTIONS(218), + [anon_sym_LT_LT_DASH] = ACTIONS(218), + [anon_sym_DQUOTE] = ACTIONS(218), + [sym_raw_string] = ACTIONS(218), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(218), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(218), + [anon_sym_BQUOTE] = ACTIONS(218), + [anon_sym_LT_LPAREN] = ACTIONS(218), + [anon_sym_GT_LPAREN] = ACTIONS(218), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(218), + [anon_sym_SEMI] = ACTIONS(218), + [anon_sym_LF] = ACTIONS(218), + [anon_sym_AMP] = ACTIONS(218), + }, + [158] = { + [sym_file_redirect] = STATE(151), + [sym_heredoc_redirect] = STATE(151), + [sym_concatenation] = STATE(152), + [sym_string] = STATE(147), + [sym_simple_expansion] = STATE(147), + [sym_expansion] = STATE(147), + [sym_command_substitution] = STATE(147), + [sym_process_substitution] = STATE(147), + [aux_sym_for_statement_repeat1] = STATE(392), + [aux_sym_command_repeat2] = STATE(389), + [sym_file_descriptor] = ACTIONS(236), + [sym_word] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(638), + [anon_sym_SEMI_SEMI] = ACTIONS(638), + [anon_sym_PIPE_AMP] = ACTIONS(638), + [anon_sym_AMP_AMP] = ACTIONS(638), + [anon_sym_PIPE_PIPE] = ACTIONS(638), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(242), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(242), + [anon_sym_LT_AMP] = ACTIONS(242), + [anon_sym_GT_AMP] = ACTIONS(242), + [anon_sym_LT_LT] = ACTIONS(244), + [anon_sym_LT_LT_DASH] = ACTIONS(244), + [anon_sym_DQUOTE] = ACTIONS(246), + [sym_raw_string] = ACTIONS(248), + [anon_sym_DOLLAR] = ACTIONS(250), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), + [anon_sym_BQUOTE] = ACTIONS(256), + [anon_sym_LT_LPAREN] = ACTIONS(258), + [anon_sym_GT_LPAREN] = ACTIONS(258), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(260), + [anon_sym_SEMI] = ACTIONS(638), + [anon_sym_LF] = ACTIONS(638), + [anon_sym_AMP] = ACTIONS(638), }, [159] = { - [sym__assignment] = STATE(396), - [anon_sym_LBRACK] = ACTIONS(58), - [anon_sym_EQ] = ACTIONS(707), - [anon_sym_PLUS_EQ] = ACTIONS(707), - [sym_comment] = ACTIONS(52), + [sym__assignment] = STATE(303), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_PLUS_EQ] = ACTIONS(705), + [sym_comment] = ACTIONS(50), }, [160] = { - [sym_file_redirect] = STATE(154), - [sym_heredoc_redirect] = STATE(154), - [sym_concatenation] = STATE(155), - [sym_string] = STATE(153), - [sym_simple_expansion] = STATE(153), - [sym_expansion] = STATE(153), - [sym_command_substitution] = STATE(153), - [sym_process_substitution] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(397), - [aux_sym_command_repeat2] = STATE(393), - [sym_file_descriptor] = ACTIONS(244), - [anon_sym_PIPE] = ACTIONS(640), - [anon_sym_SEMI_SEMI] = ACTIONS(640), - [anon_sym_PIPE_AMP] = ACTIONS(640), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT] = ACTIONS(248), - [anon_sym_GT] = ACTIONS(248), - [anon_sym_GT_GT] = ACTIONS(248), - [anon_sym_AMP_GT] = ACTIONS(248), - [anon_sym_AMP_GT_GT] = ACTIONS(248), - [anon_sym_LT_AMP] = ACTIONS(248), - [anon_sym_GT_AMP] = ACTIONS(248), - [anon_sym_LT_LT] = ACTIONS(250), - [anon_sym_LT_LT_DASH] = ACTIONS(250), - [anon_sym_DQUOTE] = ACTIONS(252), - [sym_raw_string] = ACTIONS(254), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(260), - [anon_sym_BQUOTE] = ACTIONS(262), - [anon_sym_LT_LPAREN] = ACTIONS(264), - [anon_sym_GT_LPAREN] = ACTIONS(264), - [sym_word] = ACTIONS(254), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LF] = ACTIONS(640), - [anon_sym_AMP] = ACTIONS(640), - }, - [161] = { - [sym__assignment] = STATE(396), - [anon_sym_EQ] = ACTIONS(707), - [anon_sym_PLUS_EQ] = ACTIONS(707), - [sym_comment] = ACTIONS(52), - }, - [162] = { [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(161), + [sym_subscript] = STATE(159), [sym_file_redirect] = STATE(28), - [aux_sym_command_repeat1] = STATE(162), - [sym_file_descriptor] = ACTIONS(709), + [aux_sym_command_repeat1] = STATE(160), + [sym_file_descriptor] = ACTIONS(707), + [sym_word] = ACTIONS(710), [sym_variable_name] = ACTIONS(712), [anon_sym_LT] = ACTIONS(715), [anon_sym_GT] = ACTIONS(715), @@ -11138,801 +10110,985 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(718), [anon_sym_LT_AMP] = ACTIONS(718), [anon_sym_GT_AMP] = ACTIONS(718), - [anon_sym_DQUOTE] = ACTIONS(721), - [sym_raw_string] = ACTIONS(721), - [anon_sym_DOLLAR] = ACTIONS(723), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(721), - [anon_sym_BQUOTE] = ACTIONS(721), - [anon_sym_LT_LPAREN] = ACTIONS(721), - [anon_sym_GT_LPAREN] = ACTIONS(721), + [anon_sym_DQUOTE] = ACTIONS(710), + [sym_raw_string] = ACTIONS(710), + [anon_sym_DOLLAR] = ACTIONS(721), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(710), + [anon_sym_BQUOTE] = ACTIONS(710), + [anon_sym_LT_LPAREN] = ACTIONS(710), + [anon_sym_GT_LPAREN] = ACTIONS(710), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(721), + }, + [161] = { + [aux_sym_concatenation_repeat1] = STATE(264), + [sym_file_descriptor] = ACTIONS(723), [sym_word] = ACTIONS(723), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(426), + [sym_variable_name] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(723), + [anon_sym_AMP_GT] = ACTIONS(725), + [anon_sym_AMP_GT_GT] = ACTIONS(723), + [anon_sym_LT_AMP] = ACTIONS(723), + [anon_sym_GT_AMP] = ACTIONS(723), + [anon_sym_DQUOTE] = ACTIONS(723), + [sym_raw_string] = ACTIONS(723), + [anon_sym_DOLLAR] = ACTIONS(725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(723), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(723), + [anon_sym_LT_LPAREN] = ACTIONS(723), + [anon_sym_GT_LPAREN] = ACTIONS(723), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(725), + }, + [162] = { + [aux_sym_concatenation_repeat1] = STATE(279), + [sym_file_descriptor] = ACTIONS(727), + [sym_word] = ACTIONS(727), + [sym__concat] = ACTIONS(426), + [sym_variable_name] = ACTIONS(727), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_GT_GT] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(729), + [anon_sym_AMP_GT_GT] = ACTIONS(727), + [anon_sym_LT_AMP] = ACTIONS(727), + [anon_sym_GT_AMP] = ACTIONS(727), + [anon_sym_DQUOTE] = ACTIONS(727), + [sym_raw_string] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(727), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LT_LPAREN] = ACTIONS(727), + [anon_sym_GT_LPAREN] = ACTIONS(727), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(729), }, [163] = { - [aux_sym_concatenation_repeat1] = STATE(274), - [sym_file_descriptor] = ACTIONS(725), - [sym__concat] = ACTIONS(436), - [sym_variable_name] = ACTIONS(725), - [anon_sym_LT] = ACTIONS(727), - [anon_sym_GT] = ACTIONS(727), - [anon_sym_GT_GT] = ACTIONS(725), - [anon_sym_AMP_GT] = ACTIONS(727), - [anon_sym_AMP_GT_GT] = ACTIONS(725), - [anon_sym_LT_AMP] = ACTIONS(725), - [anon_sym_GT_AMP] = ACTIONS(725), - [anon_sym_DQUOTE] = ACTIONS(725), - [sym_raw_string] = ACTIONS(725), - [anon_sym_DOLLAR] = ACTIONS(727), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(725), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(725), - [anon_sym_BQUOTE] = ACTIONS(725), - [anon_sym_LT_LPAREN] = ACTIONS(725), - [anon_sym_GT_LPAREN] = ACTIONS(725), - [sym_word] = ACTIONS(727), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(723), + [sym_word] = ACTIONS(723), + [sym_variable_name] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(723), + [anon_sym_AMP_GT] = ACTIONS(725), + [anon_sym_AMP_GT_GT] = ACTIONS(723), + [anon_sym_LT_AMP] = ACTIONS(723), + [anon_sym_GT_AMP] = ACTIONS(723), + [anon_sym_DQUOTE] = ACTIONS(723), + [sym_raw_string] = ACTIONS(723), + [anon_sym_DOLLAR] = ACTIONS(725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(723), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(723), + [anon_sym_LT_LPAREN] = ACTIONS(723), + [anon_sym_GT_LPAREN] = ACTIONS(723), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(725), }, [164] = { - [sym_file_descriptor] = ACTIONS(725), - [sym_variable_name] = ACTIONS(725), - [anon_sym_LT] = ACTIONS(727), - [anon_sym_GT] = ACTIONS(727), - [anon_sym_GT_GT] = ACTIONS(725), - [anon_sym_AMP_GT] = ACTIONS(727), - [anon_sym_AMP_GT_GT] = ACTIONS(725), - [anon_sym_LT_AMP] = ACTIONS(725), - [anon_sym_GT_AMP] = ACTIONS(725), - [anon_sym_DQUOTE] = ACTIONS(725), - [sym_raw_string] = ACTIONS(725), - [anon_sym_DOLLAR] = ACTIONS(727), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(725), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(725), - [anon_sym_BQUOTE] = ACTIONS(725), - [anon_sym_LT_LPAREN] = ACTIONS(725), - [anon_sym_GT_LPAREN] = ACTIONS(725), - [sym_word] = ACTIONS(727), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(731), + [sym_word] = ACTIONS(731), + [sym__concat] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(733), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(733), + [anon_sym_LT_AMP] = ACTIONS(733), + [anon_sym_GT_AMP] = ACTIONS(733), + [anon_sym_LT_LT] = ACTIONS(733), + [anon_sym_LT_LT_DASH] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [sym_raw_string] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(733), + [anon_sym_AMP] = ACTIONS(733), }, [165] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(399), - [anon_sym_DQUOTE] = ACTIONS(729), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), + [sym_file_descriptor] = ACTIONS(735), + [sym_word] = ACTIONS(735), + [sym__concat] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_RPAREN] = ACTIONS(737), + [anon_sym_SEMI_SEMI] = ACTIONS(737), + [anon_sym_PIPE_AMP] = ACTIONS(737), + [anon_sym_AMP_AMP] = ACTIONS(737), + [anon_sym_PIPE_PIPE] = ACTIONS(737), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_GT] = ACTIONS(737), + [anon_sym_GT_GT] = ACTIONS(737), + [anon_sym_AMP_GT] = ACTIONS(737), + [anon_sym_AMP_GT_GT] = ACTIONS(737), + [anon_sym_LT_AMP] = ACTIONS(737), + [anon_sym_GT_AMP] = ACTIONS(737), + [anon_sym_LT_LT] = ACTIONS(737), + [anon_sym_LT_LT_DASH] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(737), + [sym_raw_string] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), + [anon_sym_BQUOTE] = ACTIONS(737), + [anon_sym_LT_LPAREN] = ACTIONS(737), + [anon_sym_GT_LPAREN] = ACTIONS(737), [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(737), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(737), + [anon_sym_AMP] = ACTIONS(737), }, [166] = { - [aux_sym_concatenation_repeat1] = STATE(402), - [sym__concat] = ACTIONS(731), - [anon_sym_RBRACK] = ACTIONS(733), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(166), + [sym_file_descriptor] = ACTIONS(731), + [sym_word] = ACTIONS(731), + [sym__concat] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(733), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(733), + [anon_sym_LT_AMP] = ACTIONS(733), + [anon_sym_GT_AMP] = ACTIONS(733), + [anon_sym_LT_LT] = ACTIONS(733), + [anon_sym_LT_LT_DASH] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [sym_raw_string] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(733), + [anon_sym_AMP] = ACTIONS(733), }, [167] = { - [sym_special_variable_name] = STATE(405), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_DOLLAR] = ACTIONS(735), - [anon_sym_POUND] = ACTIONS(735), - [anon_sym_AT] = ACTIONS(735), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(737), - [anon_sym_STAR] = ACTIONS(735), - [anon_sym_QMARK] = ACTIONS(735), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_0] = ACTIONS(739), - [anon_sym__] = ACTIONS(739), + [aux_sym_concatenation_repeat1] = STATE(395), + [sym__concat] = ACTIONS(742), + [anon_sym_RBRACK] = ACTIONS(744), + [sym_comment] = ACTIONS(50), }, [168] = { - [sym_special_variable_name] = STATE(408), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(741), - [anon_sym_AT] = ACTIONS(62), + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(397), + [anon_sym_DQUOTE] = ACTIONS(746), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(743), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), }, [169] = { - [sym_for_statement] = STATE(409), - [sym_while_statement] = STATE(409), - [sym_if_statement] = STATE(409), - [sym_case_statement] = STATE(409), - [sym_function_definition] = STATE(409), - [sym_subshell] = STATE(409), - [sym_pipeline] = STATE(409), - [sym_list] = STATE(409), - [sym_bracket_command] = STATE(409), - [sym_command] = STATE(409), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(410), - [sym_declaration_command] = STATE(409), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), + [sym_special_variable_name] = STATE(400), + [anon_sym_DOLLAR] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(748), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(750), + [anon_sym_STAR] = ACTIONS(748), + [anon_sym_QMARK] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(748), + [anon_sym_BANG] = ACTIONS(748), + [anon_sym_0] = ACTIONS(752), + [anon_sym__] = ACTIONS(752), }, [170] = { - [sym_for_statement] = STATE(411), - [sym_while_statement] = STATE(411), - [sym_if_statement] = STATE(411), - [sym_case_statement] = STATE(411), - [sym_function_definition] = STATE(411), - [sym_subshell] = STATE(411), - [sym_pipeline] = STATE(411), - [sym_list] = STATE(411), - [sym_bracket_command] = STATE(411), - [sym_command] = STATE(411), - [sym_command_name] = STATE(140), - [sym_variable_assignment] = STATE(412), - [sym_declaration_command] = STATE(411), - [sym_subscript] = STATE(142), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(137), - [sym_simple_expansion] = STATE(137), - [sym_expansion] = STATE(137), - [sym_command_substitution] = STATE(137), - [sym_process_substitution] = STATE(137), - [aux_sym_command_repeat1] = STATE(143), - [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), + [sym_special_variable_name] = STATE(403), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(754), + [anon_sym_AT] = ACTIONS(162), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(756), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), }, [171] = { - [sym_for_statement] = STATE(413), - [sym_while_statement] = STATE(413), - [sym_if_statement] = STATE(413), - [sym_case_statement] = STATE(413), - [sym_function_definition] = STATE(413), - [sym_subshell] = STATE(413), - [sym_pipeline] = STATE(413), - [sym_list] = STATE(413), - [sym_bracket_command] = STATE(413), - [sym_command] = STATE(413), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(414), - [sym_declaration_command] = STATE(413), - [sym_subscript] = STATE(131), + [sym_for_statement] = STATE(404), + [sym_while_statement] = STATE(404), + [sym_if_statement] = STATE(404), + [sym_case_statement] = STATE(404), + [sym_function_definition] = STATE(404), + [sym_subshell] = STATE(404), + [sym_pipeline] = STATE(404), + [sym_list] = STATE(404), + [sym_bracket_command] = STATE(404), + [sym_command] = STATE(404), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(405), + [sym_declaration_command] = STATE(404), + [sym_subscript] = STATE(126), [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), [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), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), }, [172] = { - [anon_sym_RBRACK] = ACTIONS(733), - [sym_comment] = ACTIONS(52), + [sym_for_statement] = STATE(406), + [sym_while_statement] = STATE(406), + [sym_if_statement] = STATE(406), + [sym_case_statement] = STATE(406), + [sym_function_definition] = STATE(406), + [sym_subshell] = STATE(406), + [sym_pipeline] = STATE(406), + [sym_list] = STATE(406), + [sym_bracket_command] = STATE(406), + [sym_command] = STATE(406), + [sym_command_name] = STATE(135), + [sym_variable_assignment] = STATE(407), + [sym_declaration_command] = STATE(406), + [sym_subscript] = STATE(137), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(129), + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [sym_process_substitution] = STATE(129), + [aux_sym_command_repeat1] = STATE(138), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(206), + [sym_variable_name] = ACTIONS(208), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(212), + [anon_sym_typeset] = ACTIONS(212), + [anon_sym_export] = ACTIONS(212), + [anon_sym_readonly] = ACTIONS(212), + [anon_sym_local] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(206), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(214), }, [173] = { - [sym_file_descriptor] = ACTIONS(745), - [sym_variable_name] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_SEMI_SEMI] = ACTIONS(747), - [anon_sym_PIPE_AMP] = ACTIONS(747), - [anon_sym_AMP_AMP] = ACTIONS(747), - [anon_sym_PIPE_PIPE] = ACTIONS(747), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_GT] = ACTIONS(747), - [anon_sym_AMP_GT] = ACTIONS(747), - [anon_sym_AMP_GT_GT] = ACTIONS(747), - [anon_sym_LT_AMP] = ACTIONS(747), - [anon_sym_GT_AMP] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(747), - [sym_raw_string] = ACTIONS(747), - [anon_sym_DOLLAR] = ACTIONS(747), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(747), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(747), - [anon_sym_BQUOTE] = ACTIONS(747), - [anon_sym_LT_LPAREN] = ACTIONS(747), - [anon_sym_GT_LPAREN] = ACTIONS(747), - [sym_word] = ACTIONS(747), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_LF] = ACTIONS(747), - [anon_sym_AMP] = ACTIONS(747), + [sym_for_statement] = STATE(408), + [sym_while_statement] = STATE(408), + [sym_if_statement] = STATE(408), + [sym_case_statement] = STATE(408), + [sym_function_definition] = STATE(408), + [sym_subshell] = STATE(408), + [sym_pipeline] = STATE(408), + [sym_list] = STATE(408), + [sym_bracket_command] = STATE(408), + [sym_command] = STATE(408), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(409), + [sym_declaration_command] = STATE(408), + [sym_subscript] = STATE(126), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), }, [174] = { - [sym_concatenation] = STATE(423), - [sym_string] = STATE(417), - [sym_simple_expansion] = STATE(417), - [sym_expansion] = STATE(417), - [sym_command_substitution] = STATE(417), - [sym_process_substitution] = STATE(417), - [aux_sym_for_statement_repeat1] = STATE(424), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(755), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(759), - [anon_sym_BQUOTE] = ACTIONS(761), - [anon_sym_LT_LPAREN] = ACTIONS(763), - [anon_sym_GT_LPAREN] = ACTIONS(763), - [sym_word] = ACTIONS(765), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(411), + [sym__concat] = ACTIONS(742), + [anon_sym_RBRACK] = ACTIONS(758), + [sym_comment] = ACTIONS(50), }, [175] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(426), - [anon_sym_DQUOTE] = ACTIONS(767), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), + [anon_sym_RBRACK] = ACTIONS(744), + [sym_comment] = ACTIONS(50), }, [176] = { - [aux_sym_concatenation_repeat1] = STATE(428), - [sym_file_descriptor] = ACTIONS(745), - [sym__concat] = ACTIONS(769), - [sym_variable_name] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_SEMI_SEMI] = ACTIONS(747), - [anon_sym_PIPE_AMP] = ACTIONS(747), - [anon_sym_AMP_AMP] = ACTIONS(747), - [anon_sym_PIPE_PIPE] = ACTIONS(747), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_GT] = ACTIONS(747), - [anon_sym_AMP_GT] = ACTIONS(747), - [anon_sym_AMP_GT_GT] = ACTIONS(747), - [anon_sym_LT_AMP] = ACTIONS(747), - [anon_sym_GT_AMP] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(747), - [sym_raw_string] = ACTIONS(747), - [anon_sym_DOLLAR] = ACTIONS(747), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(747), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(747), - [anon_sym_BQUOTE] = ACTIONS(747), - [anon_sym_LT_LPAREN] = ACTIONS(747), - [anon_sym_GT_LPAREN] = ACTIONS(747), - [sym_word] = ACTIONS(747), + [aux_sym_concatenation_repeat1] = STATE(413), + [sym_file_descriptor] = ACTIONS(760), + [sym_word] = ACTIONS(760), + [sym__concat] = ACTIONS(762), + [sym_variable_name] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(764), + [anon_sym_SEMI_SEMI] = ACTIONS(764), + [anon_sym_PIPE_AMP] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(764), + [anon_sym_PIPE_PIPE] = ACTIONS(764), + [anon_sym_LT] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(764), + [anon_sym_GT_GT] = ACTIONS(764), + [anon_sym_AMP_GT] = ACTIONS(764), + [anon_sym_AMP_GT_GT] = ACTIONS(764), + [anon_sym_LT_AMP] = ACTIONS(764), + [anon_sym_GT_AMP] = ACTIONS(764), + [anon_sym_DQUOTE] = ACTIONS(764), + [sym_raw_string] = ACTIONS(764), + [anon_sym_DOLLAR] = ACTIONS(764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(764), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(764), + [anon_sym_LT_LPAREN] = ACTIONS(764), + [anon_sym_GT_LPAREN] = ACTIONS(764), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_LF] = ACTIONS(747), - [anon_sym_AMP] = ACTIONS(747), + [sym_identifier] = ACTIONS(764), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LF] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(764), }, [177] = { - [sym_special_variable_name] = STATE(431), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_DOLLAR] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(771), - [anon_sym_AT] = ACTIONS(771), + [sym_file_descriptor] = ACTIONS(760), + [sym_word] = ACTIONS(760), + [sym_variable_name] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(764), + [anon_sym_SEMI_SEMI] = ACTIONS(764), + [anon_sym_PIPE_AMP] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(764), + [anon_sym_PIPE_PIPE] = ACTIONS(764), + [anon_sym_LT] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(764), + [anon_sym_GT_GT] = ACTIONS(764), + [anon_sym_AMP_GT] = ACTIONS(764), + [anon_sym_AMP_GT_GT] = ACTIONS(764), + [anon_sym_LT_AMP] = ACTIONS(764), + [anon_sym_GT_AMP] = ACTIONS(764), + [anon_sym_DQUOTE] = ACTIONS(764), + [sym_raw_string] = ACTIONS(764), + [anon_sym_DOLLAR] = ACTIONS(764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(764), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(764), + [anon_sym_LT_LPAREN] = ACTIONS(764), + [anon_sym_GT_LPAREN] = ACTIONS(764), [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_QMARK] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_0] = ACTIONS(775), - [anon_sym__] = ACTIONS(775), + [sym_identifier] = ACTIONS(764), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LF] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(764), }, [178] = { - [sym_special_variable_name] = STATE(434), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(777), - [anon_sym_AT] = ACTIONS(62), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), + [sym_concatenation] = STATE(72), + [sym_string] = STATE(414), + [sym_simple_expansion] = STATE(414), + [sym_expansion] = STATE(414), + [sym_command_substitution] = STATE(414), + [sym_process_substitution] = STATE(414), + [aux_sym_for_statement_repeat1] = STATE(417), + [sym_word] = ACTIONS(766), + [anon_sym_RPAREN] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(102), + [sym_raw_string] = ACTIONS(766), + [anon_sym_DOLLAR] = ACTIONS(104), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(108), + [anon_sym_BQUOTE] = ACTIONS(110), + [anon_sym_LT_LPAREN] = ACTIONS(112), + [anon_sym_GT_LPAREN] = ACTIONS(112), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(770), }, [179] = { - [sym_for_statement] = STATE(435), - [sym_while_statement] = STATE(435), - [sym_if_statement] = STATE(435), - [sym_case_statement] = STATE(435), - [sym_function_definition] = STATE(435), - [sym_subshell] = STATE(435), - [sym_pipeline] = STATE(435), - [sym_list] = STATE(435), - [sym_bracket_command] = STATE(435), - [sym_command] = STATE(435), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(436), - [sym_declaration_command] = STATE(435), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(419), + [anon_sym_DQUOTE] = ACTIONS(772), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_comment] = ACTIONS(64), }, [180] = { - [sym_for_statement] = STATE(437), - [sym_while_statement] = STATE(437), - [sym_if_statement] = STATE(437), - [sym_case_statement] = STATE(437), - [sym_function_definition] = STATE(437), - [sym_subshell] = STATE(437), - [sym_pipeline] = STATE(437), - [sym_list] = STATE(437), - [sym_bracket_command] = STATE(437), - [sym_command] = STATE(437), - [sym_command_name] = STATE(140), - [sym_variable_assignment] = STATE(438), - [sym_declaration_command] = STATE(437), - [sym_subscript] = STATE(142), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(137), - [sym_simple_expansion] = STATE(137), - [sym_expansion] = STATE(137), - [sym_command_substitution] = STATE(137), - [sym_process_substitution] = STATE(137), - [aux_sym_command_repeat1] = STATE(143), - [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), + [sym_special_variable_name] = STATE(422), + [anon_sym_DOLLAR] = ACTIONS(774), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_AT] = ACTIONS(774), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(776), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_DASH] = ACTIONS(774), + [anon_sym_BANG] = ACTIONS(774), + [anon_sym_0] = ACTIONS(778), + [anon_sym__] = ACTIONS(778), }, [181] = { - [sym_for_statement] = STATE(439), - [sym_while_statement] = STATE(439), - [sym_if_statement] = STATE(439), - [sym_case_statement] = STATE(439), - [sym_function_definition] = STATE(439), - [sym_subshell] = STATE(439), - [sym_pipeline] = STATE(439), - [sym_list] = STATE(439), - [sym_bracket_command] = STATE(439), - [sym_command] = STATE(439), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(440), - [sym_declaration_command] = STATE(439), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), + [sym_special_variable_name] = STATE(425), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(780), + [anon_sym_AT] = ACTIONS(162), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(782), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), }, [182] = { - [sym_concatenation] = STATE(448), - [sym_string] = STATE(442), - [sym_simple_expansion] = STATE(442), - [sym_expansion] = STATE(442), - [sym_command_substitution] = STATE(442), - [sym_process_substitution] = STATE(442), - [aux_sym_for_statement_repeat1] = STATE(449), - [anon_sym_DQUOTE] = ACTIONS(781), - [sym_raw_string] = ACTIONS(783), - [anon_sym_DOLLAR] = ACTIONS(785), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(787), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(789), - [anon_sym_BQUOTE] = ACTIONS(791), - [anon_sym_LT_LPAREN] = ACTIONS(793), - [anon_sym_GT_LPAREN] = ACTIONS(793), - [sym_word] = ACTIONS(795), - [sym_comment] = ACTIONS(52), + [sym_for_statement] = STATE(426), + [sym_while_statement] = STATE(426), + [sym_if_statement] = STATE(426), + [sym_case_statement] = STATE(426), + [sym_function_definition] = STATE(426), + [sym_subshell] = STATE(426), + [sym_pipeline] = STATE(426), + [sym_list] = STATE(426), + [sym_bracket_command] = STATE(426), + [sym_command] = STATE(426), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(427), + [sym_declaration_command] = STATE(426), + [sym_subscript] = STATE(126), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), }, [183] = { - [sym_concatenation] = STATE(448), - [sym_string] = STATE(442), - [sym_simple_expansion] = STATE(442), - [sym_expansion] = STATE(442), - [sym_command_substitution] = STATE(442), - [sym_process_substitution] = STATE(442), - [aux_sym_for_statement_repeat1] = STATE(450), - [anon_sym_DQUOTE] = ACTIONS(781), - [sym_raw_string] = ACTIONS(783), - [anon_sym_DOLLAR] = ACTIONS(785), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(787), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(789), - [anon_sym_BQUOTE] = ACTIONS(791), - [anon_sym_LT_LPAREN] = ACTIONS(793), - [anon_sym_GT_LPAREN] = ACTIONS(793), - [sym_word] = ACTIONS(795), - [sym_comment] = ACTIONS(52), + [sym_for_statement] = STATE(428), + [sym_while_statement] = STATE(428), + [sym_if_statement] = STATE(428), + [sym_case_statement] = STATE(428), + [sym_function_definition] = STATE(428), + [sym_subshell] = STATE(428), + [sym_pipeline] = STATE(428), + [sym_list] = STATE(428), + [sym_bracket_command] = STATE(428), + [sym_command] = STATE(428), + [sym_command_name] = STATE(135), + [sym_variable_assignment] = STATE(429), + [sym_declaration_command] = STATE(428), + [sym_subscript] = STATE(137), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(129), + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [sym_process_substitution] = STATE(129), + [aux_sym_command_repeat1] = STATE(138), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(206), + [sym_variable_name] = ACTIONS(208), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(212), + [anon_sym_typeset] = ACTIONS(212), + [anon_sym_export] = ACTIONS(212), + [anon_sym_readonly] = ACTIONS(212), + [anon_sym_local] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(206), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(214), }, [184] = { - [sym__terminated_statement] = STATE(452), - [sym_for_statement] = STATE(453), - [sym_while_statement] = STATE(453), - [sym_if_statement] = STATE(453), - [sym_case_statement] = STATE(453), - [sym_function_definition] = STATE(453), - [sym_subshell] = STATE(453), - [sym_pipeline] = STATE(453), - [sym_list] = STATE(453), - [sym_bracket_command] = STATE(453), - [sym_command] = STATE(453), - [sym_command_name] = STATE(25), - [sym_variable_assignment] = STATE(454), - [sym_declaration_command] = STATE(453), - [sym_subscript] = STATE(27), + [sym_for_statement] = STATE(430), + [sym_while_statement] = STATE(430), + [sym_if_statement] = STATE(430), + [sym_case_statement] = STATE(430), + [sym_function_definition] = STATE(430), + [sym_subshell] = STATE(430), + [sym_pipeline] = STATE(430), + [sym_list] = STATE(430), + [sym_bracket_command] = STATE(430), + [sym_command] = STATE(430), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(431), + [sym_declaration_command] = STATE(430), + [sym_subscript] = STATE(126), [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(455), - [aux_sym_command_repeat1] = STATE(31), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), [sym_file_descriptor] = ACTIONS(8), - [sym_variable_name] = ACTIONS(10), - [anon_sym_for] = ACTIONS(14), - [anon_sym_while] = ACTIONS(16), - [anon_sym_done] = ACTIONS(797), - [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), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), }, [185] = { - [anon_sym_PIPE] = ACTIONS(799), - [anon_sym_RPAREN] = ACTIONS(799), - [anon_sym_SEMI_SEMI] = ACTIONS(799), - [anon_sym_PIPE_AMP] = ACTIONS(799), - [anon_sym_AMP_AMP] = ACTIONS(799), - [anon_sym_PIPE_PIPE] = ACTIONS(799), + [aux_sym_concatenation_repeat1] = STATE(432), + [sym_file_descriptor] = ACTIONS(784), + [sym_word] = ACTIONS(784), + [sym__concat] = ACTIONS(762), + [sym_variable_name] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(786), + [anon_sym_SEMI_SEMI] = ACTIONS(786), + [anon_sym_PIPE_AMP] = ACTIONS(786), + [anon_sym_AMP_AMP] = ACTIONS(786), + [anon_sym_PIPE_PIPE] = ACTIONS(786), + [anon_sym_LT] = ACTIONS(786), + [anon_sym_GT] = ACTIONS(786), + [anon_sym_GT_GT] = ACTIONS(786), + [anon_sym_AMP_GT] = ACTIONS(786), + [anon_sym_AMP_GT_GT] = ACTIONS(786), + [anon_sym_LT_AMP] = ACTIONS(786), + [anon_sym_GT_AMP] = ACTIONS(786), + [anon_sym_DQUOTE] = ACTIONS(786), + [sym_raw_string] = ACTIONS(786), + [anon_sym_DOLLAR] = ACTIONS(786), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(786), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(786), + [anon_sym_BQUOTE] = ACTIONS(786), + [anon_sym_LT_LPAREN] = ACTIONS(786), + [anon_sym_GT_LPAREN] = ACTIONS(786), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(799), - [anon_sym_LF] = ACTIONS(799), - [anon_sym_AMP] = ACTIONS(799), + [sym_identifier] = ACTIONS(786), + [anon_sym_SEMI] = ACTIONS(786), + [anon_sym_LF] = ACTIONS(786), + [anon_sym_AMP] = ACTIONS(786), }, [186] = { - [anon_sym_do] = ACTIONS(606), - [anon_sym_then] = ACTIONS(606), - [sym_comment] = ACTIONS(52), + [sym_concatenation] = STATE(441), + [sym_string] = STATE(433), + [sym_simple_expansion] = STATE(433), + [sym_expansion] = STATE(433), + [sym_command_substitution] = STATE(433), + [sym_process_substitution] = STATE(433), + [aux_sym_for_statement_repeat1] = STATE(442), + [sym_word] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(790), + [sym_raw_string] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), + [anon_sym_BQUOTE] = ACTIONS(798), + [anon_sym_LT_LPAREN] = ACTIONS(800), + [anon_sym_GT_LPAREN] = ACTIONS(800), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(802), }, [187] = { - [sym__terminated_statement] = STATE(459), - [sym_for_statement] = STATE(460), - [sym_while_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_elif_clause] = STATE(461), - [sym_else_clause] = STATE(462), - [sym_case_statement] = STATE(460), - [sym_function_definition] = STATE(460), - [sym_subshell] = STATE(460), - [sym_pipeline] = STATE(460), - [sym_list] = STATE(460), - [sym_bracket_command] = STATE(460), - [sym_command] = STATE(460), + [sym__terminated_statement] = STATE(444), + [sym_for_statement] = STATE(445), + [sym_while_statement] = STATE(445), + [sym_if_statement] = STATE(445), + [sym_case_statement] = STATE(445), + [sym_function_definition] = STATE(445), + [sym_subshell] = STATE(445), + [sym_pipeline] = STATE(445), + [sym_list] = STATE(445), + [sym_bracket_command] = STATE(445), + [sym_command] = STATE(445), [sym_command_name] = STATE(25), - [sym_variable_assignment] = STATE(463), - [sym_declaration_command] = STATE(460), + [sym_variable_assignment] = STATE(446), + [sym_declaration_command] = STATE(445), [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(464), - [aux_sym_if_statement_repeat1] = STATE(465), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(447), [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(801), - [anon_sym_elif] = ACTIONS(803), - [anon_sym_else] = ACTIONS(805), - [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), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_done] = ACTIONS(804), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), [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), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), }, [188] = { - [sym__concat] = ACTIONS(450), - [anon_sym_in] = ACTIONS(452), - [anon_sym_SEMI_SEMI] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_RPAREN] = ACTIONS(806), + [anon_sym_SEMI_SEMI] = ACTIONS(806), + [anon_sym_PIPE_AMP] = ACTIONS(806), + [anon_sym_AMP_AMP] = ACTIONS(806), + [anon_sym_PIPE_PIPE] = ACTIONS(806), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(452), - [anon_sym_LF] = ACTIONS(452), - [anon_sym_AMP] = ACTIONS(452), + [anon_sym_SEMI] = ACTIONS(806), + [anon_sym_LF] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(806), }, [189] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(298), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), + [anon_sym_do] = ACTIONS(600), + [anon_sym_then] = ACTIONS(600), + [sym_comment] = ACTIONS(50), }, [190] = { - [sym_string] = STATE(467), - [sym_simple_expansion] = STATE(467), - [sym_expansion] = STATE(467), - [sym_command_substitution] = STATE(467), - [sym_process_substitution] = STATE(467), - [anon_sym_DQUOTE] = ACTIONS(70), - [sym_raw_string] = ACTIONS(809), - [anon_sym_DOLLAR] = ACTIONS(74), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(76), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(78), - [anon_sym_BQUOTE] = ACTIONS(80), - [anon_sym_LT_LPAREN] = ACTIONS(82), - [anon_sym_GT_LPAREN] = ACTIONS(82), - [sym_word] = ACTIONS(811), - [sym_comment] = ACTIONS(52), + [sym__terminated_statement] = STATE(451), + [sym_for_statement] = STATE(452), + [sym_while_statement] = STATE(452), + [sym_if_statement] = STATE(452), + [sym_elif_clause] = STATE(453), + [sym_else_clause] = STATE(454), + [sym_case_statement] = STATE(452), + [sym_function_definition] = STATE(452), + [sym_subshell] = STATE(452), + [sym_pipeline] = STATE(452), + [sym_list] = STATE(452), + [sym_bracket_command] = STATE(452), + [sym_command] = STATE(452), + [sym_command_name] = STATE(25), + [sym_variable_assignment] = STATE(455), + [sym_declaration_command] = STATE(452), + [sym_subscript] = STATE(27), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(456), + [aux_sym_if_statement_repeat1] = STATE(457), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_fi] = ACTIONS(808), + [anon_sym_elif] = ACTIONS(810), + [anon_sym_else] = ACTIONS(812), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), }, [191] = { - [anon_sym_SEMI_SEMI] = ACTIONS(813), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(813), - [anon_sym_LF] = ACTIONS(813), - [anon_sym_AMP] = ACTIONS(813), + [sym_string] = STATE(458), + [sym_simple_expansion] = STATE(458), + [sym_expansion] = STATE(458), + [sym_command_substitution] = STATE(458), + [sym_process_substitution] = STATE(458), + [sym_word] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(74), + [sym_raw_string] = ACTIONS(814), + [anon_sym_DOLLAR] = ACTIONS(76), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(78), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(80), + [anon_sym_BQUOTE] = ACTIONS(82), + [anon_sym_LT_LPAREN] = ACTIONS(84), + [anon_sym_GT_LPAREN] = ACTIONS(84), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(816), }, [192] = { - [anon_sym_in] = ACTIONS(815), - [sym_comment] = ACTIONS(52), + [anon_sym_SEMI_SEMI] = ACTIONS(818), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_LF] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(818), }, [193] = { - [aux_sym_concatenation_repeat1] = STATE(470), - [sym__concat] = ACTIONS(338), + [anon_sym_in] = ACTIONS(820), + [sym_comment] = ACTIONS(50), + }, + [194] = { + [aux_sym_concatenation_repeat1] = STATE(462), + [sym__concat] = ACTIONS(334), + [anon_sym_in] = ACTIONS(284), + [anon_sym_SEMI_SEMI] = ACTIONS(284), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_LF] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(284), + }, + [195] = { + [sym__concat] = ACTIONS(446), + [anon_sym_in] = ACTIONS(448), + [anon_sym_SEMI_SEMI] = ACTIONS(448), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(448), + [anon_sym_LF] = ACTIONS(448), + [anon_sym_AMP] = ACTIONS(448), + }, + [196] = { + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(291), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_comment] = ACTIONS(64), + }, + [197] = { + [sym__concat] = ACTIONS(466), + [anon_sym_in] = ACTIONS(468), + [anon_sym_SEMI_SEMI] = ACTIONS(468), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(468), + [anon_sym_LF] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(468), + }, + [198] = { + [sym__concat] = ACTIONS(470), + [anon_sym_in] = ACTIONS(472), + [anon_sym_SEMI_SEMI] = ACTIONS(472), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(472), + [anon_sym_LF] = ACTIONS(472), + [anon_sym_AMP] = ACTIONS(472), + }, + [199] = { + [sym__concat] = ACTIONS(474), [anon_sym_in] = ACTIONS(476), [anon_sym_SEMI_SEMI] = ACTIONS(476), [sym_comment] = ACTIONS(64), @@ -11940,183 +11096,180 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(476), [anon_sym_AMP] = ACTIONS(476), }, - [194] = { - [sym__concat] = ACTIONS(322), - [anon_sym_in] = ACTIONS(478), - [anon_sym_SEMI_SEMI] = ACTIONS(478), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_LF] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(478), - }, - [195] = { - [sym__concat] = ACTIONS(480), - [anon_sym_in] = ACTIONS(482), - [anon_sym_SEMI_SEMI] = ACTIONS(482), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(482), - [anon_sym_LF] = ACTIONS(482), - [anon_sym_AMP] = ACTIONS(482), - }, - [196] = { - [sym__concat] = ACTIONS(484), - [anon_sym_in] = ACTIONS(486), - [anon_sym_SEMI_SEMI] = ACTIONS(486), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(486), - [anon_sym_LF] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(486), - }, - [197] = { - [sym_special_variable_name] = STATE(472), - [anon_sym_RBRACE] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(62), - [anon_sym_AT] = ACTIONS(62), - [anon_sym_COLON] = ACTIONS(324), - [anon_sym_COLON_QMARK] = ACTIONS(322), - [anon_sym_COLON_DASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(817), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), - }, - [198] = { - [anon_sym_RBRACE] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_COLON_QMARK] = ACTIONS(823), - [anon_sym_COLON_DASH] = ACTIONS(823), - [anon_sym_PERCENT] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [sym_comment] = ACTIONS(52), - }, - [199] = { - [anon_sym_RBRACE] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_COLON_QMARK] = ACTIONS(831), - [anon_sym_COLON_DASH] = ACTIONS(831), - [anon_sym_PERCENT] = ACTIONS(831), - [anon_sym_SLASH] = ACTIONS(831), - [sym_comment] = ACTIONS(52), - }, [200] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(835), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), + [sym_special_variable_name] = STATE(465), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(466), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(478), + [anon_sym_COLON_QMARK] = ACTIONS(466), + [anon_sym_COLON_DASH] = ACTIONS(466), + [anon_sym_PERCENT] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(466), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(824), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), }, [201] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(835), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_COLON] = ACTIONS(832), + [anon_sym_COLON_QMARK] = ACTIONS(830), + [anon_sym_COLON_DASH] = ACTIONS(830), + [anon_sym_PERCENT] = ACTIONS(830), + [anon_sym_SLASH] = ACTIONS(830), + [sym_comment] = ACTIONS(50), }, [202] = { - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(840), + [anon_sym_COLON_QMARK] = ACTIONS(838), + [anon_sym_COLON_DASH] = ACTIONS(838), + [anon_sym_PERCENT] = ACTIONS(838), + [anon_sym_SLASH] = ACTIONS(838), + [sym_comment] = ACTIONS(50), }, [203] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(835), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(842), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), }, [204] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(837), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(842), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), }, [205] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(837), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_BQUOTE] = ACTIONS(842), + [sym_comment] = ACTIONS(50), }, [206] = { - [anon_sym_RPAREN] = ACTIONS(839), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), }, [207] = { + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(844), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), + }, + [208] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(844), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [209] = { + [anon_sym_SEMI_SEMI] = ACTIONS(846), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(846), + [anon_sym_LF] = ACTIONS(846), + [anon_sym_AMP] = ACTIONS(846), + }, + [210] = { + [anon_sym_in] = ACTIONS(848), + [sym_comment] = ACTIONS(50), + }, + [211] = { + [aux_sym_concatenation_repeat1] = STATE(462), + [sym__concat] = ACTIONS(334), + [anon_sym_in] = ACTIONS(598), + [anon_sym_SEMI_SEMI] = ACTIONS(598), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(598), + [anon_sym_LF] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(598), + }, + [212] = { + [anon_sym_RPAREN] = ACTIONS(850), + [sym_comment] = ACTIONS(50), + }, + [213] = { [sym__terminated_statement] = STATE(23), [sym_for_statement] = STATE(24), [sym_while_statement] = STATE(24), @@ -12134,147 +11287,4384 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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(483), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(478), [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(841), - [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), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_RBRACE] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), [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), - }, - [208] = { - [sym_file_redirect] = STATE(486), - [sym_file_descriptor] = ACTIONS(843), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_SEMI_SEMI] = ACTIONS(845), - [anon_sym_PIPE_AMP] = ACTIONS(845), - [anon_sym_AMP_AMP] = ACTIONS(845), - [anon_sym_PIPE_PIPE] = ACTIONS(845), - [anon_sym_LT] = ACTIONS(847), - [anon_sym_GT] = ACTIONS(847), - [anon_sym_GT_GT] = ACTIONS(847), - [anon_sym_AMP_GT] = ACTIONS(847), - [anon_sym_AMP_GT_GT] = ACTIONS(847), - [anon_sym_LT_AMP] = ACTIONS(847), - [anon_sym_GT_AMP] = ACTIONS(847), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(845), - [anon_sym_LF] = ACTIONS(845), - [anon_sym_AMP] = ACTIONS(845), - }, - [209] = { - [sym_concatenation] = STATE(173), - [sym_string] = STATE(487), - [sym_array] = STATE(173), - [sym_simple_expansion] = STATE(487), - [sym_expansion] = STATE(487), - [sym_command_substitution] = STATE(487), - [sym_process_substitution] = STATE(487), - [sym__empty_value] = ACTIONS(298), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(302), - [sym_raw_string] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(306), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(308), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(310), - [anon_sym_BQUOTE] = ACTIONS(312), - [anon_sym_LT_LPAREN] = ACTIONS(314), - [anon_sym_GT_LPAREN] = ACTIONS(314), - [sym_word] = ACTIONS(851), - [sym_comment] = ACTIONS(52), - }, - [210] = { - [sym_compound_statement] = STATE(489), - [anon_sym_LPAREN] = ACTIONS(853), - [anon_sym_LBRACE] = ACTIONS(356), - [sym_comment] = ACTIONS(52), - }, - [211] = { - [sym__assignment] = STATE(266), - [anon_sym_LBRACK] = ACTIONS(58), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_PLUS_EQ] = ACTIONS(855), - [sym_comment] = ACTIONS(52), - }, - [212] = { - [sym__assignment] = STATE(266), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_PLUS_EQ] = ACTIONS(855), - [sym_comment] = ACTIONS(52), - }, - [213] = { - [sym_variable_assignment] = STATE(83), - [sym_subscript] = STATE(212), - [aux_sym_declaration_command_repeat1] = STATE(491), - [aux_sym_declaration_command_repeat2] = STATE(492), - [sym_variable_name] = ACTIONS(362), - [anon_sym_PIPE] = ACTIONS(430), - [anon_sym_RPAREN] = ACTIONS(430), - [anon_sym_SEMI_SEMI] = ACTIONS(430), - [anon_sym_PIPE_AMP] = ACTIONS(430), - [anon_sym_AMP_AMP] = ACTIONS(430), - [anon_sym_PIPE_PIPE] = ACTIONS(430), - [anon_sym_DASH] = ACTIONS(134), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(136), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_LF] = ACTIONS(430), - [anon_sym_AMP] = ACTIONS(430), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), }, [214] = { - [sym_variable_assignment] = STATE(83), - [sym_subscript] = STATE(212), - [aux_sym_declaration_command_repeat2] = STATE(493), - [sym_variable_name] = ACTIONS(362), - [anon_sym_PIPE] = ACTIONS(430), - [anon_sym_RPAREN] = ACTIONS(430), - [anon_sym_SEMI_SEMI] = ACTIONS(430), - [anon_sym_PIPE_AMP] = ACTIONS(430), - [anon_sym_AMP_AMP] = ACTIONS(430), - [anon_sym_PIPE_PIPE] = ACTIONS(430), + [sym_file_redirect] = STATE(481), + [sym_file_descriptor] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(856), + [anon_sym_SEMI_SEMI] = ACTIONS(856), + [anon_sym_PIPE_AMP] = ACTIONS(856), + [anon_sym_AMP_AMP] = ACTIONS(856), + [anon_sym_PIPE_PIPE] = ACTIONS(856), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_GT] = ACTIONS(858), + [anon_sym_GT_GT] = ACTIONS(858), + [anon_sym_AMP_GT] = ACTIONS(858), + [anon_sym_AMP_GT_GT] = ACTIONS(858), + [anon_sym_LT_AMP] = ACTIONS(858), + [anon_sym_GT_AMP] = ACTIONS(858), [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(136), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_LF] = ACTIONS(430), - [anon_sym_AMP] = ACTIONS(430), + [anon_sym_SEMI] = ACTIONS(856), + [anon_sym_LF] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(856), }, [215] = { - [aux_sym_concatenation_repeat1] = STATE(494), + [aux_sym_concatenation_repeat1] = STATE(482), + [sym_file_descriptor] = ACTIONS(282), + [sym_word] = ACTIONS(282), + [sym__concat] = ACTIONS(60), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_RPAREN] = ACTIONS(284), + [anon_sym_SEMI_SEMI] = ACTIONS(284), + [anon_sym_PIPE_AMP] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_AMP_GT] = ACTIONS(284), + [anon_sym_AMP_GT_GT] = ACTIONS(284), + [anon_sym_LT_AMP] = ACTIONS(284), + [anon_sym_GT_AMP] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_LT_LT_DASH] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(284), + [sym_raw_string] = ACTIONS(284), + [anon_sym_DOLLAR] = ACTIONS(284), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(284), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(284), + [anon_sym_GT_LPAREN] = ACTIONS(284), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_LF] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(284), + }, + [216] = { + [sym_concatenation] = STATE(177), + [sym_string] = STATE(483), + [sym_array] = STATE(177), + [sym_simple_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [sym_word] = ACTIONS(860), + [sym__empty_value] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [sym_raw_string] = ACTIONS(860), + [anon_sym_DOLLAR] = ACTIONS(310), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(312), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_LT_LPAREN] = ACTIONS(318), + [anon_sym_GT_LPAREN] = ACTIONS(318), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(862), + }, + [217] = { + [sym_compound_statement] = STATE(486), + [anon_sym_LPAREN] = ACTIONS(864), + [anon_sym_LBRACE] = ACTIONS(358), + [sym_comment] = ACTIONS(50), + }, + [218] = { + [sym__assignment] = STATE(261), + [anon_sym_LBRACK] = ACTIONS(66), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [sym_comment] = ACTIONS(50), + }, + [219] = { + [sym__assignment] = STATE(261), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [sym_comment] = ACTIONS(50), + }, + [220] = { + [sym_variable_assignment] = STATE(77), + [sym_subscript] = STATE(219), + [aux_sym_declaration_command_repeat1] = STATE(488), + [sym_word] = ACTIONS(120), + [sym_variable_name] = ACTIONS(364), + [anon_sym_PIPE] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(422), + [anon_sym_SEMI_SEMI] = ACTIONS(422), + [anon_sym_PIPE_AMP] = ACTIONS(422), + [anon_sym_AMP_AMP] = ACTIONS(422), + [anon_sym_PIPE_PIPE] = ACTIONS(422), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(126), + [anon_sym_SEMI] = ACTIONS(422), + [anon_sym_LF] = ACTIONS(422), + [anon_sym_AMP] = ACTIONS(422), + }, + [221] = { + [anon_sym_RPAREN] = ACTIONS(868), + [sym_comment] = ACTIONS(50), + }, + [222] = { + [aux_sym_concatenation_repeat1] = STATE(482), + [sym_file_descriptor] = ACTIONS(596), + [sym_word] = ACTIONS(596), + [sym__concat] = ACTIONS(60), + [anon_sym_PIPE] = ACTIONS(598), + [anon_sym_RPAREN] = ACTIONS(598), + [anon_sym_SEMI_SEMI] = ACTIONS(598), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(598), + [anon_sym_PIPE_PIPE] = ACTIONS(598), + [anon_sym_LT] = ACTIONS(598), + [anon_sym_GT] = ACTIONS(598), + [anon_sym_GT_GT] = ACTIONS(598), + [anon_sym_AMP_GT] = ACTIONS(598), + [anon_sym_AMP_GT_GT] = ACTIONS(598), + [anon_sym_LT_AMP] = ACTIONS(598), + [anon_sym_GT_AMP] = ACTIONS(598), + [anon_sym_LT_LT] = ACTIONS(598), + [anon_sym_LT_LT_DASH] = ACTIONS(598), + [anon_sym_DQUOTE] = ACTIONS(598), + [sym_raw_string] = ACTIONS(598), + [anon_sym_DOLLAR] = ACTIONS(598), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(598), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(598), + [anon_sym_BQUOTE] = ACTIONS(598), + [anon_sym_LT_LPAREN] = ACTIONS(598), + [anon_sym_GT_LPAREN] = ACTIONS(598), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(598), + [anon_sym_SEMI] = ACTIONS(598), + [anon_sym_LF] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(598), + }, + [223] = { + [sym_for_statement] = STATE(371), + [sym_while_statement] = STATE(371), + [sym_if_statement] = STATE(371), + [sym_case_statement] = STATE(371), + [sym_function_definition] = STATE(371), + [sym_subshell] = STATE(371), + [sym_pipeline] = STATE(371), + [sym_list] = STATE(371), + [sym_bracket_command] = STATE(371), + [sym_command] = STATE(371), + [sym_command_name] = STATE(59), + [sym_variable_assignment] = STATE(372), + [sym_declaration_command] = STATE(371), + [sym_subscript] = STATE(61), + [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(63), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(90), + [sym_variable_name] = ACTIONS(92), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(94), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(96), + [anon_sym_typeset] = ACTIONS(96), + [anon_sym_export] = ACTIONS(96), + [anon_sym_readonly] = ACTIONS(96), + [anon_sym_local] = ACTIONS(96), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(90), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(98), + }, + [224] = { + [anon_sym_PIPE] = ACTIONS(870), + [anon_sym_RPAREN] = ACTIONS(870), + [anon_sym_SEMI_SEMI] = ACTIONS(870), + [anon_sym_PIPE_AMP] = ACTIONS(870), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_LF] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(870), + }, + [225] = { + [sym_file_descriptor] = ACTIONS(600), + [sym_word] = ACTIONS(600), + [sym_variable_name] = ACTIONS(600), + [anon_sym_for] = ACTIONS(602), + [anon_sym_while] = ACTIONS(602), + [anon_sym_if] = ACTIONS(602), + [anon_sym_case] = ACTIONS(602), + [anon_sym_RPAREN] = ACTIONS(872), + [anon_sym_function] = ACTIONS(602), + [anon_sym_LPAREN] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(602), + [anon_sym_typeset] = ACTIONS(602), + [anon_sym_export] = ACTIONS(602), + [anon_sym_readonly] = ACTIONS(602), + [anon_sym_local] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_GT_GT] = ACTIONS(600), + [anon_sym_AMP_GT] = ACTIONS(602), + [anon_sym_AMP_GT_GT] = ACTIONS(600), + [anon_sym_LT_AMP] = ACTIONS(600), + [anon_sym_GT_AMP] = ACTIONS(600), + [anon_sym_DQUOTE] = ACTIONS(600), + [sym_raw_string] = ACTIONS(600), + [anon_sym_DOLLAR] = ACTIONS(602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(600), + [anon_sym_LT_LPAREN] = ACTIONS(600), + [anon_sym_GT_LPAREN] = ACTIONS(600), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(604), + }, + [226] = { + [sym_for_statement] = STATE(491), + [sym_while_statement] = STATE(491), + [sym_if_statement] = STATE(491), + [sym_case_statement] = STATE(491), + [sym_function_definition] = STATE(491), + [sym_subshell] = STATE(491), + [sym_pipeline] = STATE(491), + [sym_list] = STATE(491), + [sym_bracket_command] = STATE(491), + [sym_command] = STATE(491), + [sym_command_name] = STATE(59), + [sym_variable_assignment] = STATE(492), + [sym_declaration_command] = STATE(491), + [sym_subscript] = STATE(61), + [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(63), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(90), + [sym_variable_name] = ACTIONS(92), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(94), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(96), + [anon_sym_typeset] = ACTIONS(96), + [anon_sym_export] = ACTIONS(96), + [anon_sym_readonly] = ACTIONS(96), + [anon_sym_local] = ACTIONS(96), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(90), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(98), + }, + [227] = { + [anon_sym_LT] = ACTIONS(874), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [sym_comment] = ACTIONS(50), + }, + [228] = { + [aux_sym_concatenation_repeat1] = STATE(215), + [sym_file_descriptor] = ACTIONS(388), + [sym_word] = ACTIONS(388), + [sym__concat] = ACTIONS(60), + [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_RPAREN] = ACTIONS(610), + [anon_sym_SEMI_SEMI] = ACTIONS(610), + [anon_sym_PIPE_AMP] = ACTIONS(610), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_PIPE_PIPE] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(610), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_AMP_GT] = ACTIONS(610), + [anon_sym_AMP_GT_GT] = ACTIONS(610), + [anon_sym_LT_AMP] = ACTIONS(610), + [anon_sym_GT_AMP] = ACTIONS(610), + [anon_sym_LT_LT] = ACTIONS(610), + [anon_sym_LT_LT_DASH] = ACTIONS(610), + [anon_sym_DQUOTE] = ACTIONS(610), + [sym_raw_string] = ACTIONS(610), + [anon_sym_DOLLAR] = ACTIONS(610), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(610), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(610), + [anon_sym_BQUOTE] = ACTIONS(610), + [anon_sym_LT_LPAREN] = ACTIONS(610), + [anon_sym_GT_LPAREN] = ACTIONS(610), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(610), + [anon_sym_SEMI] = ACTIONS(610), + [anon_sym_LF] = ACTIONS(610), + [anon_sym_AMP] = ACTIONS(610), + }, + [229] = { + [sym_concatenation] = STATE(384), + [sym_string] = STATE(494), + [sym_simple_expansion] = STATE(494), + [sym_expansion] = STATE(494), + [sym_command_substitution] = STATE(494), + [sym_process_substitution] = STATE(494), + [sym_word] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(614), + [sym_raw_string] = ACTIONS(878), + [anon_sym_DOLLAR] = ACTIONS(616), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(618), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(620), + [anon_sym_BQUOTE] = ACTIONS(622), + [anon_sym_LT_LPAREN] = ACTIONS(624), + [anon_sym_GT_LPAREN] = ACTIONS(624), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(880), + }, + [230] = { + [aux_sym_concatenation_repeat1] = STATE(222), + [sym_file_descriptor] = ACTIONS(406), + [sym_word] = ACTIONS(406), + [sym__concat] = ACTIONS(60), + [anon_sym_PIPE] = ACTIONS(632), + [anon_sym_RPAREN] = ACTIONS(632), + [anon_sym_SEMI_SEMI] = ACTIONS(632), + [anon_sym_PIPE_AMP] = ACTIONS(632), + [anon_sym_AMP_AMP] = ACTIONS(632), + [anon_sym_PIPE_PIPE] = ACTIONS(632), + [anon_sym_LT] = ACTIONS(632), + [anon_sym_GT] = ACTIONS(632), + [anon_sym_GT_GT] = ACTIONS(632), + [anon_sym_AMP_GT] = ACTIONS(632), + [anon_sym_AMP_GT_GT] = ACTIONS(632), + [anon_sym_LT_AMP] = ACTIONS(632), + [anon_sym_GT_AMP] = ACTIONS(632), + [anon_sym_LT_LT] = ACTIONS(632), + [anon_sym_LT_LT_DASH] = ACTIONS(632), + [anon_sym_DQUOTE] = ACTIONS(632), + [sym_raw_string] = ACTIONS(632), + [anon_sym_DOLLAR] = ACTIONS(632), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(632), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(632), + [anon_sym_BQUOTE] = ACTIONS(632), + [anon_sym_LT_LPAREN] = ACTIONS(632), + [anon_sym_GT_LPAREN] = ACTIONS(632), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(632), + [anon_sym_SEMI] = ACTIONS(632), + [anon_sym_LF] = ACTIONS(632), + [anon_sym_AMP] = ACTIONS(632), + }, + [231] = { + [sym_file_redirect] = STATE(151), + [sym_heredoc_redirect] = STATE(151), + [sym_concatenation] = STATE(152), + [sym_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym_for_statement_repeat1] = STATE(496), + [aux_sym_command_repeat2] = STATE(497), + [sym_file_descriptor] = ACTIONS(376), + [sym_word] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(638), + [anon_sym_RPAREN] = ACTIONS(638), + [anon_sym_SEMI_SEMI] = ACTIONS(638), + [anon_sym_PIPE_AMP] = ACTIONS(638), + [anon_sym_AMP_AMP] = ACTIONS(638), + [anon_sym_PIPE_PIPE] = ACTIONS(638), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(380), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(380), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [anon_sym_LT_LT] = ACTIONS(244), + [anon_sym_LT_LT_DASH] = ACTIONS(244), + [anon_sym_DQUOTE] = ACTIONS(246), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(250), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), + [anon_sym_BQUOTE] = ACTIONS(256), + [anon_sym_LT_LPAREN] = ACTIONS(258), + [anon_sym_GT_LPAREN] = ACTIONS(258), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(638), + [anon_sym_LF] = ACTIONS(638), + [anon_sym_AMP] = ACTIONS(638), + }, + [232] = { + [sym_file_redirect] = STATE(151), + [sym_heredoc_redirect] = STATE(151), + [aux_sym_command_repeat2] = STATE(498), + [sym_file_descriptor] = ACTIONS(376), + [anon_sym_PIPE] = ACTIONS(638), + [anon_sym_RPAREN] = ACTIONS(638), + [anon_sym_SEMI_SEMI] = ACTIONS(638), + [anon_sym_PIPE_AMP] = ACTIONS(638), + [anon_sym_AMP_AMP] = ACTIONS(638), + [anon_sym_PIPE_PIPE] = ACTIONS(638), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(380), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(380), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [anon_sym_LT_LT] = ACTIONS(244), + [anon_sym_LT_LT_DASH] = ACTIONS(244), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(638), + [anon_sym_LF] = ACTIONS(638), + [anon_sym_AMP] = ACTIONS(638), + }, + [233] = { + [anon_sym_PIPE] = ACTIONS(368), + [anon_sym_RPAREN] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(368), + [anon_sym_AMP_AMP] = ACTIONS(374), + [anon_sym_PIPE_PIPE] = ACTIONS(374), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(884), + }, + [234] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(368), + [anon_sym_RPAREN] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(368), + [anon_sym_AMP_AMP] = ACTIONS(374), + [anon_sym_PIPE_PIPE] = ACTIONS(374), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_GT_GT] = ACTIONS(264), + [anon_sym_AMP_GT] = ACTIONS(264), + [anon_sym_AMP_GT_GT] = ACTIONS(264), + [anon_sym_LT_AMP] = ACTIONS(264), + [anon_sym_GT_AMP] = ACTIONS(264), + [anon_sym_DQUOTE] = ACTIONS(264), + [sym_raw_string] = ACTIONS(264), + [anon_sym_DOLLAR] = ACTIONS(264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(264), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(264), + [anon_sym_BQUOTE] = ACTIONS(264), + [anon_sym_LT_LPAREN] = ACTIONS(264), + [anon_sym_GT_LPAREN] = ACTIONS(264), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(264), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(884), + }, + [235] = { + [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(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(235), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(640), + [sym_word] = ACTIONS(643), + [sym_variable_name] = ACTIONS(646), + [anon_sym_for] = ACTIONS(651), + [anon_sym_while] = ACTIONS(654), + [anon_sym_if] = ACTIONS(657), + [anon_sym_case] = ACTIONS(660), + [anon_sym_function] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACK_LBRACK] = ACTIONS(672), + [anon_sym_declare] = ACTIONS(675), + [anon_sym_typeset] = ACTIONS(675), + [anon_sym_export] = ACTIONS(675), + [anon_sym_readonly] = ACTIONS(675), + [anon_sym_local] = ACTIONS(675), + [anon_sym_LT] = ACTIONS(678), + [anon_sym_GT] = ACTIONS(678), + [anon_sym_GT_GT] = ACTIONS(681), + [anon_sym_AMP_GT] = ACTIONS(678), + [anon_sym_AMP_GT_GT] = ACTIONS(681), + [anon_sym_LT_AMP] = ACTIONS(681), + [anon_sym_GT_AMP] = ACTIONS(681), + [anon_sym_DQUOTE] = ACTIONS(684), + [sym_raw_string] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(696), + [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(702), + }, + [236] = { + [aux_sym_concatenation_repeat1] = STATE(222), + [sym_file_descriptor] = ACTIONS(216), + [sym_word] = ACTIONS(216), + [sym__concat] = ACTIONS(60), + [anon_sym_PIPE] = ACTIONS(218), + [anon_sym_RPAREN] = ACTIONS(218), + [anon_sym_SEMI_SEMI] = ACTIONS(218), + [anon_sym_PIPE_AMP] = ACTIONS(218), + [anon_sym_AMP_AMP] = ACTIONS(218), + [anon_sym_PIPE_PIPE] = ACTIONS(218), + [anon_sym_LT] = ACTIONS(218), + [anon_sym_GT] = ACTIONS(218), + [anon_sym_GT_GT] = ACTIONS(218), + [anon_sym_AMP_GT] = ACTIONS(218), + [anon_sym_AMP_GT_GT] = ACTIONS(218), + [anon_sym_LT_AMP] = ACTIONS(218), + [anon_sym_GT_AMP] = ACTIONS(218), + [anon_sym_LT_LT] = ACTIONS(218), + [anon_sym_LT_LT_DASH] = ACTIONS(218), + [anon_sym_DQUOTE] = ACTIONS(218), + [sym_raw_string] = ACTIONS(218), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(218), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(218), + [anon_sym_BQUOTE] = ACTIONS(218), + [anon_sym_LT_LPAREN] = ACTIONS(218), + [anon_sym_GT_LPAREN] = ACTIONS(218), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(218), + [anon_sym_SEMI] = ACTIONS(218), + [anon_sym_LF] = ACTIONS(218), + [anon_sym_AMP] = ACTIONS(218), + }, + [237] = { + [sym_file_redirect] = STATE(151), + [sym_heredoc_redirect] = STATE(151), + [sym_concatenation] = STATE(152), + [sym_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym_for_statement_repeat1] = STATE(500), + [aux_sym_command_repeat2] = STATE(497), + [sym_file_descriptor] = ACTIONS(376), + [sym_word] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(638), + [anon_sym_RPAREN] = ACTIONS(638), + [anon_sym_SEMI_SEMI] = ACTIONS(638), + [anon_sym_PIPE_AMP] = ACTIONS(638), + [anon_sym_AMP_AMP] = ACTIONS(638), + [anon_sym_PIPE_PIPE] = ACTIONS(638), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(380), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(380), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [anon_sym_LT_LT] = ACTIONS(244), + [anon_sym_LT_LT_DASH] = ACTIONS(244), + [anon_sym_DQUOTE] = ACTIONS(246), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(250), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), + [anon_sym_BQUOTE] = ACTIONS(256), + [anon_sym_LT_LPAREN] = ACTIONS(258), + [anon_sym_GT_LPAREN] = ACTIONS(258), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(638), + [anon_sym_LF] = ACTIONS(638), + [anon_sym_AMP] = ACTIONS(638), + }, + [238] = { + [sym_string] = STATE(501), + [sym_simple_expansion] = STATE(501), + [sym_expansion] = STATE(501), + [sym_command_substitution] = STATE(501), + [sym_process_substitution] = STATE(501), + [sym_word] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(102), + [sym_raw_string] = ACTIONS(886), + [anon_sym_DOLLAR] = ACTIONS(104), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(108), + [anon_sym_BQUOTE] = ACTIONS(110), + [anon_sym_LT_LPAREN] = ACTIONS(112), + [anon_sym_GT_LPAREN] = ACTIONS(112), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(888), + }, + [239] = { + [aux_sym_concatenation_repeat1] = STATE(503), + [sym_word] = ACTIONS(282), + [sym__concat] = ACTIONS(390), + [anon_sym_RBRACK] = ACTIONS(282), + [anon_sym_DQUOTE] = ACTIONS(282), + [sym_raw_string] = ACTIONS(282), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(282), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(282), + [anon_sym_LT_LPAREN] = ACTIONS(282), + [anon_sym_GT_LPAREN] = ACTIONS(282), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(890), + }, + [240] = { + [sym_word] = ACTIONS(446), + [sym__concat] = ACTIONS(446), + [anon_sym_RPAREN] = ACTIONS(446), + [anon_sym_RBRACK] = ACTIONS(892), + [anon_sym_RBRACK_RBRACK] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(446), + [sym_raw_string] = ACTIONS(446), + [anon_sym_DOLLAR] = ACTIONS(892), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(892), + }, + [241] = { + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(291), + [anon_sym_DQUOTE] = ACTIONS(894), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_comment] = ACTIONS(64), + }, + [242] = { + [sym_word] = ACTIONS(466), + [sym__concat] = ACTIONS(466), + [anon_sym_RPAREN] = ACTIONS(466), + [anon_sym_RBRACK] = ACTIONS(478), + [anon_sym_RBRACK_RBRACK] = ACTIONS(466), + [anon_sym_DQUOTE] = ACTIONS(466), + [sym_raw_string] = ACTIONS(466), + [anon_sym_DOLLAR] = ACTIONS(478), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(466), + [anon_sym_BQUOTE] = ACTIONS(466), + [anon_sym_LT_LPAREN] = ACTIONS(466), + [anon_sym_GT_LPAREN] = ACTIONS(466), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(478), + }, + [243] = { + [sym_word] = ACTIONS(470), + [sym__concat] = ACTIONS(470), + [anon_sym_RPAREN] = ACTIONS(470), + [anon_sym_RBRACK] = ACTIONS(896), + [anon_sym_RBRACK_RBRACK] = ACTIONS(470), + [anon_sym_DQUOTE] = ACTIONS(470), + [sym_raw_string] = ACTIONS(470), + [anon_sym_DOLLAR] = ACTIONS(896), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(896), + }, + [244] = { + [sym_word] = ACTIONS(474), + [sym__concat] = ACTIONS(474), + [anon_sym_RPAREN] = ACTIONS(474), + [anon_sym_RBRACK] = ACTIONS(898), + [anon_sym_RBRACK_RBRACK] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(474), + [sym_raw_string] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(898), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(898), + }, + [245] = { + [sym_special_variable_name] = STATE(506), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(466), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(478), + [anon_sym_COLON_QMARK] = ACTIONS(466), + [anon_sym_COLON_DASH] = ACTIONS(466), + [anon_sym_PERCENT] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(466), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(900), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + }, + [246] = { + [anon_sym_RBRACE] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(904), + [anon_sym_EQ] = ACTIONS(906), + [anon_sym_COLON] = ACTIONS(908), + [anon_sym_COLON_QMARK] = ACTIONS(906), + [anon_sym_COLON_DASH] = ACTIONS(906), + [anon_sym_PERCENT] = ACTIONS(906), + [anon_sym_SLASH] = ACTIONS(906), + [sym_comment] = ACTIONS(50), + }, + [247] = { + [anon_sym_RBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_EQ] = ACTIONS(914), + [anon_sym_COLON] = ACTIONS(916), + [anon_sym_COLON_QMARK] = ACTIONS(914), + [anon_sym_COLON_DASH] = ACTIONS(914), + [anon_sym_PERCENT] = ACTIONS(914), + [anon_sym_SLASH] = ACTIONS(914), + [sym_comment] = ACTIONS(50), + }, + [248] = { + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(918), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), + }, + [249] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(918), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [250] = { + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_BQUOTE] = ACTIONS(918), + [sym_comment] = ACTIONS(50), + }, + [251] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(918), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [252] = { + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), + }, + [253] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [254] = { + [aux_sym_concatenation_repeat1] = STATE(503), + [sym_word] = ACTIONS(596), + [sym__concat] = ACTIONS(390), + [anon_sym_RBRACK] = ACTIONS(596), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_raw_string] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(596), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(596), + [anon_sym_BQUOTE] = ACTIONS(596), + [anon_sym_LT_LPAREN] = ACTIONS(596), + [anon_sym_GT_LPAREN] = ACTIONS(596), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(922), + }, + [255] = { + [anon_sym_PIPE] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(924), + [anon_sym_SEMI_SEMI] = ACTIONS(924), + [anon_sym_PIPE_AMP] = ACTIONS(924), + [anon_sym_AMP_AMP] = ACTIONS(924), + [anon_sym_PIPE_PIPE] = ACTIONS(924), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_LF] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(924), + }, + [256] = { + [sym_concatenation] = STATE(72), + [sym_string] = STATE(64), + [sym_simple_expansion] = STATE(64), + [sym_expansion] = STATE(64), + [sym_command_substitution] = STATE(64), + [sym_process_substitution] = STATE(64), + [aux_sym_for_statement_repeat1] = STATE(256), + [sym_word] = ACTIONS(926), + [anon_sym_RBRACK] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(931), + [sym_raw_string] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(937), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(940), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(946), + [anon_sym_GT_LPAREN] = ACTIONS(946), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(949), + }, + [257] = { + [aux_sym_concatenation_repeat1] = STATE(515), + [sym_word] = ACTIONS(282), + [sym__concat] = ACTIONS(390), + [anon_sym_RBRACK_RBRACK] = ACTIONS(282), + [anon_sym_DQUOTE] = ACTIONS(282), + [sym_raw_string] = ACTIONS(282), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(282), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(282), + [anon_sym_LT_LPAREN] = ACTIONS(282), + [anon_sym_GT_LPAREN] = ACTIONS(282), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(890), + }, + [258] = { + [aux_sym_concatenation_repeat1] = STATE(515), + [sym_word] = ACTIONS(596), + [sym__concat] = ACTIONS(390), + [anon_sym_RBRACK_RBRACK] = ACTIONS(596), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_raw_string] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(596), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(596), + [anon_sym_BQUOTE] = ACTIONS(596), + [anon_sym_LT_LPAREN] = ACTIONS(596), + [anon_sym_GT_LPAREN] = ACTIONS(596), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(922), + }, + [259] = { + [sym_concatenation] = STATE(72), + [sym_string] = STATE(74), + [sym_simple_expansion] = STATE(74), + [sym_expansion] = STATE(74), + [sym_command_substitution] = STATE(74), + [sym_process_substitution] = STATE(74), + [aux_sym_for_statement_repeat1] = STATE(259), + [sym_word] = ACTIONS(952), + [anon_sym_RBRACK_RBRACK] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(931), + [sym_raw_string] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(937), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(940), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(946), + [anon_sym_GT_LPAREN] = ACTIONS(946), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(955), + }, + [260] = { + [sym_concatenation] = STATE(517), + [sym_string] = STATE(516), + [sym_array] = STATE(517), + [sym_simple_expansion] = STATE(516), + [sym_expansion] = STATE(516), + [sym_command_substitution] = STATE(516), + [sym_process_substitution] = STATE(516), + [sym_word] = ACTIONS(958), + [sym__empty_value] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym_raw_string] = ACTIONS(958), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(968), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(970), + [anon_sym_BQUOTE] = ACTIONS(972), + [anon_sym_LT_LPAREN] = ACTIONS(974), + [anon_sym_GT_LPAREN] = ACTIONS(974), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(976), + }, + [261] = { + [sym_word] = ACTIONS(322), + [sym_variable_name] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(324), + [anon_sym_RPAREN] = ACTIONS(324), + [anon_sym_SEMI_SEMI] = ACTIONS(324), + [anon_sym_PIPE_AMP] = ACTIONS(324), + [anon_sym_AMP_AMP] = ACTIONS(324), + [anon_sym_PIPE_PIPE] = ACTIONS(324), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(324), + [anon_sym_SEMI] = ACTIONS(324), + [anon_sym_LF] = ACTIONS(324), + [anon_sym_AMP] = ACTIONS(324), + }, + [262] = { + [sym_variable_assignment] = STATE(77), + [sym_subscript] = STATE(80), + [aux_sym_declaration_command_repeat1] = STATE(262), + [sym_word] = ACTIONS(978), + [sym_variable_name] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_SEMI_SEMI] = ACTIONS(984), + [anon_sym_PIPE_AMP] = ACTIONS(984), + [anon_sym_AMP_AMP] = ACTIONS(984), + [anon_sym_PIPE_PIPE] = ACTIONS(984), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_LF] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(984), + }, + [263] = { + [sym_string] = STATE(526), + [sym_simple_expansion] = STATE(526), + [sym_expansion] = STATE(526), + [sym_command_substitution] = STATE(526), + [sym_process_substitution] = STATE(526), + [sym_word] = ACTIONS(989), + [anon_sym_DQUOTE] = ACTIONS(130), + [sym_raw_string] = ACTIONS(989), + [anon_sym_DOLLAR] = ACTIONS(132), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(134), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(136), + [anon_sym_BQUOTE] = ACTIONS(138), + [anon_sym_LT_LPAREN] = ACTIONS(140), + [anon_sym_GT_LPAREN] = ACTIONS(140), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(991), + }, + [264] = { + [aux_sym_concatenation_repeat1] = STATE(528), + [sym_file_descriptor] = ACTIONS(282), + [sym_word] = ACTIONS(282), + [sym__concat] = ACTIONS(426), + [sym_variable_name] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(890), + [anon_sym_GT] = ACTIONS(890), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_AMP_GT] = ACTIONS(890), + [anon_sym_AMP_GT_GT] = ACTIONS(282), + [anon_sym_LT_AMP] = ACTIONS(282), + [anon_sym_GT_AMP] = ACTIONS(282), + [anon_sym_DQUOTE] = ACTIONS(282), + [sym_raw_string] = ACTIONS(282), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(282), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(282), + [anon_sym_LT_LPAREN] = ACTIONS(282), + [anon_sym_GT_LPAREN] = ACTIONS(282), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(890), + }, + [265] = { + [sym_file_descriptor] = ACTIONS(446), + [sym_word] = ACTIONS(446), + [sym__concat] = ACTIONS(446), + [sym_variable_name] = ACTIONS(446), + [anon_sym_PIPE] = ACTIONS(892), + [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(892), + [anon_sym_GT] = ACTIONS(892), + [anon_sym_GT_GT] = ACTIONS(446), + [anon_sym_AMP_GT] = ACTIONS(892), + [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(892), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(892), + }, + [266] = { + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(291), + [anon_sym_DQUOTE] = ACTIONS(993), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_comment] = ACTIONS(64), + }, + [267] = { + [sym_file_descriptor] = ACTIONS(466), + [sym_word] = ACTIONS(466), + [sym__concat] = ACTIONS(466), + [sym_variable_name] = ACTIONS(466), + [anon_sym_PIPE] = ACTIONS(478), + [anon_sym_RPAREN] = ACTIONS(466), + [anon_sym_PIPE_AMP] = ACTIONS(466), + [anon_sym_AMP_AMP] = ACTIONS(466), + [anon_sym_PIPE_PIPE] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(478), + [anon_sym_GT] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(466), + [anon_sym_AMP_GT] = ACTIONS(478), + [anon_sym_AMP_GT_GT] = ACTIONS(466), + [anon_sym_LT_AMP] = ACTIONS(466), + [anon_sym_GT_AMP] = ACTIONS(466), + [anon_sym_DQUOTE] = ACTIONS(466), + [sym_raw_string] = ACTIONS(466), + [anon_sym_DOLLAR] = ACTIONS(478), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(466), + [anon_sym_BQUOTE] = ACTIONS(466), + [anon_sym_LT_LPAREN] = ACTIONS(466), + [anon_sym_GT_LPAREN] = ACTIONS(466), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(478), + }, + [268] = { + [sym_file_descriptor] = ACTIONS(470), + [sym_word] = ACTIONS(470), + [sym__concat] = ACTIONS(470), + [sym_variable_name] = ACTIONS(470), + [anon_sym_PIPE] = ACTIONS(896), + [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(896), + [anon_sym_GT] = ACTIONS(896), + [anon_sym_GT_GT] = ACTIONS(470), + [anon_sym_AMP_GT] = ACTIONS(896), + [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(896), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(896), + }, + [269] = { [sym_file_descriptor] = ACTIONS(474), - [sym__concat] = ACTIONS(168), + [sym_word] = ACTIONS(474), + [sym__concat] = ACTIONS(474), + [sym_variable_name] = ACTIONS(474), + [anon_sym_PIPE] = ACTIONS(898), + [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(898), + [anon_sym_GT] = ACTIONS(898), + [anon_sym_GT_GT] = ACTIONS(474), + [anon_sym_AMP_GT] = ACTIONS(898), + [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(898), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(898), + }, + [270] = { + [sym_special_variable_name] = STATE(531), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(466), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(478), + [anon_sym_COLON_QMARK] = ACTIONS(466), + [anon_sym_COLON_DASH] = ACTIONS(466), + [anon_sym_PERCENT] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(466), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(995), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + }, + [271] = { + [anon_sym_RBRACE] = ACTIONS(997), + [anon_sym_LBRACK] = ACTIONS(999), + [anon_sym_EQ] = ACTIONS(1001), + [anon_sym_COLON] = ACTIONS(1003), + [anon_sym_COLON_QMARK] = ACTIONS(1001), + [anon_sym_COLON_DASH] = ACTIONS(1001), + [anon_sym_PERCENT] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1001), + [sym_comment] = ACTIONS(50), + }, + [272] = { + [anon_sym_RBRACE] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_EQ] = ACTIONS(1009), + [anon_sym_COLON] = ACTIONS(1011), + [anon_sym_COLON_QMARK] = ACTIONS(1009), + [anon_sym_COLON_DASH] = ACTIONS(1009), + [anon_sym_PERCENT] = ACTIONS(1009), + [anon_sym_SLASH] = ACTIONS(1009), + [sym_comment] = ACTIONS(50), + }, + [273] = { + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(1013), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), + }, + [274] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(1013), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [275] = { + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_BQUOTE] = ACTIONS(1013), + [sym_comment] = ACTIONS(50), + }, + [276] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(1013), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [277] = { + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(1015), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), + }, + [278] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(1015), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [279] = { + [aux_sym_concatenation_repeat1] = STATE(528), + [sym_file_descriptor] = ACTIONS(596), + [sym_word] = ACTIONS(596), + [sym__concat] = ACTIONS(426), + [sym_variable_name] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(922), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_AMP_GT] = ACTIONS(922), + [anon_sym_AMP_GT_GT] = ACTIONS(596), + [anon_sym_LT_AMP] = ACTIONS(596), + [anon_sym_GT_AMP] = ACTIONS(596), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_raw_string] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(596), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(596), + [anon_sym_BQUOTE] = ACTIONS(596), + [anon_sym_LT_LPAREN] = ACTIONS(596), + [anon_sym_GT_LPAREN] = ACTIONS(596), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(922), + }, + [280] = { + [anon_sym_DQUOTE] = ACTIONS(468), + [sym__string_content] = ACTIONS(478), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(468), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(468), + [anon_sym_BQUOTE] = ACTIONS(468), + [sym_comment] = ACTIONS(64), + }, + [281] = { + [anon_sym_DQUOTE] = ACTIONS(472), + [sym__string_content] = ACTIONS(896), + [anon_sym_DOLLAR] = ACTIONS(472), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(472), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(472), + [anon_sym_BQUOTE] = ACTIONS(472), + [sym_comment] = ACTIONS(64), + }, + [282] = { + [anon_sym_DQUOTE] = ACTIONS(476), + [sym__string_content] = ACTIONS(898), + [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(64), + }, + [283] = { + [sym_special_variable_name] = STATE(541), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(466), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(478), + [anon_sym_COLON_QMARK] = ACTIONS(466), + [anon_sym_COLON_DASH] = ACTIONS(466), + [anon_sym_PERCENT] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(466), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1017), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + }, + [284] = { + [anon_sym_RBRACE] = ACTIONS(1019), + [anon_sym_LBRACK] = ACTIONS(1021), + [anon_sym_EQ] = ACTIONS(1023), + [anon_sym_COLON] = ACTIONS(1025), + [anon_sym_COLON_QMARK] = ACTIONS(1023), + [anon_sym_COLON_DASH] = ACTIONS(1023), + [anon_sym_PERCENT] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(1023), + [sym_comment] = ACTIONS(50), + }, + [285] = { + [anon_sym_RBRACE] = ACTIONS(1027), + [anon_sym_LBRACK] = ACTIONS(1029), + [anon_sym_EQ] = ACTIONS(1031), + [anon_sym_COLON] = ACTIONS(1033), + [anon_sym_COLON_QMARK] = ACTIONS(1031), + [anon_sym_COLON_DASH] = ACTIONS(1031), + [anon_sym_PERCENT] = ACTIONS(1031), + [anon_sym_SLASH] = ACTIONS(1031), + [sym_comment] = ACTIONS(50), + }, + [286] = { + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(1035), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), + }, + [287] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(1035), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [288] = { + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_BQUOTE] = ACTIONS(1035), + [sym_comment] = ACTIONS(50), + }, + [289] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(1035), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [290] = { + [sym_file_descriptor] = ACTIONS(1037), + [sym_word] = ACTIONS(1037), + [sym__concat] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1039), + [anon_sym_SEMI_SEMI] = ACTIONS(1039), + [anon_sym_PIPE_AMP] = ACTIONS(1039), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1039), + [anon_sym_GT_GT] = ACTIONS(1039), + [anon_sym_AMP_GT] = ACTIONS(1039), + [anon_sym_AMP_GT_GT] = ACTIONS(1039), + [anon_sym_LT_AMP] = ACTIONS(1039), + [anon_sym_GT_AMP] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1039), + [anon_sym_LT_LT_DASH] = ACTIONS(1039), + [anon_sym_DQUOTE] = ACTIONS(1039), + [sym_raw_string] = ACTIONS(1039), + [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1039), + [anon_sym_BQUOTE] = ACTIONS(1039), + [anon_sym_LT_LPAREN] = ACTIONS(1039), + [anon_sym_GT_LPAREN] = ACTIONS(1039), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_AMP] = ACTIONS(1039), + }, + [291] = { + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(291), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym__string_content] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1046), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1049), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1052), + [anon_sym_BQUOTE] = ACTIONS(1055), + [sym_comment] = ACTIONS(64), + }, + [292] = { + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1060), + [sym_comment] = ACTIONS(50), + }, + [293] = { + [anon_sym_RBRACE] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(1064), + [sym_comment] = ACTIONS(50), + }, + [294] = { + [sym_file_descriptor] = ACTIONS(1066), + [sym_word] = ACTIONS(1066), + [sym__concat] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_RPAREN] = ACTIONS(1068), + [anon_sym_SEMI_SEMI] = ACTIONS(1068), + [anon_sym_PIPE_AMP] = ACTIONS(1068), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE_PIPE] = ACTIONS(1068), + [anon_sym_LT] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_GT_GT] = ACTIONS(1068), + [anon_sym_AMP_GT] = ACTIONS(1068), + [anon_sym_AMP_GT_GT] = ACTIONS(1068), + [anon_sym_LT_AMP] = ACTIONS(1068), + [anon_sym_GT_AMP] = ACTIONS(1068), + [anon_sym_LT_LT] = ACTIONS(1068), + [anon_sym_LT_LT_DASH] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym_raw_string] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1068), + [anon_sym_BQUOTE] = ACTIONS(1068), + [anon_sym_LT_LPAREN] = ACTIONS(1068), + [anon_sym_GT_LPAREN] = ACTIONS(1068), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_LF] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1068), + }, + [295] = { + [anon_sym_AT] = ACTIONS(1070), + [sym_comment] = ACTIONS(50), + }, + [296] = { + [sym_concatenation] = STATE(557), + [sym_string] = STATE(554), + [sym_simple_expansion] = STATE(554), + [sym_expansion] = STATE(554), + [sym_command_substitution] = STATE(554), + [sym_process_substitution] = STATE(554), + [sym_word] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1076), + }, + [297] = { + [sym_file_descriptor] = ACTIONS(1078), + [sym_word] = ACTIONS(1078), + [sym__concat] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_RPAREN] = ACTIONS(1080), + [anon_sym_SEMI_SEMI] = ACTIONS(1080), + [anon_sym_PIPE_AMP] = ACTIONS(1080), + [anon_sym_AMP_AMP] = ACTIONS(1080), + [anon_sym_PIPE_PIPE] = ACTIONS(1080), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_AMP_GT] = ACTIONS(1080), + [anon_sym_AMP_GT_GT] = ACTIONS(1080), + [anon_sym_LT_AMP] = ACTIONS(1080), + [anon_sym_GT_AMP] = ACTIONS(1080), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_LT_LT_DASH] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym_raw_string] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1080), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1080), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1080), + [anon_sym_BQUOTE] = ACTIONS(1080), + [anon_sym_LT_LPAREN] = ACTIONS(1080), + [anon_sym_GT_LPAREN] = ACTIONS(1080), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_LF] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + }, + [298] = { + [anon_sym_AT] = ACTIONS(1082), + [sym_comment] = ACTIONS(50), + }, + [299] = { + [sym_concatenation] = STATE(561), + [sym_string] = STATE(559), + [sym_simple_expansion] = STATE(559), + [sym_expansion] = STATE(559), + [sym_command_substitution] = STATE(559), + [sym_process_substitution] = STATE(559), + [sym_word] = ACTIONS(1084), + [anon_sym_RBRACE] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1084), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1086), + }, + [300] = { + [sym_string] = STATE(562), + [sym_simple_expansion] = STATE(562), + [sym_expansion] = STATE(562), + [sym_command_substitution] = STATE(562), + [sym_process_substitution] = STATE(562), + [sym_word] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(1088), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1090), + }, + [301] = { + [aux_sym_concatenation_repeat1] = STATE(564), + [sym_file_descriptor] = ACTIONS(282), + [sym_word] = ACTIONS(282), + [sym__concat] = ACTIONS(498), + [anon_sym_PIPE] = ACTIONS(890), + [anon_sym_RPAREN] = ACTIONS(282), + [anon_sym_PIPE_AMP] = ACTIONS(282), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(890), + [anon_sym_GT] = ACTIONS(890), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_AMP_GT] = ACTIONS(890), + [anon_sym_AMP_GT_GT] = ACTIONS(282), + [anon_sym_LT_AMP] = ACTIONS(282), + [anon_sym_GT_AMP] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(890), + [anon_sym_LT_LT_DASH] = ACTIONS(282), + [anon_sym_DQUOTE] = ACTIONS(282), + [sym_raw_string] = ACTIONS(282), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(282), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(282), + [anon_sym_LT_LPAREN] = ACTIONS(282), + [anon_sym_GT_LPAREN] = ACTIONS(282), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(890), + }, + [302] = { + [sym_concatenation] = STATE(566), + [sym_string] = STATE(565), + [sym_array] = STATE(566), + [sym_simple_expansion] = STATE(565), + [sym_expansion] = STATE(565), + [sym_command_substitution] = STATE(565), + [sym_process_substitution] = STATE(565), + [sym_word] = ACTIONS(1092), + [sym__empty_value] = ACTIONS(1094), + [anon_sym_LPAREN] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(130), + [sym_raw_string] = ACTIONS(1092), + [anon_sym_DOLLAR] = ACTIONS(132), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(134), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(136), + [anon_sym_BQUOTE] = ACTIONS(138), + [anon_sym_LT_LPAREN] = ACTIONS(140), + [anon_sym_GT_LPAREN] = ACTIONS(140), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1098), + }, + [303] = { + [sym_file_descriptor] = ACTIONS(322), + [sym_word] = ACTIONS(322), + [sym_variable_name] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(1100), + [anon_sym_RPAREN] = ACTIONS(322), + [anon_sym_PIPE_AMP] = ACTIONS(322), + [anon_sym_AMP_AMP] = ACTIONS(322), + [anon_sym_PIPE_PIPE] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(1100), + [anon_sym_GT] = ACTIONS(1100), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_AMP_GT] = ACTIONS(1100), + [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(1100), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1100), + }, + [304] = { + [anon_sym_in] = ACTIONS(1102), + [sym_comment] = ACTIONS(50), + }, + [305] = { + [sym_do_group] = STATE(571), + [anon_sym_do] = ACTIONS(1104), + [sym_comment] = ACTIONS(50), + }, + [306] = { + [anon_sym_then] = ACTIONS(1106), + [sym_comment] = ACTIONS(50), + }, + [307] = { + [aux_sym_concatenation_repeat1] = STATE(194), + [sym__concat] = ACTIONS(334), + [anon_sym_in] = ACTIONS(1108), + [anon_sym_SEMI_SEMI] = ACTIONS(1110), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_LF] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1110), + }, + [308] = { + [aux_sym_concatenation_repeat1] = STATE(211), + [sym__concat] = ACTIONS(334), + [anon_sym_in] = ACTIONS(1112), + [anon_sym_SEMI_SEMI] = ACTIONS(1114), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1114), + [anon_sym_LF] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1114), + }, + [309] = { + [anon_sym_in] = ACTIONS(1108), + [anon_sym_SEMI_SEMI] = ACTIONS(1110), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_LF] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1110), + }, + [310] = { + [sym_compound_statement] = STATE(579), + [anon_sym_LPAREN] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1118), + [sym_comment] = ACTIONS(50), + }, + [311] = { + [anon_sym_PIPE] = ACTIONS(368), + [anon_sym_RPAREN] = ACTIONS(1120), + [anon_sym_SEMI_SEMI] = ACTIONS(1122), + [anon_sym_PIPE_AMP] = ACTIONS(368), + [anon_sym_AMP_AMP] = ACTIONS(374), + [anon_sym_PIPE_PIPE] = ACTIONS(374), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_LF] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + }, + [312] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(368), + [anon_sym_RPAREN] = ACTIONS(1120), + [anon_sym_SEMI_SEMI] = ACTIONS(1122), + [anon_sym_PIPE_AMP] = ACTIONS(368), + [anon_sym_AMP_AMP] = ACTIONS(374), + [anon_sym_PIPE_PIPE] = ACTIONS(374), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_GT_GT] = ACTIONS(264), + [anon_sym_AMP_GT] = ACTIONS(264), + [anon_sym_AMP_GT_GT] = ACTIONS(264), + [anon_sym_LT_AMP] = ACTIONS(264), + [anon_sym_GT_AMP] = ACTIONS(264), + [anon_sym_DQUOTE] = ACTIONS(264), + [sym_raw_string] = ACTIONS(264), + [anon_sym_DOLLAR] = ACTIONS(264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(264), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(264), + [anon_sym_BQUOTE] = ACTIONS(264), + [anon_sym_LT_LPAREN] = ACTIONS(264), + [anon_sym_GT_LPAREN] = ACTIONS(264), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(264), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_LF] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + }, + [313] = { + [sym__terminated_statement] = STATE(23), + [sym_for_statement] = STATE(582), + [sym_while_statement] = STATE(582), + [sym_if_statement] = STATE(582), + [sym_case_statement] = STATE(582), + [sym_function_definition] = STATE(582), + [sym_subshell] = STATE(582), + [sym_pipeline] = STATE(582), + [sym_list] = STATE(582), + [sym_bracket_command] = STATE(582), + [sym_command] = STATE(582), + [sym_command_name] = STATE(59), + [sym_variable_assignment] = STATE(583), + [sym_declaration_command] = STATE(582), + [sym_subscript] = STATE(61), + [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(235), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(90), + [sym_variable_name] = ACTIONS(92), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(94), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(96), + [anon_sym_typeset] = ACTIONS(96), + [anon_sym_export] = ACTIONS(96), + [anon_sym_readonly] = ACTIONS(96), + [anon_sym_local] = ACTIONS(96), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(90), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(98), + }, + [314] = { + [sym_concatenation] = STATE(72), + [sym_string] = STATE(64), + [sym_simple_expansion] = STATE(64), + [sym_expansion] = STATE(64), + [sym_command_substitution] = STATE(64), + [sym_process_substitution] = STATE(64), + [aux_sym_for_statement_repeat1] = STATE(256), + [sym_word] = ACTIONS(100), + [anon_sym_RBRACK] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(102), + [sym_raw_string] = ACTIONS(100), + [anon_sym_DOLLAR] = ACTIONS(104), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(108), + [anon_sym_BQUOTE] = ACTIONS(110), + [anon_sym_LT_LPAREN] = ACTIONS(112), + [anon_sym_GT_LPAREN] = ACTIONS(112), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(114), + }, + [315] = { + [sym_concatenation] = STATE(72), + [sym_string] = STATE(74), + [sym_simple_expansion] = STATE(74), + [sym_expansion] = STATE(74), + [sym_command_substitution] = STATE(74), + [sym_process_substitution] = STATE(74), + [aux_sym_for_statement_repeat1] = STATE(259), + [sym_word] = ACTIONS(116), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(102), + [sym_raw_string] = ACTIONS(116), + [anon_sym_DOLLAR] = ACTIONS(104), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(108), + [anon_sym_BQUOTE] = ACTIONS(110), + [anon_sym_LT_LPAREN] = ACTIONS(112), + [anon_sym_GT_LPAREN] = ACTIONS(112), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(118), + }, + [316] = { + [sym_word] = ACTIONS(412), + [sym_variable_name] = ACTIONS(412), + [anon_sym_PIPE] = ACTIONS(1126), + [anon_sym_RPAREN] = ACTIONS(412), + [anon_sym_PIPE_AMP] = ACTIONS(412), + [anon_sym_AMP_AMP] = ACTIONS(412), + [anon_sym_PIPE_PIPE] = ACTIONS(412), + [anon_sym_BQUOTE] = ACTIONS(412), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1126), + }, + [317] = { + [sym__assignment] = STATE(586), + [anon_sym_LBRACK] = ACTIONS(66), + [anon_sym_EQ] = ACTIONS(1128), + [anon_sym_PLUS_EQ] = ACTIONS(1128), + [sym_comment] = ACTIONS(50), + }, + [318] = { + [sym_word] = ACTIONS(418), + [sym_variable_name] = ACTIONS(418), + [anon_sym_PIPE] = ACTIONS(1130), + [anon_sym_RPAREN] = ACTIONS(418), + [anon_sym_PIPE_AMP] = ACTIONS(418), + [anon_sym_AMP_AMP] = ACTIONS(418), + [anon_sym_PIPE_PIPE] = ACTIONS(418), + [anon_sym_BQUOTE] = ACTIONS(418), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1130), + }, + [319] = { + [sym__assignment] = STATE(586), + [anon_sym_EQ] = ACTIONS(1128), + [anon_sym_PLUS_EQ] = ACTIONS(1128), + [sym_comment] = ACTIONS(50), + }, + [320] = { + [sym_variable_assignment] = STATE(316), + [sym_subscript] = STATE(319), + [aux_sym_declaration_command_repeat1] = STATE(587), + [sym_word] = ACTIONS(512), + [sym_variable_name] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1134), + [anon_sym_PIPE_AMP] = ACTIONS(1134), + [anon_sym_AMP_AMP] = ACTIONS(1134), + [anon_sym_PIPE_PIPE] = ACTIONS(1134), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(520), + }, + [321] = { + [sym_file_descriptor] = ACTIONS(446), + [sym_word] = ACTIONS(446), + [sym__concat] = ACTIONS(446), + [anon_sym_PIPE] = ACTIONS(892), + [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(892), + [anon_sym_GT] = ACTIONS(892), + [anon_sym_GT_GT] = ACTIONS(446), + [anon_sym_AMP_GT] = ACTIONS(892), + [anon_sym_AMP_GT_GT] = ACTIONS(446), + [anon_sym_LT_AMP] = ACTIONS(446), + [anon_sym_GT_AMP] = ACTIONS(446), + [anon_sym_LT_LT] = ACTIONS(892), + [anon_sym_LT_LT_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(446), + [sym_raw_string] = ACTIONS(446), + [anon_sym_DOLLAR] = ACTIONS(892), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(892), + }, + [322] = { + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(291), + [anon_sym_DQUOTE] = ACTIONS(1136), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_comment] = ACTIONS(64), + }, + [323] = { + [sym_file_descriptor] = ACTIONS(466), + [sym_word] = ACTIONS(466), + [sym__concat] = ACTIONS(466), + [anon_sym_PIPE] = ACTIONS(478), + [anon_sym_RPAREN] = ACTIONS(466), + [anon_sym_PIPE_AMP] = ACTIONS(466), + [anon_sym_AMP_AMP] = ACTIONS(466), + [anon_sym_PIPE_PIPE] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(478), + [anon_sym_GT] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(466), + [anon_sym_AMP_GT] = ACTIONS(478), + [anon_sym_AMP_GT_GT] = ACTIONS(466), + [anon_sym_LT_AMP] = ACTIONS(466), + [anon_sym_GT_AMP] = ACTIONS(466), + [anon_sym_LT_LT] = ACTIONS(478), + [anon_sym_LT_LT_DASH] = ACTIONS(466), + [anon_sym_DQUOTE] = ACTIONS(466), + [sym_raw_string] = ACTIONS(466), + [anon_sym_DOLLAR] = ACTIONS(478), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(466), + [anon_sym_BQUOTE] = ACTIONS(466), + [anon_sym_LT_LPAREN] = ACTIONS(466), + [anon_sym_GT_LPAREN] = ACTIONS(466), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(478), + }, + [324] = { + [sym_file_descriptor] = ACTIONS(470), + [sym_word] = ACTIONS(470), + [sym__concat] = ACTIONS(470), + [anon_sym_PIPE] = ACTIONS(896), + [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(896), + [anon_sym_GT] = ACTIONS(896), + [anon_sym_GT_GT] = ACTIONS(470), + [anon_sym_AMP_GT] = ACTIONS(896), + [anon_sym_AMP_GT_GT] = ACTIONS(470), + [anon_sym_LT_AMP] = ACTIONS(470), + [anon_sym_GT_AMP] = ACTIONS(470), + [anon_sym_LT_LT] = ACTIONS(896), + [anon_sym_LT_LT_DASH] = ACTIONS(470), + [anon_sym_DQUOTE] = ACTIONS(470), + [sym_raw_string] = ACTIONS(470), + [anon_sym_DOLLAR] = ACTIONS(896), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(896), + }, + [325] = { + [sym_file_descriptor] = ACTIONS(474), + [sym_word] = ACTIONS(474), + [sym__concat] = ACTIONS(474), + [anon_sym_PIPE] = ACTIONS(898), + [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(898), + [anon_sym_GT] = ACTIONS(898), + [anon_sym_GT_GT] = ACTIONS(474), + [anon_sym_AMP_GT] = ACTIONS(898), + [anon_sym_AMP_GT_GT] = ACTIONS(474), + [anon_sym_LT_AMP] = ACTIONS(474), + [anon_sym_GT_AMP] = ACTIONS(474), + [anon_sym_LT_LT] = ACTIONS(898), + [anon_sym_LT_LT_DASH] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(474), + [sym_raw_string] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(898), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(898), + }, + [326] = { + [sym_special_variable_name] = STATE(590), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(466), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(478), + [anon_sym_COLON_QMARK] = ACTIONS(466), + [anon_sym_COLON_DASH] = ACTIONS(466), + [anon_sym_PERCENT] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(466), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + }, + [327] = { + [anon_sym_RBRACE] = ACTIONS(1140), + [anon_sym_LBRACK] = ACTIONS(1142), + [anon_sym_EQ] = ACTIONS(1144), + [anon_sym_COLON] = ACTIONS(1146), + [anon_sym_COLON_QMARK] = ACTIONS(1144), + [anon_sym_COLON_DASH] = ACTIONS(1144), + [anon_sym_PERCENT] = ACTIONS(1144), + [anon_sym_SLASH] = ACTIONS(1144), + [sym_comment] = ACTIONS(50), + }, + [328] = { + [anon_sym_RBRACE] = ACTIONS(1148), + [anon_sym_LBRACK] = ACTIONS(1150), + [anon_sym_EQ] = ACTIONS(1152), + [anon_sym_COLON] = ACTIONS(1154), + [anon_sym_COLON_QMARK] = ACTIONS(1152), + [anon_sym_COLON_DASH] = ACTIONS(1152), + [anon_sym_PERCENT] = ACTIONS(1152), + [anon_sym_SLASH] = ACTIONS(1152), + [sym_comment] = ACTIONS(50), + }, + [329] = { + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(1156), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), + }, + [330] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(1156), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [331] = { + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_BQUOTE] = ACTIONS(1156), + [sym_comment] = ACTIONS(50), + }, + [332] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(1156), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [333] = { + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(1158), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), + }, + [334] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(1158), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [335] = { + [anon_sym_RPAREN] = ACTIONS(1160), + [sym_comment] = ACTIONS(50), + }, + [336] = { + [aux_sym_concatenation_repeat1] = STATE(564), + [sym_file_descriptor] = ACTIONS(596), + [sym_word] = ACTIONS(596), + [sym__concat] = ACTIONS(498), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_RPAREN] = ACTIONS(596), + [anon_sym_PIPE_AMP] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(922), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_AMP_GT] = ACTIONS(922), + [anon_sym_AMP_GT_GT] = ACTIONS(596), + [anon_sym_LT_AMP] = ACTIONS(596), + [anon_sym_GT_AMP] = ACTIONS(596), + [anon_sym_LT_LT] = ACTIONS(922), + [anon_sym_LT_LT_DASH] = ACTIONS(596), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_raw_string] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(596), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(596), + [anon_sym_BQUOTE] = ACTIONS(596), + [anon_sym_LT_LPAREN] = ACTIONS(596), + [anon_sym_GT_LPAREN] = ACTIONS(596), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(922), + }, + [337] = { + [sym_for_statement] = STATE(600), + [sym_while_statement] = STATE(600), + [sym_if_statement] = STATE(600), + [sym_case_statement] = STATE(600), + [sym_function_definition] = STATE(600), + [sym_subshell] = STATE(600), + [sym_pipeline] = STATE(600), + [sym_list] = STATE(600), + [sym_bracket_command] = STATE(600), + [sym_command] = STATE(600), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(601), + [sym_declaration_command] = STATE(600), + [sym_subscript] = STATE(126), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), + }, + [338] = { + [sym_file_descriptor] = ACTIONS(1162), + [sym_word] = ACTIONS(1162), + [sym__concat] = ACTIONS(1162), + [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_RPAREN] = ACTIONS(1164), + [anon_sym_SEMI_SEMI] = ACTIONS(1164), + [anon_sym_PIPE_AMP] = ACTIONS(1164), + [anon_sym_AMP_AMP] = ACTIONS(1164), + [anon_sym_PIPE_PIPE] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_GT] = ACTIONS(1164), + [anon_sym_AMP_GT] = ACTIONS(1164), + [anon_sym_AMP_GT_GT] = ACTIONS(1164), + [anon_sym_LT_AMP] = ACTIONS(1164), + [anon_sym_GT_AMP] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1164), + [anon_sym_LT_LT_DASH] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [sym_raw_string] = ACTIONS(1164), + [anon_sym_DOLLAR] = ACTIONS(1164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1164), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1164), + [anon_sym_BQUOTE] = ACTIONS(1164), + [anon_sym_LT_LPAREN] = ACTIONS(1164), + [anon_sym_GT_LPAREN] = ACTIONS(1164), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym_LF] = ACTIONS(1164), + [anon_sym_AMP] = ACTIONS(1164), + }, + [339] = { + [sym_for_statement] = STATE(602), + [sym_while_statement] = STATE(602), + [sym_if_statement] = STATE(602), + [sym_case_statement] = STATE(602), + [sym_function_definition] = STATE(602), + [sym_subshell] = STATE(602), + [sym_pipeline] = STATE(602), + [sym_list] = STATE(602), + [sym_bracket_command] = STATE(602), + [sym_command] = STATE(602), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(603), + [sym_declaration_command] = STATE(602), + [sym_subscript] = STATE(126), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), + }, + [340] = { + [anon_sym_LT] = ACTIONS(1166), + [anon_sym_GT] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1168), + [anon_sym_AMP_GT] = ACTIONS(1166), + [anon_sym_AMP_GT_GT] = ACTIONS(1168), + [anon_sym_LT_AMP] = ACTIONS(1168), + [anon_sym_GT_AMP] = ACTIONS(1168), + [sym_comment] = ACTIONS(50), + }, + [341] = { + [aux_sym_concatenation_repeat1] = STATE(301), + [sym_file_descriptor] = ACTIONS(388), + [sym_word] = ACTIONS(388), + [sym__concat] = ACTIONS(498), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_RPAREN] = ACTIONS(388), + [anon_sym_PIPE_AMP] = ACTIONS(388), + [anon_sym_AMP_AMP] = ACTIONS(388), + [anon_sym_PIPE_PIPE] = ACTIONS(388), + [anon_sym_LT] = ACTIONS(392), + [anon_sym_GT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(388), + [anon_sym_AMP_GT] = ACTIONS(392), + [anon_sym_AMP_GT_GT] = ACTIONS(388), + [anon_sym_LT_AMP] = ACTIONS(388), + [anon_sym_GT_AMP] = ACTIONS(388), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_LT_LT_DASH] = ACTIONS(388), + [anon_sym_DQUOTE] = ACTIONS(388), + [sym_raw_string] = ACTIONS(388), + [anon_sym_DOLLAR] = ACTIONS(392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(388), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(388), + [anon_sym_BQUOTE] = ACTIONS(388), + [anon_sym_LT_LPAREN] = ACTIONS(388), + [anon_sym_GT_LPAREN] = ACTIONS(388), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(392), + }, + [342] = { + [sym_concatenation] = STATE(613), + [sym_string] = STATE(605), + [sym_simple_expansion] = STATE(605), + [sym_expansion] = STATE(605), + [sym_command_substitution] = STATE(605), + [sym_process_substitution] = STATE(605), + [sym_word] = ACTIONS(1170), + [anon_sym_DQUOTE] = ACTIONS(1172), + [sym_raw_string] = ACTIONS(1170), + [anon_sym_DOLLAR] = ACTIONS(1174), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1178), + [anon_sym_BQUOTE] = ACTIONS(1180), + [anon_sym_LT_LPAREN] = ACTIONS(1182), + [anon_sym_GT_LPAREN] = ACTIONS(1182), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1184), + }, + [343] = { + [sym_heredoc] = STATE(616), + [sym__simple_heredoc] = ACTIONS(1186), + [sym__heredoc_beginning] = ACTIONS(1188), + [sym_comment] = ACTIONS(50), + }, + [344] = { + [aux_sym_concatenation_repeat1] = STATE(336), + [sym_file_descriptor] = ACTIONS(406), + [sym_word] = ACTIONS(406), + [sym__concat] = ACTIONS(498), + [anon_sym_PIPE] = ACTIONS(408), + [anon_sym_RPAREN] = ACTIONS(406), + [anon_sym_PIPE_AMP] = ACTIONS(406), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(408), + [anon_sym_GT] = ACTIONS(408), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_AMP_GT] = ACTIONS(408), + [anon_sym_AMP_GT_GT] = ACTIONS(406), + [anon_sym_LT_AMP] = ACTIONS(406), + [anon_sym_GT_AMP] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(408), + [anon_sym_LT_LT_DASH] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(406), + [sym_raw_string] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(408), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(406), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(406), + [anon_sym_BQUOTE] = ACTIONS(406), + [anon_sym_LT_LPAREN] = ACTIONS(406), + [anon_sym_GT_LPAREN] = ACTIONS(406), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(408), + }, + [345] = { + [sym_file_descriptor] = ACTIONS(634), + [anon_sym_PIPE] = ACTIONS(1190), + [anon_sym_RPAREN] = ACTIONS(634), + [anon_sym_PIPE_AMP] = ACTIONS(634), + [anon_sym_AMP_AMP] = ACTIONS(634), + [anon_sym_PIPE_PIPE] = ACTIONS(634), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_GT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(634), + [anon_sym_AMP_GT] = ACTIONS(1190), + [anon_sym_AMP_GT_GT] = ACTIONS(634), + [anon_sym_LT_AMP] = ACTIONS(634), + [anon_sym_GT_AMP] = ACTIONS(634), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_LT_LT_DASH] = ACTIONS(634), + [anon_sym_BQUOTE] = ACTIONS(634), + [sym_comment] = ACTIONS(50), + }, + [346] = { + [sym_file_descriptor] = ACTIONS(388), + [sym_word] = ACTIONS(388), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_RPAREN] = ACTIONS(388), + [anon_sym_PIPE_AMP] = ACTIONS(388), + [anon_sym_AMP_AMP] = ACTIONS(388), + [anon_sym_PIPE_PIPE] = ACTIONS(388), + [anon_sym_LT] = ACTIONS(392), + [anon_sym_GT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(388), + [anon_sym_AMP_GT] = ACTIONS(392), + [anon_sym_AMP_GT_GT] = ACTIONS(388), + [anon_sym_LT_AMP] = ACTIONS(388), + [anon_sym_GT_AMP] = ACTIONS(388), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_LT_LT_DASH] = ACTIONS(388), + [anon_sym_DQUOTE] = ACTIONS(388), + [sym_raw_string] = ACTIONS(388), + [anon_sym_DOLLAR] = ACTIONS(392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(388), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(388), + [anon_sym_BQUOTE] = ACTIONS(388), + [anon_sym_LT_LPAREN] = ACTIONS(388), + [anon_sym_GT_LPAREN] = ACTIONS(388), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(392), + }, + [347] = { + [sym_file_redirect] = STATE(345), + [sym_heredoc_redirect] = STATE(345), + [sym_concatenation] = STATE(346), + [sym_string] = STATE(341), + [sym_simple_expansion] = STATE(341), + [sym_expansion] = STATE(341), + [sym_command_substitution] = STATE(341), + [sym_process_substitution] = STATE(341), + [aux_sym_for_statement_repeat1] = STATE(617), + [aux_sym_command_repeat2] = STATE(618), + [sym_file_descriptor] = ACTIONS(546), + [sym_word] = ACTIONS(548), + [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_LT] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(556), + [anon_sym_AMP_GT] = ACTIONS(554), + [anon_sym_AMP_GT_GT] = ACTIONS(556), + [anon_sym_LT_AMP] = ACTIONS(556), + [anon_sym_GT_AMP] = ACTIONS(556), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_LT_LT_DASH] = ACTIONS(560), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(548), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(562), + }, + [348] = { + [sym_file_redirect] = STATE(345), + [sym_heredoc_redirect] = STATE(345), + [aux_sym_command_repeat2] = STATE(619), + [sym_file_descriptor] = ACTIONS(546), + [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_LT] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(556), + [anon_sym_AMP_GT] = ACTIONS(554), + [anon_sym_AMP_GT_GT] = ACTIONS(556), + [anon_sym_LT_AMP] = ACTIONS(556), + [anon_sym_GT_AMP] = ACTIONS(556), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_LT_LT_DASH] = ACTIONS(560), + [sym_comment] = ACTIONS(50), + }, + [349] = { + [aux_sym_concatenation_repeat1] = STATE(336), + [sym_file_descriptor] = ACTIONS(216), + [sym_word] = ACTIONS(216), + [sym__concat] = ACTIONS(498), + [anon_sym_PIPE] = ACTIONS(534), + [anon_sym_RPAREN] = ACTIONS(216), + [anon_sym_PIPE_AMP] = ACTIONS(216), + [anon_sym_AMP_AMP] = ACTIONS(216), + [anon_sym_PIPE_PIPE] = ACTIONS(216), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_GT] = ACTIONS(534), + [anon_sym_GT_GT] = ACTIONS(216), + [anon_sym_AMP_GT] = ACTIONS(534), + [anon_sym_AMP_GT_GT] = ACTIONS(216), + [anon_sym_LT_AMP] = ACTIONS(216), + [anon_sym_GT_AMP] = ACTIONS(216), + [anon_sym_LT_LT] = ACTIONS(534), + [anon_sym_LT_LT_DASH] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(216), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(534), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(216), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(216), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_LT_LPAREN] = ACTIONS(216), + [anon_sym_GT_LPAREN] = ACTIONS(216), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(534), + }, + [350] = { + [sym_file_redirect] = STATE(345), + [sym_heredoc_redirect] = STATE(345), + [sym_concatenation] = STATE(346), + [sym_string] = STATE(341), + [sym_simple_expansion] = STATE(341), + [sym_expansion] = STATE(341), + [sym_command_substitution] = STATE(341), + [sym_process_substitution] = STATE(341), + [aux_sym_for_statement_repeat1] = STATE(620), + [aux_sym_command_repeat2] = STATE(618), + [sym_file_descriptor] = ACTIONS(546), + [sym_word] = ACTIONS(548), + [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_LT] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(556), + [anon_sym_AMP_GT] = ACTIONS(554), + [anon_sym_AMP_GT_GT] = ACTIONS(556), + [anon_sym_LT_AMP] = ACTIONS(556), + [anon_sym_GT_AMP] = ACTIONS(556), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_LT_LT_DASH] = ACTIONS(560), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(548), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(562), + }, + [351] = { + [aux_sym_concatenation_repeat1] = STATE(621), + [sym_file_descriptor] = ACTIONS(282), + [sym_word] = ACTIONS(282), + [sym__concat] = ACTIONS(498), + [anon_sym_PIPE] = ACTIONS(890), + [anon_sym_PIPE_AMP] = ACTIONS(282), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(890), + [anon_sym_GT] = ACTIONS(890), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_AMP_GT] = ACTIONS(890), + [anon_sym_AMP_GT_GT] = ACTIONS(282), + [anon_sym_LT_AMP] = ACTIONS(282), + [anon_sym_GT_AMP] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(890), + [anon_sym_LT_LT_DASH] = ACTIONS(282), + [anon_sym_DQUOTE] = ACTIONS(282), + [sym_raw_string] = ACTIONS(282), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(282), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(282), + [anon_sym_LT_LPAREN] = ACTIONS(282), + [anon_sym_GT_LPAREN] = ACTIONS(282), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(890), + }, + [352] = { + [sym_concatenation] = STATE(566), + [sym_string] = STATE(622), + [sym_array] = STATE(566), + [sym_simple_expansion] = STATE(622), + [sym_expansion] = STATE(622), + [sym_command_substitution] = STATE(622), + [sym_process_substitution] = STATE(622), + [sym_word] = ACTIONS(1196), + [sym__empty_value] = ACTIONS(1094), + [anon_sym_LPAREN] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(130), + [sym_raw_string] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(132), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(134), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(136), + [anon_sym_BQUOTE] = ACTIONS(138), + [anon_sym_LT_LPAREN] = ACTIONS(140), + [anon_sym_GT_LPAREN] = ACTIONS(140), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1198), + }, + [353] = { + [sym_compound_statement] = STATE(625), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1118), + [sym_comment] = ACTIONS(50), + }, + [354] = { + [sym__assignment] = STATE(586), + [anon_sym_LBRACK] = ACTIONS(66), + [anon_sym_EQ] = ACTIONS(1202), + [anon_sym_PLUS_EQ] = ACTIONS(1202), + [sym_comment] = ACTIONS(50), + }, + [355] = { + [sym__assignment] = STATE(586), + [anon_sym_EQ] = ACTIONS(1202), + [anon_sym_PLUS_EQ] = ACTIONS(1202), + [sym_comment] = ACTIONS(50), + }, + [356] = { + [sym_variable_assignment] = STATE(316), + [sym_subscript] = STATE(355), + [aux_sym_declaration_command_repeat1] = STATE(627), + [sym_word] = ACTIONS(512), + [sym_variable_name] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_PIPE_AMP] = ACTIONS(1134), + [anon_sym_AMP_AMP] = ACTIONS(1134), + [anon_sym_PIPE_PIPE] = ACTIONS(1134), + [anon_sym_BQUOTE] = ACTIONS(1134), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(520), + }, + [357] = { + [anon_sym_RPAREN] = ACTIONS(1204), + [sym_comment] = ACTIONS(50), + }, + [358] = { + [aux_sym_concatenation_repeat1] = STATE(621), + [sym_file_descriptor] = ACTIONS(596), + [sym_word] = ACTIONS(596), + [sym__concat] = ACTIONS(498), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_PIPE_AMP] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(922), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_AMP_GT] = ACTIONS(922), + [anon_sym_AMP_GT_GT] = ACTIONS(596), + [anon_sym_LT_AMP] = ACTIONS(596), + [anon_sym_GT_AMP] = ACTIONS(596), + [anon_sym_LT_LT] = ACTIONS(922), + [anon_sym_LT_LT_DASH] = ACTIONS(596), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_raw_string] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(596), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(596), + [anon_sym_BQUOTE] = ACTIONS(596), + [anon_sym_LT_LPAREN] = ACTIONS(596), + [anon_sym_GT_LPAREN] = ACTIONS(596), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(922), + }, + [359] = { + [sym_for_statement] = STATE(600), + [sym_while_statement] = STATE(600), + [sym_if_statement] = STATE(600), + [sym_case_statement] = STATE(600), + [sym_function_definition] = STATE(600), + [sym_subshell] = STATE(600), + [sym_pipeline] = STATE(600), + [sym_list] = STATE(600), + [sym_bracket_command] = STATE(600), + [sym_command] = STATE(600), + [sym_command_name] = STATE(135), + [sym_variable_assignment] = STATE(629), + [sym_declaration_command] = STATE(600), + [sym_subscript] = STATE(137), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(129), + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [sym_process_substitution] = STATE(129), + [aux_sym_command_repeat1] = STATE(138), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(206), + [sym_variable_name] = ACTIONS(208), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(212), + [anon_sym_typeset] = ACTIONS(212), + [anon_sym_export] = ACTIONS(212), + [anon_sym_readonly] = ACTIONS(212), + [anon_sym_local] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(206), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(214), + }, + [360] = { + [sym_for_statement] = STATE(630), + [sym_while_statement] = STATE(630), + [sym_if_statement] = STATE(630), + [sym_case_statement] = STATE(630), + [sym_function_definition] = STATE(630), + [sym_subshell] = STATE(630), + [sym_pipeline] = STATE(630), + [sym_list] = STATE(630), + [sym_bracket_command] = STATE(630), + [sym_command] = STATE(630), + [sym_command_name] = STATE(135), + [sym_variable_assignment] = STATE(631), + [sym_declaration_command] = STATE(630), + [sym_subscript] = STATE(137), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(129), + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [sym_process_substitution] = STATE(129), + [aux_sym_command_repeat1] = STATE(138), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(206), + [sym_variable_name] = ACTIONS(208), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(212), + [anon_sym_typeset] = ACTIONS(212), + [anon_sym_export] = ACTIONS(212), + [anon_sym_readonly] = ACTIONS(212), + [anon_sym_local] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(206), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(214), + }, + [361] = { + [anon_sym_LT] = ACTIONS(1206), + [anon_sym_GT] = ACTIONS(1206), + [anon_sym_GT_GT] = ACTIONS(1208), + [anon_sym_AMP_GT] = ACTIONS(1206), + [anon_sym_AMP_GT_GT] = ACTIONS(1208), + [anon_sym_LT_AMP] = ACTIONS(1208), + [anon_sym_GT_AMP] = ACTIONS(1208), + [sym_comment] = ACTIONS(50), + }, + [362] = { + [aux_sym_concatenation_repeat1] = STATE(351), + [sym_file_descriptor] = ACTIONS(388), + [sym_word] = ACTIONS(388), + [sym__concat] = ACTIONS(498), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_PIPE_AMP] = ACTIONS(388), + [anon_sym_AMP_AMP] = ACTIONS(388), + [anon_sym_PIPE_PIPE] = ACTIONS(388), + [anon_sym_LT] = ACTIONS(392), + [anon_sym_GT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(388), + [anon_sym_AMP_GT] = ACTIONS(392), + [anon_sym_AMP_GT_GT] = ACTIONS(388), + [anon_sym_LT_AMP] = ACTIONS(388), + [anon_sym_GT_AMP] = ACTIONS(388), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_LT_LT_DASH] = ACTIONS(388), + [anon_sym_DQUOTE] = ACTIONS(388), + [sym_raw_string] = ACTIONS(388), + [anon_sym_DOLLAR] = ACTIONS(392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(388), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(388), + [anon_sym_BQUOTE] = ACTIONS(388), + [anon_sym_LT_LPAREN] = ACTIONS(388), + [anon_sym_GT_LPAREN] = ACTIONS(388), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(392), + }, + [363] = { + [sym_concatenation] = STATE(613), + [sym_string] = STATE(633), + [sym_simple_expansion] = STATE(633), + [sym_expansion] = STATE(633), + [sym_command_substitution] = STATE(633), + [sym_process_substitution] = STATE(633), + [sym_word] = ACTIONS(1210), + [anon_sym_DQUOTE] = ACTIONS(1172), + [sym_raw_string] = ACTIONS(1210), + [anon_sym_DOLLAR] = ACTIONS(1174), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1178), + [anon_sym_BQUOTE] = ACTIONS(1180), + [anon_sym_LT_LPAREN] = ACTIONS(1182), + [anon_sym_GT_LPAREN] = ACTIONS(1182), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1212), + }, + [364] = { + [aux_sym_concatenation_repeat1] = STATE(358), + [sym_file_descriptor] = ACTIONS(406), + [sym_word] = ACTIONS(406), + [sym__concat] = ACTIONS(498), + [anon_sym_PIPE] = ACTIONS(408), + [anon_sym_PIPE_AMP] = ACTIONS(406), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(408), + [anon_sym_GT] = ACTIONS(408), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_AMP_GT] = ACTIONS(408), + [anon_sym_AMP_GT_GT] = ACTIONS(406), + [anon_sym_LT_AMP] = ACTIONS(406), + [anon_sym_GT_AMP] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(408), + [anon_sym_LT_LT_DASH] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(406), + [sym_raw_string] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(408), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(406), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(406), + [anon_sym_BQUOTE] = ACTIONS(406), + [anon_sym_LT_LPAREN] = ACTIONS(406), + [anon_sym_GT_LPAREN] = ACTIONS(406), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(408), + }, + [365] = { + [sym_file_redirect] = STATE(345), + [sym_heredoc_redirect] = STATE(345), + [sym_concatenation] = STATE(346), + [sym_string] = STATE(362), + [sym_simple_expansion] = STATE(362), + [sym_expansion] = STATE(362), + [sym_command_substitution] = STATE(362), + [sym_process_substitution] = STATE(362), + [aux_sym_for_statement_repeat1] = STATE(635), + [aux_sym_command_repeat2] = STATE(636), + [sym_file_descriptor] = ACTIONS(580), + [sym_word] = ACTIONS(582), + [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_LT] = ACTIONS(584), + [anon_sym_GT] = ACTIONS(584), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_AMP_GT] = ACTIONS(584), + [anon_sym_AMP_GT_GT] = ACTIONS(586), + [anon_sym_LT_AMP] = ACTIONS(586), + [anon_sym_GT_AMP] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_LT_LT_DASH] = ACTIONS(560), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(1194), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(588), + }, + [366] = { + [sym_file_redirect] = STATE(345), + [sym_heredoc_redirect] = STATE(345), + [aux_sym_command_repeat2] = STATE(637), + [sym_file_descriptor] = 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_LT] = ACTIONS(584), + [anon_sym_GT] = ACTIONS(584), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_AMP_GT] = ACTIONS(584), + [anon_sym_AMP_GT_GT] = ACTIONS(586), + [anon_sym_LT_AMP] = ACTIONS(586), + [anon_sym_GT_AMP] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_LT_LT_DASH] = ACTIONS(560), + [anon_sym_BQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(50), + }, + [367] = { + [aux_sym_concatenation_repeat1] = STATE(358), + [sym_file_descriptor] = ACTIONS(216), + [sym_word] = ACTIONS(216), + [sym__concat] = ACTIONS(498), + [anon_sym_PIPE] = ACTIONS(534), + [anon_sym_PIPE_AMP] = ACTIONS(216), + [anon_sym_AMP_AMP] = ACTIONS(216), + [anon_sym_PIPE_PIPE] = ACTIONS(216), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_GT] = ACTIONS(534), + [anon_sym_GT_GT] = ACTIONS(216), + [anon_sym_AMP_GT] = ACTIONS(534), + [anon_sym_AMP_GT_GT] = ACTIONS(216), + [anon_sym_LT_AMP] = ACTIONS(216), + [anon_sym_GT_AMP] = ACTIONS(216), + [anon_sym_LT_LT] = ACTIONS(534), + [anon_sym_LT_LT_DASH] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(216), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(534), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(216), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(216), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_LT_LPAREN] = ACTIONS(216), + [anon_sym_GT_LPAREN] = ACTIONS(216), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(534), + }, + [368] = { + [sym_file_redirect] = STATE(345), + [sym_heredoc_redirect] = STATE(345), + [sym_concatenation] = STATE(346), + [sym_string] = STATE(362), + [sym_simple_expansion] = STATE(362), + [sym_expansion] = STATE(362), + [sym_command_substitution] = STATE(362), + [sym_process_substitution] = STATE(362), + [aux_sym_for_statement_repeat1] = STATE(638), + [aux_sym_command_repeat2] = STATE(636), + [sym_file_descriptor] = ACTIONS(580), + [sym_word] = ACTIONS(582), + [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_LT] = ACTIONS(584), + [anon_sym_GT] = ACTIONS(584), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_AMP_GT] = ACTIONS(584), + [anon_sym_AMP_GT_GT] = ACTIONS(586), + [anon_sym_LT_AMP] = ACTIONS(586), + [anon_sym_GT_AMP] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_LT_LT_DASH] = ACTIONS(560), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(1194), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(588), + }, + [369] = { + [sym_file_descriptor] = ACTIONS(1214), + [sym_word] = ACTIONS(1214), + [sym__concat] = ACTIONS(1214), + [anon_sym_PIPE] = ACTIONS(1216), + [anon_sym_RPAREN] = ACTIONS(1216), + [anon_sym_SEMI_SEMI] = ACTIONS(1216), + [anon_sym_PIPE_AMP] = ACTIONS(1216), + [anon_sym_AMP_AMP] = ACTIONS(1216), + [anon_sym_PIPE_PIPE] = ACTIONS(1216), + [anon_sym_LT] = ACTIONS(1216), + [anon_sym_GT] = ACTIONS(1216), + [anon_sym_GT_GT] = ACTIONS(1216), + [anon_sym_AMP_GT] = ACTIONS(1216), + [anon_sym_AMP_GT_GT] = ACTIONS(1216), + [anon_sym_LT_AMP] = ACTIONS(1216), + [anon_sym_GT_AMP] = ACTIONS(1216), + [anon_sym_LT_LT] = ACTIONS(1216), + [anon_sym_LT_LT_DASH] = ACTIONS(1216), + [anon_sym_DQUOTE] = ACTIONS(1216), + [sym_raw_string] = ACTIONS(1216), + [anon_sym_DOLLAR] = ACTIONS(1216), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1216), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1216), + [anon_sym_BQUOTE] = ACTIONS(1216), + [anon_sym_LT_LPAREN] = ACTIONS(1216), + [anon_sym_GT_LPAREN] = ACTIONS(1216), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1216), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym_LF] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(1216), + }, + [370] = { + [sym_compound_statement] = STATE(639), + [anon_sym_LBRACE] = ACTIONS(358), + [sym_comment] = ACTIONS(50), + }, + [371] = { + [anon_sym_PIPE] = ACTIONS(1218), + [anon_sym_RPAREN] = ACTIONS(1218), + [anon_sym_SEMI_SEMI] = ACTIONS(1218), + [anon_sym_PIPE_AMP] = ACTIONS(1218), + [anon_sym_AMP_AMP] = ACTIONS(1218), + [anon_sym_PIPE_PIPE] = ACTIONS(1218), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_LF] = ACTIONS(1218), + [anon_sym_AMP] = ACTIONS(1218), + }, + [372] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(1218), + [anon_sym_RPAREN] = ACTIONS(1218), + [anon_sym_SEMI_SEMI] = ACTIONS(1218), + [anon_sym_PIPE_AMP] = ACTIONS(1218), + [anon_sym_AMP_AMP] = ACTIONS(1218), + [anon_sym_PIPE_PIPE] = ACTIONS(1218), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_GT_GT] = ACTIONS(264), + [anon_sym_AMP_GT] = ACTIONS(264), + [anon_sym_AMP_GT_GT] = ACTIONS(264), + [anon_sym_LT_AMP] = ACTIONS(264), + [anon_sym_GT_AMP] = ACTIONS(264), + [anon_sym_DQUOTE] = ACTIONS(264), + [sym_raw_string] = ACTIONS(264), + [anon_sym_DOLLAR] = ACTIONS(264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(264), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(264), + [anon_sym_BQUOTE] = ACTIONS(264), + [anon_sym_LT_LPAREN] = ACTIONS(264), + [anon_sym_GT_LPAREN] = ACTIONS(264), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(264), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_LF] = ACTIONS(1218), + [anon_sym_AMP] = ACTIONS(1218), + }, + [373] = { + [anon_sym_PIPE] = ACTIONS(230), + [anon_sym_SEMI_SEMI] = ACTIONS(1220), + [anon_sym_PIPE_AMP] = ACTIONS(230), + [anon_sym_AMP_AMP] = ACTIONS(1220), + [anon_sym_PIPE_PIPE] = ACTIONS(1220), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1220), + [anon_sym_LF] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1220), + }, + [374] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(230), + [anon_sym_SEMI_SEMI] = ACTIONS(1220), + [anon_sym_PIPE_AMP] = ACTIONS(230), + [anon_sym_AMP_AMP] = ACTIONS(1220), + [anon_sym_PIPE_PIPE] = ACTIONS(1220), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_GT_GT] = ACTIONS(264), + [anon_sym_AMP_GT] = ACTIONS(264), + [anon_sym_AMP_GT_GT] = ACTIONS(264), + [anon_sym_LT_AMP] = ACTIONS(264), + [anon_sym_GT_AMP] = ACTIONS(264), + [anon_sym_DQUOTE] = ACTIONS(264), + [sym_raw_string] = ACTIONS(264), + [anon_sym_DOLLAR] = ACTIONS(264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(264), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(264), + [anon_sym_BQUOTE] = ACTIONS(264), + [anon_sym_LT_LPAREN] = ACTIONS(264), + [anon_sym_GT_LPAREN] = ACTIONS(264), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(264), + [anon_sym_SEMI] = ACTIONS(1220), + [anon_sym_LF] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1220), + }, + [375] = { + [sym_concatenation] = STATE(642), + [sym_string] = STATE(640), + [sym_simple_expansion] = STATE(640), + [sym_expansion] = STATE(640), + [sym_command_substitution] = STATE(640), + [sym_process_substitution] = STATE(640), + [sym_word] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(614), + [sym_raw_string] = ACTIONS(1222), + [anon_sym_DOLLAR] = ACTIONS(616), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(618), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(620), + [anon_sym_BQUOTE] = ACTIONS(622), + [anon_sym_LT_LPAREN] = ACTIONS(624), + [anon_sym_GT_LPAREN] = ACTIONS(624), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1224), + }, + [376] = { + [aux_sym_concatenation_repeat1] = STATE(644), + [sym_file_descriptor] = ACTIONS(424), + [sym__concat] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1228), + [anon_sym_SEMI_SEMI] = ACTIONS(1228), + [anon_sym_PIPE_AMP] = ACTIONS(1228), + [anon_sym_AMP_AMP] = ACTIONS(1228), + [anon_sym_PIPE_PIPE] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1228), + [anon_sym_GT_GT] = ACTIONS(1228), + [anon_sym_AMP_GT] = ACTIONS(1228), + [anon_sym_AMP_GT_GT] = ACTIONS(1228), + [anon_sym_LT_AMP] = ACTIONS(1228), + [anon_sym_GT_AMP] = ACTIONS(1228), + [anon_sym_LT_LT] = ACTIONS(1228), + [anon_sym_LT_LT_DASH] = ACTIONS(1228), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1228), + [anon_sym_LF] = ACTIONS(1228), + [anon_sym_AMP] = ACTIONS(1228), + }, + [377] = { + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(646), + [anon_sym_DQUOTE] = ACTIONS(1230), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_comment] = ACTIONS(64), + }, + [378] = { + [sym_special_variable_name] = STATE(649), + [anon_sym_DOLLAR] = ACTIONS(1232), + [anon_sym_POUND] = ACTIONS(1232), + [anon_sym_AT] = ACTIONS(1232), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1232), + [anon_sym_QMARK] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_BANG] = ACTIONS(1232), + [anon_sym_0] = ACTIONS(1236), + [anon_sym__] = ACTIONS(1236), + }, + [379] = { + [sym_special_variable_name] = STATE(652), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(1238), + [anon_sym_AT] = ACTIONS(162), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + }, + [380] = { + [sym_for_statement] = STATE(653), + [sym_while_statement] = STATE(653), + [sym_if_statement] = STATE(653), + [sym_case_statement] = STATE(653), + [sym_function_definition] = STATE(653), + [sym_subshell] = STATE(653), + [sym_pipeline] = STATE(653), + [sym_list] = STATE(653), + [sym_bracket_command] = STATE(653), + [sym_command] = STATE(653), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(654), + [sym_declaration_command] = STATE(653), + [sym_subscript] = STATE(126), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), + }, + [381] = { + [sym_for_statement] = STATE(655), + [sym_while_statement] = STATE(655), + [sym_if_statement] = STATE(655), + [sym_case_statement] = STATE(655), + [sym_function_definition] = STATE(655), + [sym_subshell] = STATE(655), + [sym_pipeline] = STATE(655), + [sym_list] = STATE(655), + [sym_bracket_command] = STATE(655), + [sym_command] = STATE(655), + [sym_command_name] = STATE(135), + [sym_variable_assignment] = STATE(656), + [sym_declaration_command] = STATE(655), + [sym_subscript] = STATE(137), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(129), + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [sym_process_substitution] = STATE(129), + [aux_sym_command_repeat1] = STATE(138), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(206), + [sym_variable_name] = ACTIONS(208), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(212), + [anon_sym_typeset] = ACTIONS(212), + [anon_sym_export] = ACTIONS(212), + [anon_sym_readonly] = ACTIONS(212), + [anon_sym_local] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(206), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(214), + }, + [382] = { + [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(124), + [sym_variable_assignment] = STATE(658), + [sym_declaration_command] = STATE(657), + [sym_subscript] = STATE(126), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), + }, + [383] = { + [aux_sym_concatenation_repeat1] = STATE(659), + [sym_file_descriptor] = ACTIONS(442), + [sym__concat] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_SEMI_SEMI] = ACTIONS(1242), + [anon_sym_PIPE_AMP] = ACTIONS(1242), + [anon_sym_AMP_AMP] = ACTIONS(1242), + [anon_sym_PIPE_PIPE] = ACTIONS(1242), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_GT] = ACTIONS(1242), + [anon_sym_GT_GT] = ACTIONS(1242), + [anon_sym_AMP_GT] = ACTIONS(1242), + [anon_sym_AMP_GT_GT] = ACTIONS(1242), + [anon_sym_LT_AMP] = ACTIONS(1242), + [anon_sym_GT_AMP] = ACTIONS(1242), + [anon_sym_LT_LT] = ACTIONS(1242), + [anon_sym_LT_LT_DASH] = ACTIONS(1242), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_LF] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + }, + [384] = { + [sym_file_descriptor] = ACTIONS(424), + [anon_sym_PIPE] = ACTIONS(1228), + [anon_sym_RPAREN] = ACTIONS(1228), + [anon_sym_SEMI_SEMI] = ACTIONS(1228), + [anon_sym_PIPE_AMP] = ACTIONS(1228), + [anon_sym_AMP_AMP] = ACTIONS(1228), + [anon_sym_PIPE_PIPE] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1228), + [anon_sym_GT_GT] = ACTIONS(1228), + [anon_sym_AMP_GT] = ACTIONS(1228), + [anon_sym_AMP_GT_GT] = ACTIONS(1228), + [anon_sym_LT_AMP] = ACTIONS(1228), + [anon_sym_GT_AMP] = ACTIONS(1228), + [anon_sym_LT_LT] = ACTIONS(1228), + [anon_sym_LT_LT_DASH] = ACTIONS(1228), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1228), + [anon_sym_LF] = ACTIONS(1228), + [anon_sym_AMP] = ACTIONS(1228), + }, + [385] = { + [sym_file_descriptor] = ACTIONS(1244), + [anon_sym_PIPE] = ACTIONS(1246), + [anon_sym_RPAREN] = ACTIONS(1246), + [anon_sym_SEMI_SEMI] = ACTIONS(1246), + [anon_sym_PIPE_AMP] = ACTIONS(1246), + [anon_sym_AMP_AMP] = ACTIONS(1246), + [anon_sym_PIPE_PIPE] = ACTIONS(1246), + [anon_sym_LT] = ACTIONS(1246), + [anon_sym_GT] = ACTIONS(1246), + [anon_sym_GT_GT] = ACTIONS(1246), + [anon_sym_AMP_GT] = ACTIONS(1246), + [anon_sym_AMP_GT_GT] = ACTIONS(1246), + [anon_sym_LT_AMP] = ACTIONS(1246), + [anon_sym_GT_AMP] = ACTIONS(1246), + [anon_sym_LT_LT] = ACTIONS(1246), + [anon_sym_LT_LT_DASH] = ACTIONS(1246), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_LF] = ACTIONS(1246), + [anon_sym_AMP] = ACTIONS(1246), + }, + [386] = { + [sym_simple_expansion] = STATE(660), + [sym_expansion] = STATE(660), + [aux_sym_heredoc_repeat1] = STATE(664), + [sym__heredoc_middle] = ACTIONS(1248), + [sym__heredoc_end] = ACTIONS(1250), + [anon_sym_DOLLAR] = ACTIONS(1252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1254), + [sym_comment] = ACTIONS(50), + }, + [387] = { + [sym_file_descriptor] = ACTIONS(1256), + [anon_sym_PIPE] = ACTIONS(1258), + [anon_sym_RPAREN] = ACTIONS(1258), + [anon_sym_SEMI_SEMI] = ACTIONS(1258), + [anon_sym_PIPE_AMP] = ACTIONS(1258), + [anon_sym_AMP_AMP] = ACTIONS(1258), + [anon_sym_PIPE_PIPE] = ACTIONS(1258), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_GT] = ACTIONS(1258), + [anon_sym_GT_GT] = ACTIONS(1258), + [anon_sym_AMP_GT] = ACTIONS(1258), + [anon_sym_AMP_GT_GT] = ACTIONS(1258), + [anon_sym_LT_AMP] = ACTIONS(1258), + [anon_sym_GT_AMP] = ACTIONS(1258), + [anon_sym_LT_LT] = ACTIONS(1258), + [anon_sym_LT_LT_DASH] = ACTIONS(1258), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_LF] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + }, + [388] = { + [sym_concatenation] = STATE(152), + [sym_string] = STATE(147), + [sym_simple_expansion] = STATE(147), + [sym_expansion] = STATE(147), + [sym_command_substitution] = STATE(147), + [sym_process_substitution] = STATE(147), + [aux_sym_for_statement_repeat1] = STATE(388), + [sym_file_descriptor] = ACTIONS(929), + [sym_word] = ACTIONS(1260), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_SEMI_SEMI] = ACTIONS(1263), + [anon_sym_PIPE_AMP] = ACTIONS(1263), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_GT_GT] = ACTIONS(1263), + [anon_sym_AMP_GT] = ACTIONS(1263), + [anon_sym_AMP_GT_GT] = ACTIONS(1263), + [anon_sym_LT_AMP] = ACTIONS(1263), + [anon_sym_GT_AMP] = ACTIONS(1263), + [anon_sym_LT_LT] = ACTIONS(1263), + [anon_sym_LT_LT_DASH] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym_raw_string] = ACTIONS(1268), + [anon_sym_DOLLAR] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1277), + [anon_sym_BQUOTE] = ACTIONS(1280), + [anon_sym_LT_LPAREN] = ACTIONS(1283), + [anon_sym_GT_LPAREN] = ACTIONS(1283), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_LF] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1263), + }, + [389] = { + [sym_file_redirect] = STATE(151), + [sym_heredoc_redirect] = STATE(151), + [aux_sym_command_repeat2] = STATE(390), + [sym_file_descriptor] = ACTIONS(236), + [anon_sym_PIPE] = ACTIONS(1289), + [anon_sym_SEMI_SEMI] = ACTIONS(1289), + [anon_sym_PIPE_AMP] = ACTIONS(1289), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [anon_sym_PIPE_PIPE] = ACTIONS(1289), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(242), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(242), + [anon_sym_LT_AMP] = ACTIONS(242), + [anon_sym_GT_AMP] = ACTIONS(242), + [anon_sym_LT_LT] = ACTIONS(244), + [anon_sym_LT_LT_DASH] = ACTIONS(244), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym_LF] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), + }, + [390] = { + [sym_file_redirect] = STATE(151), + [sym_heredoc_redirect] = STATE(151), + [aux_sym_command_repeat2] = STATE(390), + [sym_file_descriptor] = ACTIONS(1291), + [anon_sym_PIPE] = ACTIONS(1294), + [anon_sym_SEMI_SEMI] = ACTIONS(1294), + [anon_sym_PIPE_AMP] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1296), + [anon_sym_AMP_GT] = ACTIONS(1296), + [anon_sym_AMP_GT_GT] = ACTIONS(1296), + [anon_sym_LT_AMP] = ACTIONS(1296), + [anon_sym_GT_AMP] = ACTIONS(1296), + [anon_sym_LT_LT] = ACTIONS(1299), + [anon_sym_LT_LT_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_LF] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + }, + [391] = { + [sym_concatenation] = STATE(566), + [sym_string] = STATE(665), + [sym_array] = STATE(566), + [sym_simple_expansion] = STATE(665), + [sym_expansion] = STATE(665), + [sym_command_substitution] = STATE(665), + [sym_process_substitution] = STATE(665), + [sym_word] = ACTIONS(1302), + [sym__empty_value] = ACTIONS(1094), + [anon_sym_LPAREN] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(130), + [sym_raw_string] = ACTIONS(1302), + [anon_sym_DOLLAR] = ACTIONS(132), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(134), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(136), + [anon_sym_BQUOTE] = ACTIONS(138), + [anon_sym_LT_LPAREN] = ACTIONS(140), + [anon_sym_GT_LPAREN] = ACTIONS(140), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1304), + }, + [392] = { + [sym_file_redirect] = STATE(151), + [sym_heredoc_redirect] = STATE(151), + [sym_concatenation] = STATE(152), + [sym_string] = STATE(147), + [sym_simple_expansion] = STATE(147), + [sym_expansion] = STATE(147), + [sym_command_substitution] = STATE(147), + [sym_process_substitution] = STATE(147), + [aux_sym_for_statement_repeat1] = STATE(388), + [aux_sym_command_repeat2] = STATE(667), + [sym_file_descriptor] = ACTIONS(236), + [sym_word] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(1289), + [anon_sym_SEMI_SEMI] = ACTIONS(1289), + [anon_sym_PIPE_AMP] = ACTIONS(1289), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [anon_sym_PIPE_PIPE] = ACTIONS(1289), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(242), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(242), + [anon_sym_LT_AMP] = ACTIONS(242), + [anon_sym_GT_AMP] = ACTIONS(242), + [anon_sym_LT_LT] = ACTIONS(244), + [anon_sym_LT_LT_DASH] = ACTIONS(244), + [anon_sym_DQUOTE] = ACTIONS(246), + [sym_raw_string] = ACTIONS(248), + [anon_sym_DOLLAR] = ACTIONS(250), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), + [anon_sym_BQUOTE] = ACTIONS(256), + [anon_sym_LT_LPAREN] = ACTIONS(258), + [anon_sym_GT_LPAREN] = ACTIONS(258), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(260), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym_LF] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), + }, + [393] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [394] = { + [anon_sym_EQ] = ACTIONS(1310), + [anon_sym_PLUS_EQ] = ACTIONS(1310), + [sym_comment] = ACTIONS(50), + }, + [395] = { + [aux_sym_concatenation_repeat1] = STATE(670), + [sym__concat] = ACTIONS(742), + [anon_sym_RBRACK] = ACTIONS(282), + [sym_comment] = ACTIONS(50), + }, + [396] = { + [sym__concat] = ACTIONS(446), + [anon_sym_PIPE] = ACTIONS(446), + [anon_sym_RPAREN] = ACTIONS(446), + [anon_sym_RBRACE] = ACTIONS(446), + [anon_sym_RBRACK] = ACTIONS(446), + [sym_comment] = ACTIONS(50), + }, + [397] = { + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(291), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_comment] = ACTIONS(64), + }, + [398] = { + [sym__concat] = ACTIONS(466), + [anon_sym_PIPE] = ACTIONS(466), + [anon_sym_RPAREN] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_RBRACK] = ACTIONS(466), + [sym_comment] = ACTIONS(50), + }, + [399] = { + [sym__concat] = ACTIONS(470), + [anon_sym_PIPE] = ACTIONS(470), + [anon_sym_RPAREN] = ACTIONS(470), + [anon_sym_RBRACE] = ACTIONS(470), + [anon_sym_RBRACK] = ACTIONS(470), + [sym_comment] = ACTIONS(50), + }, + [400] = { + [sym__concat] = ACTIONS(474), + [anon_sym_PIPE] = ACTIONS(474), + [anon_sym_RPAREN] = ACTIONS(474), + [anon_sym_RBRACE] = ACTIONS(474), + [anon_sym_RBRACK] = ACTIONS(474), + [sym_comment] = ACTIONS(50), + }, + [401] = { + [sym_special_variable_name] = STATE(673), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(466), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(478), + [anon_sym_COLON_QMARK] = ACTIONS(466), + [anon_sym_COLON_DASH] = ACTIONS(466), + [anon_sym_PERCENT] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(466), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + }, + [402] = { + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_EQ] = ACTIONS(1320), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_COLON_QMARK] = ACTIONS(1320), + [anon_sym_COLON_DASH] = ACTIONS(1320), + [anon_sym_PERCENT] = ACTIONS(1320), + [anon_sym_SLASH] = ACTIONS(1320), + [sym_comment] = ACTIONS(50), + }, + [403] = { + [anon_sym_RBRACE] = ACTIONS(1324), + [anon_sym_LBRACK] = ACTIONS(1326), + [anon_sym_EQ] = ACTIONS(1328), + [anon_sym_COLON] = ACTIONS(1330), + [anon_sym_COLON_QMARK] = ACTIONS(1328), + [anon_sym_COLON_DASH] = ACTIONS(1328), + [anon_sym_PERCENT] = ACTIONS(1328), + [anon_sym_SLASH] = ACTIONS(1328), + [sym_comment] = ACTIONS(50), + }, + [404] = { + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(1332), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), + }, + [405] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(1332), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [406] = { + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_BQUOTE] = ACTIONS(1332), + [sym_comment] = ACTIONS(50), + }, + [407] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(1332), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [408] = { + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(1334), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), + }, + [409] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(1334), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [410] = { + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_PLUS_EQ] = ACTIONS(1336), + [sym_comment] = ACTIONS(50), + }, + [411] = { + [aux_sym_concatenation_repeat1] = STATE(670), + [sym__concat] = ACTIONS(742), + [anon_sym_RBRACK] = ACTIONS(596), + [sym_comment] = ACTIONS(50), + }, + [412] = { + [sym_string] = STATE(682), + [sym_simple_expansion] = STATE(682), + [sym_expansion] = STATE(682), + [sym_command_substitution] = STATE(682), + [sym_process_substitution] = STATE(682), + [sym_word] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(308), + [sym_raw_string] = ACTIONS(1338), + [anon_sym_DOLLAR] = ACTIONS(310), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(312), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_LT_LPAREN] = ACTIONS(318), + [anon_sym_GT_LPAREN] = ACTIONS(318), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1340), + }, + [413] = { + [aux_sym_concatenation_repeat1] = STATE(684), + [sym_file_descriptor] = ACTIONS(282), + [sym_word] = ACTIONS(282), + [sym__concat] = ACTIONS(762), + [sym_variable_name] = ACTIONS(282), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_SEMI_SEMI] = ACTIONS(284), + [anon_sym_PIPE_AMP] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_AMP_GT] = ACTIONS(284), + [anon_sym_AMP_GT_GT] = ACTIONS(284), + [anon_sym_LT_AMP] = ACTIONS(284), + [anon_sym_GT_AMP] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(284), + [sym_raw_string] = ACTIONS(284), + [anon_sym_DOLLAR] = ACTIONS(284), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(284), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(284), + [anon_sym_GT_LPAREN] = ACTIONS(284), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_LF] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(284), + }, + [414] = { + [aux_sym_concatenation_repeat1] = STATE(685), + [sym_word] = ACTIONS(388), + [sym__concat] = ACTIONS(390), + [anon_sym_RPAREN] = ACTIONS(388), + [anon_sym_DQUOTE] = ACTIONS(388), + [sym_raw_string] = ACTIONS(388), + [anon_sym_DOLLAR] = ACTIONS(392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(388), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(388), + [anon_sym_BQUOTE] = ACTIONS(388), + [anon_sym_LT_LPAREN] = ACTIONS(388), + [anon_sym_GT_LPAREN] = ACTIONS(388), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(392), + }, + [415] = { + [sym_file_descriptor] = ACTIONS(1342), + [sym_word] = ACTIONS(1342), + [sym_variable_name] = ACTIONS(1342), + [anon_sym_PIPE] = ACTIONS(1344), + [anon_sym_RPAREN] = ACTIONS(1344), + [anon_sym_SEMI_SEMI] = ACTIONS(1344), + [anon_sym_PIPE_AMP] = ACTIONS(1344), + [anon_sym_AMP_AMP] = ACTIONS(1344), + [anon_sym_PIPE_PIPE] = ACTIONS(1344), + [anon_sym_LT] = ACTIONS(1344), + [anon_sym_GT] = ACTIONS(1344), + [anon_sym_GT_GT] = ACTIONS(1344), + [anon_sym_AMP_GT] = ACTIONS(1344), + [anon_sym_AMP_GT_GT] = ACTIONS(1344), + [anon_sym_LT_AMP] = ACTIONS(1344), + [anon_sym_GT_AMP] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_raw_string] = ACTIONS(1344), + [anon_sym_DOLLAR] = ACTIONS(1344), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1344), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1344), + [anon_sym_BQUOTE] = ACTIONS(1344), + [anon_sym_LT_LPAREN] = ACTIONS(1344), + [anon_sym_GT_LPAREN] = ACTIONS(1344), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym_LF] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + }, + [416] = { + [aux_sym_concatenation_repeat1] = STATE(686), + [sym_word] = ACTIONS(406), + [sym__concat] = ACTIONS(390), + [anon_sym_RPAREN] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(406), + [sym_raw_string] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(408), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(406), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(406), + [anon_sym_BQUOTE] = ACTIONS(406), + [anon_sym_LT_LPAREN] = ACTIONS(406), + [anon_sym_GT_LPAREN] = ACTIONS(406), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(408), + }, + [417] = { + [sym_concatenation] = STATE(72), + [sym_string] = STATE(414), + [sym_simple_expansion] = STATE(414), + [sym_expansion] = STATE(414), + [sym_command_substitution] = STATE(414), + [sym_process_substitution] = STATE(414), + [aux_sym_for_statement_repeat1] = STATE(688), + [sym_word] = ACTIONS(766), + [anon_sym_RPAREN] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(102), + [sym_raw_string] = ACTIONS(766), + [anon_sym_DOLLAR] = ACTIONS(104), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(108), + [anon_sym_BQUOTE] = ACTIONS(110), + [anon_sym_LT_LPAREN] = ACTIONS(112), + [anon_sym_GT_LPAREN] = ACTIONS(112), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(770), + }, + [418] = { + [sym_file_descriptor] = ACTIONS(446), + [sym_word] = 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_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(448), + [anon_sym_SEMI] = ACTIONS(448), + [anon_sym_LF] = ACTIONS(448), + [anon_sym_AMP] = ACTIONS(448), + }, + [419] = { + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(291), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_comment] = ACTIONS(64), + }, + [420] = { + [sym_file_descriptor] = ACTIONS(466), + [sym_word] = ACTIONS(466), + [sym__concat] = ACTIONS(466), + [sym_variable_name] = ACTIONS(466), + [anon_sym_PIPE] = ACTIONS(468), + [anon_sym_RPAREN] = ACTIONS(468), + [anon_sym_SEMI_SEMI] = ACTIONS(468), + [anon_sym_PIPE_AMP] = ACTIONS(468), + [anon_sym_AMP_AMP] = ACTIONS(468), + [anon_sym_PIPE_PIPE] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(468), + [anon_sym_GT_GT] = ACTIONS(468), + [anon_sym_AMP_GT] = ACTIONS(468), + [anon_sym_AMP_GT_GT] = ACTIONS(468), + [anon_sym_LT_AMP] = ACTIONS(468), + [anon_sym_GT_AMP] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [sym_raw_string] = ACTIONS(468), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(468), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(468), + [anon_sym_BQUOTE] = ACTIONS(468), + [anon_sym_LT_LPAREN] = ACTIONS(468), + [anon_sym_GT_LPAREN] = ACTIONS(468), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(468), + [anon_sym_SEMI] = ACTIONS(468), + [anon_sym_LF] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(468), + }, + [421] = { + [sym_file_descriptor] = ACTIONS(470), + [sym_word] = ACTIONS(470), + [sym__concat] = ACTIONS(470), + [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_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(472), + [anon_sym_SEMI] = ACTIONS(472), + [anon_sym_LF] = ACTIONS(472), + [anon_sym_AMP] = ACTIONS(472), + }, + [422] = { + [sym_file_descriptor] = ACTIONS(474), + [sym_word] = 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), @@ -12288,8 +15678,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -12298,4946 +15686,646 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(476), [anon_sym_LT_LPAREN] = ACTIONS(476), [anon_sym_GT_LPAREN] = ACTIONS(476), - [sym_word] = ACTIONS(476), [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(476), [anon_sym_SEMI] = ACTIONS(476), [anon_sym_LF] = ACTIONS(476), [anon_sym_AMP] = ACTIONS(476), }, - [216] = { - [anon_sym_RPAREN] = ACTIONS(857), - [sym_comment] = ACTIONS(52), - }, - [217] = { - [sym_for_statement] = STATE(376), - [sym_while_statement] = STATE(376), - [sym_if_statement] = STATE(376), - [sym_case_statement] = STATE(376), - [sym_function_definition] = STATE(376), - [sym_subshell] = STATE(376), - [sym_pipeline] = STATE(376), - [sym_list] = STATE(376), - [sym_bracket_command] = STATE(376), - [sym_command] = STATE(376), - [sym_command_name] = STATE(58), - [sym_variable_assignment] = STATE(377), - [sym_declaration_command] = STATE(376), - [sym_subscript] = STATE(60), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(29), - [sym_string] = STATE(55), - [sym_simple_expansion] = STATE(55), - [sym_expansion] = STATE(55), - [sym_command_substitution] = STATE(55), - [sym_process_substitution] = STATE(55), - [aux_sym_command_repeat1] = STATE(62), - [sym_file_descriptor] = ACTIONS(8), - [sym_variable_name] = ACTIONS(88), - [anon_sym_for] = ACTIONS(14), - [anon_sym_while] = ACTIONS(16), - [anon_sym_if] = ACTIONS(18), - [anon_sym_case] = ACTIONS(20), - [anon_sym_function] = ACTIONS(90), - [anon_sym_LPAREN] = ACTIONS(24), - [anon_sym_LBRACK] = ACTIONS(26), - [anon_sym_LBRACK_LBRACK] = ACTIONS(28), - [anon_sym_declare] = ACTIONS(92), - [anon_sym_typeset] = ACTIONS(92), - [anon_sym_export] = ACTIONS(92), - [anon_sym_readonly] = ACTIONS(92), - [anon_sym_local] = ACTIONS(92), - [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(94), - [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(96), - [sym_comment] = ACTIONS(52), - }, - [218] = { - [anon_sym_PIPE] = ACTIONS(859), - [anon_sym_RPAREN] = ACTIONS(859), - [anon_sym_SEMI_SEMI] = ACTIONS(859), - [anon_sym_PIPE_AMP] = ACTIONS(859), - [anon_sym_AMP_AMP] = ACTIONS(859), - [anon_sym_PIPE_PIPE] = ACTIONS(859), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(859), - [anon_sym_LF] = ACTIONS(859), - [anon_sym_AMP] = ACTIONS(859), - }, - [219] = { - [sym_file_descriptor] = ACTIONS(606), - [sym_variable_name] = ACTIONS(606), - [anon_sym_for] = ACTIONS(608), - [anon_sym_while] = ACTIONS(608), - [anon_sym_if] = ACTIONS(608), - [anon_sym_case] = ACTIONS(608), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_function] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(606), - [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_LBRACK_LBRACK] = ACTIONS(608), - [anon_sym_declare] = ACTIONS(608), - [anon_sym_typeset] = ACTIONS(608), - [anon_sym_export] = ACTIONS(608), - [anon_sym_readonly] = ACTIONS(608), - [anon_sym_local] = ACTIONS(608), - [anon_sym_LT] = ACTIONS(608), - [anon_sym_GT] = ACTIONS(608), - [anon_sym_GT_GT] = ACTIONS(606), - [anon_sym_AMP_GT] = ACTIONS(608), - [anon_sym_AMP_GT_GT] = ACTIONS(606), - [anon_sym_LT_AMP] = ACTIONS(606), - [anon_sym_GT_AMP] = ACTIONS(606), - [anon_sym_DQUOTE] = ACTIONS(606), - [sym_raw_string] = ACTIONS(606), - [anon_sym_DOLLAR] = ACTIONS(608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(606), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), - [anon_sym_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(606), - [anon_sym_GT_LPAREN] = ACTIONS(606), - [sym_word] = ACTIONS(610), - [sym_comment] = ACTIONS(52), - }, - [220] = { - [sym_for_statement] = STATE(497), - [sym_while_statement] = STATE(497), - [sym_if_statement] = STATE(497), - [sym_case_statement] = STATE(497), - [sym_function_definition] = STATE(497), - [sym_subshell] = STATE(497), - [sym_pipeline] = STATE(497), - [sym_list] = STATE(497), - [sym_bracket_command] = STATE(497), - [sym_command] = STATE(497), - [sym_command_name] = STATE(58), - [sym_variable_assignment] = STATE(498), - [sym_declaration_command] = STATE(497), - [sym_subscript] = STATE(60), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(29), - [sym_string] = STATE(55), - [sym_simple_expansion] = STATE(55), - [sym_expansion] = STATE(55), - [sym_command_substitution] = STATE(55), - [sym_process_substitution] = STATE(55), - [aux_sym_command_repeat1] = STATE(62), - [sym_file_descriptor] = ACTIONS(8), - [sym_variable_name] = ACTIONS(88), - [anon_sym_for] = ACTIONS(14), - [anon_sym_while] = ACTIONS(16), - [anon_sym_if] = ACTIONS(18), - [anon_sym_case] = ACTIONS(20), - [anon_sym_function] = ACTIONS(90), - [anon_sym_LPAREN] = ACTIONS(24), - [anon_sym_LBRACK] = ACTIONS(26), - [anon_sym_LBRACK_LBRACK] = ACTIONS(28), - [anon_sym_declare] = ACTIONS(92), - [anon_sym_typeset] = ACTIONS(92), - [anon_sym_export] = ACTIONS(92), - [anon_sym_readonly] = ACTIONS(92), - [anon_sym_local] = ACTIONS(92), - [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(94), - [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(96), - [sym_comment] = ACTIONS(52), - }, - [221] = { - [anon_sym_LT] = ACTIONS(863), - [anon_sym_GT] = ACTIONS(863), - [anon_sym_GT_GT] = ACTIONS(865), - [anon_sym_AMP_GT] = ACTIONS(863), - [anon_sym_AMP_GT_GT] = ACTIONS(865), - [anon_sym_LT_AMP] = ACTIONS(865), - [anon_sym_GT_AMP] = ACTIONS(865), - [sym_comment] = ACTIONS(52), - }, - [222] = { - [sym_concatenation] = STATE(388), - [sym_string] = STATE(500), - [sym_simple_expansion] = STATE(500), - [sym_expansion] = STATE(500), - [sym_command_substitution] = STATE(500), - [sym_process_substitution] = STATE(500), - [anon_sym_DQUOTE] = ACTIONS(616), - [sym_raw_string] = ACTIONS(867), - [anon_sym_DOLLAR] = ACTIONS(620), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(622), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), - [anon_sym_BQUOTE] = ACTIONS(626), - [anon_sym_LT_LPAREN] = ACTIONS(628), - [anon_sym_GT_LPAREN] = ACTIONS(628), - [sym_word] = ACTIONS(869), - [sym_comment] = ACTIONS(52), - }, - [223] = { - [aux_sym_concatenation_repeat1] = STATE(215), - [sym_file_descriptor] = ACTIONS(388), - [sym__concat] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(390), - [anon_sym_RPAREN] = ACTIONS(390), - [anon_sym_SEMI_SEMI] = ACTIONS(390), - [anon_sym_PIPE_AMP] = ACTIONS(390), - [anon_sym_AMP_AMP] = ACTIONS(390), - [anon_sym_PIPE_PIPE] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_GT] = ACTIONS(390), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_AMP_GT] = ACTIONS(390), - [anon_sym_AMP_GT_GT] = ACTIONS(390), - [anon_sym_LT_AMP] = ACTIONS(390), - [anon_sym_GT_AMP] = ACTIONS(390), - [anon_sym_LT_LT] = ACTIONS(390), - [anon_sym_LT_LT_DASH] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(390), - [sym_raw_string] = ACTIONS(390), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(390), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), - [anon_sym_BQUOTE] = ACTIONS(390), - [anon_sym_LT_LPAREN] = ACTIONS(390), - [anon_sym_GT_LPAREN] = ACTIONS(390), - [sym_word] = ACTIONS(390), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(390), - [anon_sym_LF] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(390), - }, - [224] = { - [sym_file_redirect] = STATE(154), - [sym_heredoc_redirect] = STATE(154), - [sym_concatenation] = STATE(155), - [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(501), - [aux_sym_command_repeat2] = STATE(502), - [sym_file_descriptor] = ACTIONS(374), - [anon_sym_PIPE] = ACTIONS(640), - [anon_sym_RPAREN] = ACTIONS(640), - [anon_sym_SEMI_SEMI] = ACTIONS(640), - [anon_sym_PIPE_AMP] = ACTIONS(640), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT] = ACTIONS(376), - [anon_sym_GT] = ACTIONS(376), - [anon_sym_GT_GT] = ACTIONS(376), - [anon_sym_AMP_GT] = ACTIONS(376), - [anon_sym_AMP_GT_GT] = ACTIONS(376), - [anon_sym_LT_AMP] = ACTIONS(376), - [anon_sym_GT_AMP] = ACTIONS(376), - [anon_sym_LT_LT] = ACTIONS(250), - [anon_sym_LT_LT_DASH] = ACTIONS(250), - [anon_sym_DQUOTE] = ACTIONS(252), - [sym_raw_string] = ACTIONS(378), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(260), - [anon_sym_BQUOTE] = ACTIONS(262), - [anon_sym_LT_LPAREN] = ACTIONS(264), - [anon_sym_GT_LPAREN] = ACTIONS(264), - [sym_word] = ACTIONS(378), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LF] = ACTIONS(640), - [anon_sym_AMP] = ACTIONS(640), - }, - [225] = { - [sym_file_redirect] = STATE(154), - [sym_heredoc_redirect] = STATE(154), - [aux_sym_command_repeat2] = STATE(503), - [sym_file_descriptor] = ACTIONS(374), - [anon_sym_PIPE] = ACTIONS(640), - [anon_sym_RPAREN] = ACTIONS(640), - [anon_sym_SEMI_SEMI] = ACTIONS(640), - [anon_sym_PIPE_AMP] = ACTIONS(640), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT] = ACTIONS(376), - [anon_sym_GT] = ACTIONS(376), - [anon_sym_GT_GT] = ACTIONS(376), - [anon_sym_AMP_GT] = ACTIONS(376), - [anon_sym_AMP_GT_GT] = ACTIONS(376), - [anon_sym_LT_AMP] = ACTIONS(376), - [anon_sym_GT_AMP] = ACTIONS(376), - [anon_sym_LT_LT] = ACTIONS(250), - [anon_sym_LT_LT_DASH] = ACTIONS(250), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LF] = ACTIONS(640), - [anon_sym_AMP] = ACTIONS(640), - }, - [226] = { - [anon_sym_PIPE] = ACTIONS(366), - [anon_sym_RPAREN] = ACTIONS(871), - [anon_sym_SEMI_SEMI] = ACTIONS(873), - [anon_sym_PIPE_AMP] = ACTIONS(366), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(873), - [anon_sym_LF] = ACTIONS(873), - [anon_sym_AMP] = ACTIONS(873), - }, - [227] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(366), - [anon_sym_RPAREN] = ACTIONS(871), - [anon_sym_SEMI_SEMI] = ACTIONS(873), - [anon_sym_PIPE_AMP] = ACTIONS(366), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_AMP_GT] = ACTIONS(268), - [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(268), - [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(268), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(873), - [anon_sym_LF] = ACTIONS(873), - [anon_sym_AMP] = ACTIONS(873), - }, - [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(642), - [sym_variable_name] = ACTIONS(645), - [anon_sym_for] = ACTIONS(650), - [anon_sym_while] = ACTIONS(653), - [anon_sym_if] = ACTIONS(656), - [anon_sym_case] = ACTIONS(659), - [anon_sym_function] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_LBRACK_LBRACK] = ACTIONS(671), - [anon_sym_declare] = ACTIONS(674), - [anon_sym_typeset] = ACTIONS(674), - [anon_sym_export] = ACTIONS(674), - [anon_sym_readonly] = ACTIONS(674), - [anon_sym_local] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(677), - [anon_sym_GT_GT] = ACTIONS(680), - [anon_sym_AMP_GT] = ACTIONS(677), - [anon_sym_AMP_GT_GT] = ACTIONS(680), - [anon_sym_LT_AMP] = ACTIONS(680), - [anon_sym_GT_AMP] = ACTIONS(680), - [anon_sym_DQUOTE] = ACTIONS(683), - [sym_raw_string] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(692), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), - [anon_sym_BQUOTE] = ACTIONS(698), - [anon_sym_LT_LPAREN] = ACTIONS(701), - [anon_sym_GT_LPAREN] = ACTIONS(701), - [sym_word] = ACTIONS(704), - [sym_comment] = ACTIONS(52), - }, - [229] = { - [sym_file_redirect] = STATE(154), - [sym_heredoc_redirect] = STATE(154), - [sym_concatenation] = STATE(155), - [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(502), - [sym_file_descriptor] = ACTIONS(374), - [anon_sym_PIPE] = ACTIONS(640), - [anon_sym_RPAREN] = ACTIONS(640), - [anon_sym_SEMI_SEMI] = ACTIONS(640), - [anon_sym_PIPE_AMP] = ACTIONS(640), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT] = ACTIONS(376), - [anon_sym_GT] = ACTIONS(376), - [anon_sym_GT_GT] = ACTIONS(376), - [anon_sym_AMP_GT] = ACTIONS(376), - [anon_sym_AMP_GT_GT] = ACTIONS(376), - [anon_sym_LT_AMP] = ACTIONS(376), - [anon_sym_GT_AMP] = ACTIONS(376), - [anon_sym_LT_LT] = ACTIONS(250), - [anon_sym_LT_LT_DASH] = ACTIONS(250), - [anon_sym_DQUOTE] = ACTIONS(252), - [sym_raw_string] = ACTIONS(378), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(260), - [anon_sym_BQUOTE] = ACTIONS(262), - [anon_sym_LT_LPAREN] = ACTIONS(264), - [anon_sym_GT_LPAREN] = ACTIONS(264), - [sym_word] = ACTIONS(378), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LF] = ACTIONS(640), - [anon_sym_AMP] = ACTIONS(640), - }, - [230] = { - [sym__concat] = ACTIONS(450), - [anon_sym_RBRACE] = ACTIONS(450), - [anon_sym_RBRACK] = ACTIONS(875), - [anon_sym_DQUOTE] = ACTIONS(450), - [sym_raw_string] = ACTIONS(450), - [anon_sym_DOLLAR] = ACTIONS(875), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(450), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(450), - [anon_sym_BQUOTE] = ACTIONS(450), - [anon_sym_LT_LPAREN] = ACTIONS(450), - [anon_sym_GT_LPAREN] = ACTIONS(450), - [sym_word] = ACTIONS(452), - [sym_comment] = ACTIONS(52), - }, - [231] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(298), - [anon_sym_DQUOTE] = ACTIONS(877), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), - }, - [232] = { - [sym_string] = STATE(507), - [sym_simple_expansion] = STATE(507), - [sym_expansion] = STATE(507), - [sym_command_substitution] = STATE(507), - [sym_process_substitution] = STATE(507), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(881), - [sym_comment] = ACTIONS(52), - }, - [233] = { - [aux_sym_concatenation_repeat1] = STATE(508), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACK] = ACTIONS(883), - [anon_sym_DQUOTE] = ACTIONS(474), - [sym_raw_string] = ACTIONS(474), - [anon_sym_DOLLAR] = ACTIONS(883), - [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), - }, - [234] = { - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(322), - [anon_sym_RBRACK] = ACTIONS(324), - [anon_sym_DQUOTE] = ACTIONS(322), - [sym_raw_string] = ACTIONS(322), - [anon_sym_DOLLAR] = ACTIONS(324), - [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(478), - [sym_comment] = ACTIONS(52), - }, - [235] = { - [sym__concat] = ACTIONS(480), - [anon_sym_RBRACE] = ACTIONS(480), - [anon_sym_RBRACK] = ACTIONS(885), - [anon_sym_DQUOTE] = ACTIONS(480), - [sym_raw_string] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(885), - [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(482), - [sym_comment] = ACTIONS(52), - }, - [236] = { - [sym__concat] = ACTIONS(484), - [anon_sym_RBRACE] = ACTIONS(484), - [anon_sym_RBRACK] = ACTIONS(887), - [anon_sym_DQUOTE] = ACTIONS(484), - [sym_raw_string] = ACTIONS(484), - [anon_sym_DOLLAR] = ACTIONS(887), - [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(486), - [sym_comment] = ACTIONS(52), - }, - [237] = { - [sym_special_variable_name] = STATE(510), - [anon_sym_RBRACE] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(62), - [anon_sym_AT] = ACTIONS(62), - [anon_sym_COLON] = ACTIONS(324), - [anon_sym_COLON_QMARK] = ACTIONS(322), - [anon_sym_COLON_DASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(889), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), - }, - [238] = { - [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_EQ] = ACTIONS(895), - [anon_sym_COLON] = ACTIONS(897), - [anon_sym_COLON_QMARK] = ACTIONS(895), - [anon_sym_COLON_DASH] = ACTIONS(895), - [anon_sym_PERCENT] = ACTIONS(895), - [anon_sym_SLASH] = ACTIONS(895), - [sym_comment] = ACTIONS(52), - }, - [239] = { - [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), - }, - [240] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(907), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), - }, - [241] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(907), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [242] = { - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_BQUOTE] = ACTIONS(907), - [sym_comment] = ACTIONS(52), - }, - [243] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(907), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [244] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), - }, - [245] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [246] = { - [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_RPAREN] = ACTIONS(911), - [anon_sym_SEMI_SEMI] = ACTIONS(911), - [anon_sym_PIPE_AMP] = ACTIONS(911), - [anon_sym_AMP_AMP] = ACTIONS(911), - [anon_sym_PIPE_PIPE] = ACTIONS(911), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(911), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(911), - }, - [247] = { - [sym_concatenation] = STATE(70), - [sym_string] = STATE(64), - [sym_simple_expansion] = STATE(64), - [sym_expansion] = STATE(64), - [sym_command_substitution] = STATE(64), - [sym_process_substitution] = STATE(64), - [aux_sym_for_statement_repeat1] = STATE(247), - [anon_sym_RBRACK] = ACTIONS(913), - [anon_sym_DQUOTE] = ACTIONS(915), - [sym_raw_string] = ACTIONS(918), - [anon_sym_DOLLAR] = ACTIONS(921), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(924), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), - [anon_sym_BQUOTE] = ACTIONS(930), - [anon_sym_LT_LPAREN] = ACTIONS(933), - [anon_sym_GT_LPAREN] = ACTIONS(933), - [sym_word] = ACTIONS(936), - [sym_comment] = ACTIONS(52), - }, - [248] = { - [sym__concat] = ACTIONS(450), - [anon_sym_RBRACK_RBRACK] = ACTIONS(875), - [anon_sym_DQUOTE] = ACTIONS(450), - [sym_raw_string] = ACTIONS(450), - [anon_sym_DOLLAR] = ACTIONS(875), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(450), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(450), - [anon_sym_BQUOTE] = ACTIONS(450), - [anon_sym_LT_LPAREN] = ACTIONS(450), - [anon_sym_GT_LPAREN] = ACTIONS(450), - [sym_word] = ACTIONS(452), - [sym_comment] = ACTIONS(52), - }, - [249] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(298), - [anon_sym_DQUOTE] = ACTIONS(939), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), - }, - [250] = { - [sym_string] = STATE(520), - [sym_simple_expansion] = STATE(520), - [sym_expansion] = STATE(520), - [sym_command_substitution] = STATE(520), - [sym_process_substitution] = STATE(520), - [anon_sym_DQUOTE] = ACTIONS(114), - [sym_raw_string] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(122), - [anon_sym_BQUOTE] = ACTIONS(124), - [anon_sym_LT_LPAREN] = ACTIONS(126), - [anon_sym_GT_LPAREN] = ACTIONS(126), - [sym_word] = ACTIONS(943), - [sym_comment] = ACTIONS(52), - }, - [251] = { - [aux_sym_concatenation_repeat1] = STATE(521), - [sym__concat] = ACTIONS(408), - [anon_sym_RBRACK_RBRACK] = ACTIONS(883), - [anon_sym_DQUOTE] = ACTIONS(474), - [sym_raw_string] = ACTIONS(474), - [anon_sym_DOLLAR] = ACTIONS(883), - [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), - }, - [252] = { - [sym__concat] = ACTIONS(322), - [anon_sym_RBRACK_RBRACK] = ACTIONS(324), - [anon_sym_DQUOTE] = ACTIONS(322), - [sym_raw_string] = ACTIONS(322), - [anon_sym_DOLLAR] = ACTIONS(324), - [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(478), - [sym_comment] = ACTIONS(52), - }, - [253] = { - [sym__concat] = ACTIONS(480), - [anon_sym_RBRACK_RBRACK] = ACTIONS(885), - [anon_sym_DQUOTE] = ACTIONS(480), - [sym_raw_string] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(885), - [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(482), - [sym_comment] = ACTIONS(52), - }, - [254] = { - [sym__concat] = ACTIONS(484), - [anon_sym_RBRACK_RBRACK] = ACTIONS(887), - [anon_sym_DQUOTE] = ACTIONS(484), - [sym_raw_string] = ACTIONS(484), - [anon_sym_DOLLAR] = ACTIONS(887), - [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(486), - [sym_comment] = ACTIONS(52), - }, - [255] = { - [sym_special_variable_name] = STATE(523), - [anon_sym_RBRACE] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(62), - [anon_sym_AT] = ACTIONS(62), - [anon_sym_COLON] = ACTIONS(324), - [anon_sym_COLON_QMARK] = ACTIONS(322), - [anon_sym_COLON_DASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(945), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), - }, - [256] = { - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(949), - [anon_sym_EQ] = ACTIONS(951), - [anon_sym_COLON] = ACTIONS(953), - [anon_sym_COLON_QMARK] = ACTIONS(951), - [anon_sym_COLON_DASH] = ACTIONS(951), - [anon_sym_PERCENT] = ACTIONS(951), - [anon_sym_SLASH] = ACTIONS(951), - [sym_comment] = ACTIONS(52), - }, - [257] = { - [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), - }, - [258] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(963), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), - }, - [259] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(963), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [260] = { - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_BQUOTE] = ACTIONS(963), - [sym_comment] = ACTIONS(52), - }, - [261] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(963), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [262] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(965), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), - }, - [263] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(965), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [264] = { - [sym_concatenation] = STATE(79), - [sym_string] = STATE(73), - [sym_simple_expansion] = STATE(73), - [sym_expansion] = STATE(73), - [sym_command_substitution] = STATE(73), - [sym_process_substitution] = STATE(73), - [aux_sym_for_statement_repeat1] = STATE(264), - [anon_sym_RBRACK_RBRACK] = ACTIONS(913), - [anon_sym_DQUOTE] = ACTIONS(967), - [sym_raw_string] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(976), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_BQUOTE] = ACTIONS(982), - [anon_sym_LT_LPAREN] = ACTIONS(985), - [anon_sym_GT_LPAREN] = ACTIONS(985), - [sym_word] = ACTIONS(988), - [sym_comment] = ACTIONS(52), - }, - [265] = { - [sym_concatenation] = STATE(532), - [sym_string] = STATE(535), - [sym_array] = STATE(532), - [sym_simple_expansion] = STATE(535), - [sym_expansion] = STATE(535), - [sym_command_substitution] = STATE(535), - [sym_process_substitution] = STATE(535), - [sym__empty_value] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(993), - [anon_sym_DQUOTE] = ACTIONS(995), - [sym_raw_string] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1001), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1003), - [anon_sym_BQUOTE] = ACTIONS(1005), - [anon_sym_LT_LPAREN] = ACTIONS(1007), - [anon_sym_GT_LPAREN] = ACTIONS(1007), - [sym_word] = ACTIONS(1009), - [sym_comment] = ACTIONS(52), - }, - [266] = { - [sym_variable_name] = ACTIONS(318), - [anon_sym_PIPE] = ACTIONS(320), - [anon_sym_RPAREN] = ACTIONS(320), - [anon_sym_SEMI_SEMI] = ACTIONS(320), - [anon_sym_PIPE_AMP] = ACTIONS(320), - [anon_sym_AMP_AMP] = ACTIONS(320), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(320), - [anon_sym_SEMI] = ACTIONS(320), - [anon_sym_LF] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(320), - }, - [267] = { - [sym_variable_name] = ACTIONS(1011), - [anon_sym_PIPE] = ACTIONS(1013), - [anon_sym_RPAREN] = ACTIONS(1013), - [anon_sym_SEMI_SEMI] = ACTIONS(1013), - [anon_sym_PIPE_AMP] = ACTIONS(1013), - [anon_sym_AMP_AMP] = ACTIONS(1013), - [anon_sym_PIPE_PIPE] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym_LF] = ACTIONS(1013), - [anon_sym_AMP] = ACTIONS(1013), - }, - [268] = { - [aux_sym_declaration_command_repeat1] = STATE(268), - [sym_variable_name] = ACTIONS(1015), - [anon_sym_PIPE] = ACTIONS(1017), - [anon_sym_SEMI_SEMI] = ACTIONS(1017), - [anon_sym_PIPE_AMP] = ACTIONS(1017), - [anon_sym_AMP_AMP] = ACTIONS(1017), - [anon_sym_PIPE_PIPE] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1019), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1017), - [anon_sym_SEMI] = ACTIONS(1017), - [anon_sym_LF] = ACTIONS(1017), - [anon_sym_AMP] = ACTIONS(1017), - }, - [269] = { - [sym_variable_assignment] = STATE(83), - [sym_subscript] = STATE(84), - [aux_sym_declaration_command_repeat2] = STATE(270), - [sym_variable_name] = ACTIONS(130), - [anon_sym_PIPE] = ACTIONS(1022), - [anon_sym_SEMI_SEMI] = ACTIONS(1022), - [anon_sym_PIPE_AMP] = ACTIONS(1022), - [anon_sym_AMP_AMP] = ACTIONS(1022), - [anon_sym_PIPE_PIPE] = ACTIONS(1022), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(136), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_LF] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1022), - }, - [270] = { - [sym_variable_assignment] = STATE(83), - [sym_subscript] = STATE(84), - [aux_sym_declaration_command_repeat2] = STATE(270), - [sym_variable_name] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1027), - [anon_sym_SEMI_SEMI] = ACTIONS(1027), - [anon_sym_PIPE_AMP] = ACTIONS(1027), - [anon_sym_AMP_AMP] = ACTIONS(1027), - [anon_sym_PIPE_PIPE] = ACTIONS(1027), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LF] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(1027), - }, - [271] = { - [sym_file_descriptor] = ACTIONS(450), - [sym__concat] = ACTIONS(450), - [sym_variable_name] = ACTIONS(450), - [anon_sym_LT] = ACTIONS(875), - [anon_sym_GT] = ACTIONS(875), - [anon_sym_GT_GT] = ACTIONS(450), - [anon_sym_AMP_GT] = ACTIONS(875), - [anon_sym_AMP_GT_GT] = ACTIONS(450), - [anon_sym_LT_AMP] = ACTIONS(450), - [anon_sym_GT_AMP] = ACTIONS(450), - [anon_sym_DQUOTE] = ACTIONS(450), - [sym_raw_string] = ACTIONS(450), - [anon_sym_DOLLAR] = ACTIONS(875), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(450), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(450), - [anon_sym_BQUOTE] = ACTIONS(450), - [anon_sym_LT_LPAREN] = ACTIONS(450), - [anon_sym_GT_LPAREN] = ACTIONS(450), - [sym_word] = ACTIONS(875), - [sym_comment] = ACTIONS(52), - }, - [272] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(298), - [anon_sym_DQUOTE] = ACTIONS(1032), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), - }, - [273] = { - [sym_string] = STATE(542), - [sym_simple_expansion] = STATE(542), - [sym_expansion] = STATE(542), - [sym_command_substitution] = STATE(542), - [sym_process_substitution] = STATE(542), - [anon_sym_DQUOTE] = ACTIONS(138), - [sym_raw_string] = ACTIONS(1034), - [anon_sym_DOLLAR] = ACTIONS(142), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(144), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(146), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_LT_LPAREN] = ACTIONS(150), - [anon_sym_GT_LPAREN] = ACTIONS(150), - [sym_word] = ACTIONS(1036), - [sym_comment] = ACTIONS(52), - }, - [274] = { - [aux_sym_concatenation_repeat1] = STATE(543), - [sym_file_descriptor] = ACTIONS(474), - [sym__concat] = ACTIONS(436), - [sym_variable_name] = ACTIONS(474), - [anon_sym_LT] = ACTIONS(883), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_GT_GT] = ACTIONS(474), - [anon_sym_AMP_GT] = ACTIONS(883), - [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(883), - [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(883), - [sym_comment] = ACTIONS(52), - }, - [275] = { - [sym_file_descriptor] = ACTIONS(322), - [sym__concat] = ACTIONS(322), - [sym_variable_name] = ACTIONS(322), - [anon_sym_LT] = ACTIONS(324), - [anon_sym_GT] = ACTIONS(324), - [anon_sym_GT_GT] = ACTIONS(322), - [anon_sym_AMP_GT] = ACTIONS(324), - [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(324), - [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(324), - [sym_comment] = ACTIONS(52), - }, - [276] = { - [sym_file_descriptor] = ACTIONS(480), - [sym__concat] = ACTIONS(480), - [sym_variable_name] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_GT_GT] = ACTIONS(480), - [anon_sym_AMP_GT] = ACTIONS(885), - [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(885), - [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(885), - [sym_comment] = ACTIONS(52), - }, - [277] = { - [sym_file_descriptor] = ACTIONS(484), - [sym__concat] = ACTIONS(484), - [sym_variable_name] = ACTIONS(484), - [anon_sym_LT] = ACTIONS(887), - [anon_sym_GT] = ACTIONS(887), - [anon_sym_GT_GT] = ACTIONS(484), - [anon_sym_AMP_GT] = ACTIONS(887), - [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(887), - [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(887), - [sym_comment] = ACTIONS(52), - }, - [278] = { - [sym_special_variable_name] = STATE(545), - [anon_sym_RBRACE] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(62), - [anon_sym_AT] = ACTIONS(62), - [anon_sym_COLON] = ACTIONS(324), - [anon_sym_COLON_QMARK] = ACTIONS(322), - [anon_sym_COLON_DASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1038), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), - }, - [279] = { - [anon_sym_RBRACE] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(1042), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_COLON] = ACTIONS(1046), - [anon_sym_COLON_QMARK] = ACTIONS(1044), - [anon_sym_COLON_DASH] = ACTIONS(1044), - [anon_sym_PERCENT] = ACTIONS(1044), - [anon_sym_SLASH] = ACTIONS(1044), - [sym_comment] = ACTIONS(52), - }, - [280] = { - [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), - }, - [281] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(1056), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), - }, - [282] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(1056), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [283] = { - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_BQUOTE] = ACTIONS(1056), - [sym_comment] = ACTIONS(52), - }, - [284] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(1056), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [285] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(1058), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), - }, - [286] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(1058), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [287] = { - [anon_sym_DQUOTE] = ACTIONS(478), - [sym__string_content] = ACTIONS(324), - [anon_sym_DOLLAR] = ACTIONS(478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(478), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(478), - [anon_sym_BQUOTE] = ACTIONS(478), - [sym_comment] = ACTIONS(64), - }, - [288] = { - [anon_sym_DQUOTE] = ACTIONS(482), - [sym__string_content] = ACTIONS(885), - [anon_sym_DOLLAR] = ACTIONS(482), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(482), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(482), - [anon_sym_BQUOTE] = ACTIONS(482), - [sym_comment] = ACTIONS(64), - }, - [289] = { - [anon_sym_DQUOTE] = ACTIONS(486), - [sym__string_content] = ACTIONS(887), - [anon_sym_DOLLAR] = ACTIONS(486), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(486), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(486), - [anon_sym_BQUOTE] = ACTIONS(486), - [sym_comment] = ACTIONS(64), - }, - [290] = { - [sym_special_variable_name] = STATE(555), - [anon_sym_RBRACE] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(62), - [anon_sym_AT] = ACTIONS(62), - [anon_sym_COLON] = ACTIONS(324), - [anon_sym_COLON_QMARK] = ACTIONS(322), - [anon_sym_COLON_DASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), - }, - [291] = { - [anon_sym_RBRACE] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_EQ] = ACTIONS(1066), - [anon_sym_COLON] = ACTIONS(1068), - [anon_sym_COLON_QMARK] = ACTIONS(1066), - [anon_sym_COLON_DASH] = ACTIONS(1066), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_SLASH] = ACTIONS(1066), - [sym_comment] = ACTIONS(52), - }, - [292] = { - [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), - }, - [293] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), - }, - [294] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [295] = { - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_BQUOTE] = ACTIONS(1078), - [sym_comment] = ACTIONS(52), - }, - [296] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(1078), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [297] = { - [sym_file_descriptor] = ACTIONS(1080), - [sym__concat] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1082), - [anon_sym_RPAREN] = ACTIONS(1082), - [anon_sym_SEMI_SEMI] = ACTIONS(1082), - [anon_sym_PIPE_AMP] = ACTIONS(1082), - [anon_sym_AMP_AMP] = ACTIONS(1082), - [anon_sym_PIPE_PIPE] = ACTIONS(1082), - [anon_sym_LT] = ACTIONS(1082), - [anon_sym_GT] = ACTIONS(1082), - [anon_sym_GT_GT] = ACTIONS(1082), - [anon_sym_AMP_GT] = ACTIONS(1082), - [anon_sym_AMP_GT_GT] = ACTIONS(1082), - [anon_sym_LT_AMP] = ACTIONS(1082), - [anon_sym_GT_AMP] = ACTIONS(1082), - [anon_sym_LT_LT] = ACTIONS(1082), - [anon_sym_LT_LT_DASH] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(1082), - [anon_sym_DOLLAR] = ACTIONS(1082), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1082), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1082), - [anon_sym_BQUOTE] = ACTIONS(1082), - [anon_sym_LT_LPAREN] = ACTIONS(1082), - [anon_sym_GT_LPAREN] = ACTIONS(1082), - [sym_word] = ACTIONS(1082), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_LF] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - }, - [298] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(298), - [anon_sym_DQUOTE] = ACTIONS(1084), - [sym__string_content] = ACTIONS(1086), - [anon_sym_DOLLAR] = ACTIONS(1089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1092), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1095), - [anon_sym_BQUOTE] = ACTIONS(1098), - [sym_comment] = ACTIONS(64), - }, - [299] = { - [sym_file_descriptor] = ACTIONS(1101), - [sym__concat] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1103), - [anon_sym_SEMI_SEMI] = ACTIONS(1103), - [anon_sym_PIPE_AMP] = ACTIONS(1103), - [anon_sym_AMP_AMP] = ACTIONS(1103), - [anon_sym_PIPE_PIPE] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1103), - [anon_sym_GT] = ACTIONS(1103), - [anon_sym_GT_GT] = ACTIONS(1103), - [anon_sym_AMP_GT] = ACTIONS(1103), - [anon_sym_AMP_GT_GT] = ACTIONS(1103), - [anon_sym_LT_AMP] = ACTIONS(1103), - [anon_sym_GT_AMP] = ACTIONS(1103), - [anon_sym_LT_LT] = ACTIONS(1103), - [anon_sym_LT_LT_DASH] = ACTIONS(1103), - [anon_sym_DQUOTE] = ACTIONS(1103), - [sym_raw_string] = ACTIONS(1103), - [anon_sym_DOLLAR] = ACTIONS(1103), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1103), - [anon_sym_BQUOTE] = ACTIONS(1103), - [anon_sym_LT_LPAREN] = ACTIONS(1103), - [anon_sym_GT_LPAREN] = ACTIONS(1103), - [sym_word] = ACTIONS(1103), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_LF] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1103), - }, - [300] = { - [aux_sym_concatenation_repeat1] = STATE(300), - [sym_file_descriptor] = ACTIONS(1101), - [sym__concat] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_SEMI_SEMI] = ACTIONS(1103), - [anon_sym_PIPE_AMP] = ACTIONS(1103), - [anon_sym_AMP_AMP] = ACTIONS(1103), - [anon_sym_PIPE_PIPE] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1103), - [anon_sym_GT] = ACTIONS(1103), - [anon_sym_GT_GT] = ACTIONS(1103), - [anon_sym_AMP_GT] = ACTIONS(1103), - [anon_sym_AMP_GT_GT] = ACTIONS(1103), - [anon_sym_LT_AMP] = ACTIONS(1103), - [anon_sym_GT_AMP] = ACTIONS(1103), - [anon_sym_LT_LT] = ACTIONS(1103), - [anon_sym_LT_LT_DASH] = ACTIONS(1103), - [anon_sym_DQUOTE] = ACTIONS(1103), - [sym_raw_string] = ACTIONS(1103), - [anon_sym_DOLLAR] = ACTIONS(1103), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1103), - [anon_sym_BQUOTE] = ACTIONS(1103), - [anon_sym_LT_LPAREN] = ACTIONS(1103), - [anon_sym_GT_LPAREN] = ACTIONS(1103), - [sym_word] = ACTIONS(1103), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_LF] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1103), - }, - [301] = { - [anon_sym_RBRACE] = ACTIONS(1108), - [anon_sym_LBRACK] = ACTIONS(1110), - [sym_comment] = ACTIONS(52), - }, - [302] = { - [anon_sym_RBRACE] = ACTIONS(1112), - [anon_sym_LBRACK] = ACTIONS(1114), - [sym_comment] = ACTIONS(52), - }, - [303] = { - [sym_file_descriptor] = ACTIONS(1116), - [sym__concat] = ACTIONS(1116), - [anon_sym_PIPE] = ACTIONS(1118), - [anon_sym_RPAREN] = ACTIONS(1118), - [anon_sym_SEMI_SEMI] = ACTIONS(1118), - [anon_sym_PIPE_AMP] = ACTIONS(1118), - [anon_sym_AMP_AMP] = ACTIONS(1118), - [anon_sym_PIPE_PIPE] = ACTIONS(1118), - [anon_sym_LT] = ACTIONS(1118), - [anon_sym_GT] = ACTIONS(1118), - [anon_sym_GT_GT] = ACTIONS(1118), - [anon_sym_AMP_GT] = ACTIONS(1118), - [anon_sym_AMP_GT_GT] = ACTIONS(1118), - [anon_sym_LT_AMP] = ACTIONS(1118), - [anon_sym_GT_AMP] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1118), - [anon_sym_LT_LT_DASH] = ACTIONS(1118), - [anon_sym_DQUOTE] = ACTIONS(1118), - [sym_raw_string] = ACTIONS(1118), - [anon_sym_DOLLAR] = ACTIONS(1118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1118), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1118), - [anon_sym_BQUOTE] = ACTIONS(1118), - [anon_sym_LT_LPAREN] = ACTIONS(1118), - [anon_sym_GT_LPAREN] = ACTIONS(1118), - [sym_word] = ACTIONS(1118), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_LF] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - }, - [304] = { - [anon_sym_AT] = ACTIONS(1120), - [sym_comment] = ACTIONS(52), - }, - [305] = { - [sym_concatenation] = STATE(570), - [sym_string] = STATE(569), - [sym_simple_expansion] = STATE(569), - [sym_expansion] = STATE(569), - [sym_command_substitution] = STATE(569), - [sym_process_substitution] = STATE(569), - [anon_sym_RBRACE] = ACTIONS(1122), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(1124), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(1126), - [sym_comment] = ACTIONS(52), - }, - [306] = { - [sym_file_descriptor] = ACTIONS(1128), - [sym__concat] = ACTIONS(1128), - [anon_sym_PIPE] = ACTIONS(1130), - [anon_sym_RPAREN] = ACTIONS(1130), - [anon_sym_SEMI_SEMI] = ACTIONS(1130), - [anon_sym_PIPE_AMP] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1130), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_LT] = ACTIONS(1130), - [anon_sym_GT] = ACTIONS(1130), - [anon_sym_GT_GT] = ACTIONS(1130), - [anon_sym_AMP_GT] = ACTIONS(1130), - [anon_sym_AMP_GT_GT] = ACTIONS(1130), - [anon_sym_LT_AMP] = ACTIONS(1130), - [anon_sym_GT_AMP] = ACTIONS(1130), - [anon_sym_LT_LT] = ACTIONS(1130), - [anon_sym_LT_LT_DASH] = ACTIONS(1130), - [anon_sym_DQUOTE] = ACTIONS(1130), - [sym_raw_string] = ACTIONS(1130), - [anon_sym_DOLLAR] = ACTIONS(1130), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1130), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1130), - [anon_sym_BQUOTE] = ACTIONS(1130), - [anon_sym_LT_LPAREN] = ACTIONS(1130), - [anon_sym_GT_LPAREN] = ACTIONS(1130), - [sym_word] = ACTIONS(1130), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1130), - [anon_sym_LF] = ACTIONS(1130), - [anon_sym_AMP] = ACTIONS(1130), - }, - [307] = { - [anon_sym_AT] = ACTIONS(1132), - [sym_comment] = ACTIONS(52), - }, - [308] = { - [sym_concatenation] = STATE(573), - [sym_string] = STATE(572), - [sym_simple_expansion] = STATE(572), - [sym_expansion] = STATE(572), - [sym_command_substitution] = STATE(572), - [sym_process_substitution] = STATE(572), - [anon_sym_RBRACE] = ACTIONS(1112), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(1134), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(1136), - [sym_comment] = ACTIONS(52), - }, - [309] = { - [sym_concatenation] = STATE(574), - [sym_string] = STATE(577), - [sym_array] = STATE(574), - [sym_simple_expansion] = STATE(577), - [sym_expansion] = STATE(577), - [sym_command_substitution] = STATE(577), - [sym_process_substitution] = STATE(577), - [sym__empty_value] = ACTIONS(1138), - [anon_sym_LPAREN] = ACTIONS(1140), - [anon_sym_DQUOTE] = ACTIONS(1142), - [sym_raw_string] = ACTIONS(1144), - [anon_sym_DOLLAR] = ACTIONS(1146), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1148), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1150), - [anon_sym_BQUOTE] = ACTIONS(1152), - [anon_sym_LT_LPAREN] = ACTIONS(1154), - [anon_sym_GT_LPAREN] = ACTIONS(1154), - [sym_word] = ACTIONS(1156), - [sym_comment] = ACTIONS(52), - }, - [310] = { - [sym_file_descriptor] = ACTIONS(318), - [sym_variable_name] = ACTIONS(318), - [anon_sym_PIPE] = ACTIONS(1158), - [anon_sym_RPAREN] = ACTIONS(318), - [anon_sym_PIPE_AMP] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(1158), - [anon_sym_LT] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_GT_GT] = ACTIONS(318), - [anon_sym_AMP_GT] = ACTIONS(1158), - [anon_sym_AMP_GT_GT] = ACTIONS(318), - [anon_sym_LT_AMP] = ACTIONS(318), - [anon_sym_GT_AMP] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(318), - [sym_raw_string] = ACTIONS(318), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(318), - [anon_sym_LT_LPAREN] = ACTIONS(318), - [anon_sym_GT_LPAREN] = ACTIONS(318), - [sym_word] = ACTIONS(320), - [sym_comment] = ACTIONS(52), - }, - [311] = { - [anon_sym_in] = ACTIONS(1160), - [sym_comment] = ACTIONS(52), - }, - [312] = { - [anon_sym_in] = ACTIONS(1162), - [sym_comment] = ACTIONS(52), - }, - [313] = { - [sym_do_group] = STATE(586), - [anon_sym_do] = ACTIONS(1164), - [sym_comment] = ACTIONS(52), - }, - [314] = { - [anon_sym_then] = ACTIONS(1166), - [sym_comment] = ACTIONS(52), - }, - [315] = { - [aux_sym_concatenation_repeat1] = STATE(193), - [sym__concat] = ACTIONS(338), - [anon_sym_in] = ACTIONS(1168), - [anon_sym_SEMI_SEMI] = ACTIONS(1170), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1170), - [anon_sym_LF] = ACTIONS(1170), - [anon_sym_AMP] = ACTIONS(1170), - }, - [316] = { - [anon_sym_in] = ACTIONS(1168), - [anon_sym_SEMI_SEMI] = ACTIONS(1170), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1170), - [anon_sym_LF] = ACTIONS(1170), - [anon_sym_AMP] = ACTIONS(1170), - }, - [317] = { - [sym_compound_statement] = STATE(592), - [anon_sym_LPAREN] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1174), - [sym_comment] = ACTIONS(52), - }, - [318] = { - [anon_sym_PIPE] = ACTIONS(366), - [anon_sym_RPAREN] = ACTIONS(1176), - [anon_sym_SEMI_SEMI] = ACTIONS(1178), - [anon_sym_PIPE_AMP] = ACTIONS(366), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1178), - [anon_sym_LF] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(1178), - }, - [319] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(366), - [anon_sym_RPAREN] = ACTIONS(1176), - [anon_sym_SEMI_SEMI] = ACTIONS(1178), - [anon_sym_PIPE_AMP] = ACTIONS(366), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_AMP_GT] = ACTIONS(268), - [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(268), - [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(268), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1178), - [anon_sym_LF] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(1178), - }, - [320] = { - [sym__terminated_statement] = STATE(23), - [sym_for_statement] = STATE(595), - [sym_while_statement] = STATE(595), - [sym_if_statement] = STATE(595), - [sym_case_statement] = STATE(595), - [sym_function_definition] = STATE(595), - [sym_subshell] = STATE(595), - [sym_pipeline] = STATE(595), - [sym_list] = STATE(595), - [sym_bracket_command] = STATE(595), - [sym_command] = STATE(595), - [sym_command_name] = STATE(58), - [sym_variable_assignment] = STATE(596), - [sym_declaration_command] = STATE(595), - [sym_subscript] = STATE(60), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(29), - [sym_string] = STATE(55), - [sym_simple_expansion] = STATE(55), - [sym_expansion] = STATE(55), - [sym_command_substitution] = STATE(55), - [sym_process_substitution] = STATE(55), - [aux_sym_program_repeat1] = STATE(228), - [aux_sym_command_repeat1] = STATE(62), - [sym_file_descriptor] = ACTIONS(8), - [sym_variable_name] = ACTIONS(88), - [anon_sym_for] = ACTIONS(14), - [anon_sym_while] = ACTIONS(16), - [anon_sym_if] = ACTIONS(18), - [anon_sym_case] = ACTIONS(20), - [anon_sym_function] = ACTIONS(90), - [anon_sym_LPAREN] = ACTIONS(24), - [anon_sym_LBRACK] = ACTIONS(26), - [anon_sym_LBRACK_LBRACK] = ACTIONS(28), - [anon_sym_declare] = ACTIONS(92), - [anon_sym_typeset] = ACTIONS(92), - [anon_sym_export] = ACTIONS(92), - [anon_sym_readonly] = ACTIONS(92), - [anon_sym_local] = ACTIONS(92), - [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(94), - [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(96), - [sym_comment] = ACTIONS(52), - }, - [321] = { - [sym_concatenation] = STATE(70), - [sym_string] = STATE(64), - [sym_simple_expansion] = STATE(64), - [sym_expansion] = STATE(64), - [sym_command_substitution] = STATE(64), - [sym_process_substitution] = STATE(64), - [aux_sym_for_statement_repeat1] = STATE(247), - [anon_sym_RBRACK] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(100), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(404), - [sym_comment] = ACTIONS(52), - }, - [322] = { - [sym_concatenation] = STATE(79), - [sym_string] = STATE(73), - [sym_simple_expansion] = STATE(73), - [sym_expansion] = STATE(73), - [sym_command_substitution] = STATE(73), - [sym_process_substitution] = STATE(73), - [aux_sym_for_statement_repeat1] = STATE(264), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(114), - [sym_raw_string] = ACTIONS(116), - [anon_sym_DOLLAR] = ACTIONS(118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(122), - [anon_sym_BQUOTE] = ACTIONS(124), - [anon_sym_LT_LPAREN] = ACTIONS(126), - [anon_sym_GT_LPAREN] = ACTIONS(126), - [sym_word] = ACTIONS(420), - [sym_comment] = ACTIONS(52), - }, - [323] = { - [sym__assignment] = STATE(599), - [anon_sym_LBRACK] = ACTIONS(58), - [anon_sym_EQ] = ACTIONS(1182), - [anon_sym_PLUS_EQ] = ACTIONS(1182), - [sym_comment] = ACTIONS(52), - }, - [324] = { - [sym_word] = ACTIONS(1184), - [sym_comment] = ACTIONS(52), - }, - [325] = { - [sym_variable_name] = ACTIONS(426), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_RPAREN] = ACTIONS(426), - [anon_sym_PIPE_AMP] = ACTIONS(426), - [anon_sym_AMP_AMP] = ACTIONS(426), - [anon_sym_PIPE_PIPE] = ACTIONS(426), - [anon_sym_BQUOTE] = ACTIONS(426), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(1186), - }, - [326] = { - [sym__assignment] = STATE(599), - [anon_sym_EQ] = ACTIONS(1182), - [anon_sym_PLUS_EQ] = ACTIONS(1182), - [sym_comment] = ACTIONS(52), - }, - [327] = { - [sym_variable_assignment] = STATE(325), - [sym_subscript] = STATE(326), - [aux_sym_declaration_command_repeat1] = STATE(601), - [aux_sym_declaration_command_repeat2] = STATE(602), - [sym_variable_name] = ACTIONS(516), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_RPAREN] = ACTIONS(1190), - [anon_sym_PIPE_AMP] = ACTIONS(1190), - [anon_sym_AMP_AMP] = ACTIONS(1190), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(522), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(524), - }, - [328] = { - [sym_variable_assignment] = STATE(325), - [sym_subscript] = STATE(326), - [aux_sym_declaration_command_repeat2] = STATE(603), - [sym_variable_name] = ACTIONS(516), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_RPAREN] = ACTIONS(1190), - [anon_sym_PIPE_AMP] = ACTIONS(1190), - [anon_sym_AMP_AMP] = ACTIONS(1190), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(524), - }, - [329] = { - [sym_file_descriptor] = ACTIONS(450), - [sym__concat] = ACTIONS(450), - [anon_sym_PIPE] = ACTIONS(875), - [anon_sym_RPAREN] = ACTIONS(450), - [anon_sym_PIPE_AMP] = ACTIONS(450), - [anon_sym_AMP_AMP] = ACTIONS(450), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(875), - [anon_sym_GT] = ACTIONS(875), - [anon_sym_GT_GT] = ACTIONS(450), - [anon_sym_AMP_GT] = ACTIONS(875), - [anon_sym_AMP_GT_GT] = ACTIONS(450), - [anon_sym_LT_AMP] = ACTIONS(450), - [anon_sym_GT_AMP] = ACTIONS(450), - [anon_sym_LT_LT] = ACTIONS(875), - [anon_sym_LT_LT_DASH] = ACTIONS(450), - [anon_sym_DQUOTE] = ACTIONS(450), - [sym_raw_string] = ACTIONS(450), - [anon_sym_DOLLAR] = ACTIONS(875), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(450), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(450), - [anon_sym_BQUOTE] = ACTIONS(450), - [anon_sym_LT_LPAREN] = ACTIONS(450), - [anon_sym_GT_LPAREN] = ACTIONS(450), - [sym_word] = ACTIONS(452), - [sym_comment] = ACTIONS(52), - }, - [330] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(298), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), - }, - [331] = { - [sym_string] = STATE(605), - [sym_simple_expansion] = STATE(605), - [sym_expansion] = STATE(605), - [sym_command_substitution] = STATE(605), - [sym_process_substitution] = STATE(605), - [anon_sym_DQUOTE] = ACTIONS(202), - [sym_raw_string] = ACTIONS(1194), - [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(1196), - [sym_comment] = ACTIONS(52), - }, - [332] = { - [aux_sym_concatenation_repeat1] = STATE(606), - [sym_file_descriptor] = ACTIONS(474), - [sym__concat] = ACTIONS(528), - [anon_sym_PIPE] = ACTIONS(883), - [anon_sym_RPAREN] = ACTIONS(474), - [anon_sym_PIPE_AMP] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(883), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_GT_GT] = ACTIONS(474), - [anon_sym_AMP_GT] = ACTIONS(883), - [anon_sym_AMP_GT_GT] = ACTIONS(474), - [anon_sym_LT_AMP] = ACTIONS(474), - [anon_sym_GT_AMP] = ACTIONS(474), - [anon_sym_LT_LT] = ACTIONS(883), - [anon_sym_LT_LT_DASH] = ACTIONS(474), - [anon_sym_DQUOTE] = ACTIONS(474), - [sym_raw_string] = ACTIONS(474), - [anon_sym_DOLLAR] = ACTIONS(883), - [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(322), - [sym__concat] = ACTIONS(322), - [anon_sym_PIPE] = ACTIONS(324), - [anon_sym_RPAREN] = ACTIONS(322), - [anon_sym_PIPE_AMP] = ACTIONS(322), - [anon_sym_AMP_AMP] = ACTIONS(322), - [anon_sym_PIPE_PIPE] = ACTIONS(324), - [anon_sym_LT] = ACTIONS(324), - [anon_sym_GT] = ACTIONS(324), - [anon_sym_GT_GT] = ACTIONS(322), - [anon_sym_AMP_GT] = ACTIONS(324), - [anon_sym_AMP_GT_GT] = ACTIONS(322), - [anon_sym_LT_AMP] = ACTIONS(322), - [anon_sym_GT_AMP] = ACTIONS(322), - [anon_sym_LT_LT] = ACTIONS(324), - [anon_sym_LT_LT_DASH] = ACTIONS(322), - [anon_sym_DQUOTE] = ACTIONS(322), - [sym_raw_string] = ACTIONS(322), - [anon_sym_DOLLAR] = ACTIONS(324), - [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(478), - [sym_comment] = ACTIONS(52), - }, - [334] = { - [sym_file_descriptor] = ACTIONS(480), - [sym__concat] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(480), - [anon_sym_PIPE_AMP] = ACTIONS(480), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_GT_GT] = ACTIONS(480), - [anon_sym_AMP_GT] = ACTIONS(885), - [anon_sym_AMP_GT_GT] = ACTIONS(480), - [anon_sym_LT_AMP] = ACTIONS(480), - [anon_sym_GT_AMP] = ACTIONS(480), - [anon_sym_LT_LT] = ACTIONS(885), - [anon_sym_LT_LT_DASH] = ACTIONS(480), - [anon_sym_DQUOTE] = ACTIONS(480), - [sym_raw_string] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(885), - [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(482), - [sym_comment] = ACTIONS(52), - }, - [335] = { - [sym_file_descriptor] = ACTIONS(484), - [sym__concat] = ACTIONS(484), - [anon_sym_PIPE] = ACTIONS(887), - [anon_sym_RPAREN] = ACTIONS(484), - [anon_sym_PIPE_AMP] = ACTIONS(484), - [anon_sym_AMP_AMP] = ACTIONS(484), - [anon_sym_PIPE_PIPE] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(887), - [anon_sym_GT] = ACTIONS(887), - [anon_sym_GT_GT] = ACTIONS(484), - [anon_sym_AMP_GT] = ACTIONS(887), - [anon_sym_AMP_GT_GT] = ACTIONS(484), - [anon_sym_LT_AMP] = ACTIONS(484), - [anon_sym_GT_AMP] = ACTIONS(484), - [anon_sym_LT_LT] = ACTIONS(887), - [anon_sym_LT_LT_DASH] = ACTIONS(484), - [anon_sym_DQUOTE] = ACTIONS(484), - [sym_raw_string] = ACTIONS(484), - [anon_sym_DOLLAR] = ACTIONS(887), - [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(486), - [sym_comment] = ACTIONS(52), - }, - [336] = { - [sym_special_variable_name] = STATE(608), - [anon_sym_RBRACE] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(62), - [anon_sym_AT] = ACTIONS(62), - [anon_sym_COLON] = ACTIONS(324), - [anon_sym_COLON_QMARK] = ACTIONS(322), - [anon_sym_COLON_DASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), - }, - [337] = { - [anon_sym_RBRACE] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1202), - [anon_sym_EQ] = ACTIONS(1204), - [anon_sym_COLON] = ACTIONS(1206), - [anon_sym_COLON_QMARK] = ACTIONS(1204), - [anon_sym_COLON_DASH] = ACTIONS(1204), - [anon_sym_PERCENT] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(1204), - [sym_comment] = ACTIONS(52), - }, - [338] = { - [anon_sym_RBRACE] = ACTIONS(1208), - [anon_sym_LBRACK] = ACTIONS(1210), - [anon_sym_EQ] = ACTIONS(1212), - [anon_sym_COLON] = ACTIONS(1214), - [anon_sym_COLON_QMARK] = ACTIONS(1212), - [anon_sym_COLON_DASH] = ACTIONS(1212), - [anon_sym_PERCENT] = ACTIONS(1212), - [anon_sym_SLASH] = ACTIONS(1212), - [sym_comment] = ACTIONS(52), - }, - [339] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(1216), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), - }, - [340] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(1216), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [341] = { - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_BQUOTE] = ACTIONS(1216), - [sym_comment] = ACTIONS(52), - }, - [342] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(1216), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [343] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(1218), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), - }, - [344] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(1218), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [345] = { - [anon_sym_RPAREN] = ACTIONS(1220), - [sym_comment] = ACTIONS(52), - }, - [346] = { - [sym_for_statement] = STATE(618), - [sym_while_statement] = STATE(618), - [sym_if_statement] = STATE(618), - [sym_case_statement] = STATE(618), - [sym_function_definition] = STATE(618), - [sym_subshell] = STATE(618), - [sym_pipeline] = STATE(618), - [sym_list] = STATE(618), - [sym_bracket_command] = STATE(618), - [sym_command] = STATE(618), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(619), - [sym_declaration_command] = STATE(618), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), - }, - [347] = { - [sym_file_descriptor] = ACTIONS(1222), - [sym__concat] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1224), - [anon_sym_SEMI_SEMI] = ACTIONS(1224), - [anon_sym_PIPE_AMP] = ACTIONS(1224), - [anon_sym_AMP_AMP] = ACTIONS(1224), - [anon_sym_PIPE_PIPE] = ACTIONS(1224), - [anon_sym_LT] = ACTIONS(1224), - [anon_sym_GT] = ACTIONS(1224), - [anon_sym_GT_GT] = ACTIONS(1224), - [anon_sym_AMP_GT] = ACTIONS(1224), - [anon_sym_AMP_GT_GT] = ACTIONS(1224), - [anon_sym_LT_AMP] = ACTIONS(1224), - [anon_sym_GT_AMP] = ACTIONS(1224), - [anon_sym_LT_LT] = ACTIONS(1224), - [anon_sym_LT_LT_DASH] = ACTIONS(1224), - [anon_sym_DQUOTE] = ACTIONS(1224), - [sym_raw_string] = ACTIONS(1224), - [anon_sym_DOLLAR] = ACTIONS(1224), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1224), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1224), - [anon_sym_BQUOTE] = ACTIONS(1224), - [anon_sym_LT_LPAREN] = ACTIONS(1224), - [anon_sym_GT_LPAREN] = ACTIONS(1224), - [sym_word] = ACTIONS(1224), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym_LF] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - }, - [348] = { - [sym_for_statement] = STATE(620), - [sym_while_statement] = STATE(620), - [sym_if_statement] = STATE(620), - [sym_case_statement] = STATE(620), - [sym_function_definition] = STATE(620), - [sym_subshell] = STATE(620), - [sym_pipeline] = STATE(620), - [sym_list] = STATE(620), - [sym_bracket_command] = STATE(620), - [sym_command] = STATE(620), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(621), - [sym_declaration_command] = STATE(620), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), - }, - [349] = { - [anon_sym_LT] = ACTIONS(1226), - [anon_sym_GT] = ACTIONS(1226), - [anon_sym_GT_GT] = ACTIONS(1228), - [anon_sym_AMP_GT] = ACTIONS(1226), - [anon_sym_AMP_GT_GT] = ACTIONS(1228), - [anon_sym_LT_AMP] = ACTIONS(1228), - [anon_sym_GT_AMP] = ACTIONS(1228), - [sym_comment] = ACTIONS(52), - }, - [350] = { - [sym_concatenation] = STATE(630), - [sym_string] = STATE(624), - [sym_simple_expansion] = STATE(624), - [sym_expansion] = STATE(624), - [sym_command_substitution] = STATE(624), - [sym_process_substitution] = STATE(624), - [anon_sym_DQUOTE] = ACTIONS(1230), - [sym_raw_string] = ACTIONS(1232), - [anon_sym_DOLLAR] = ACTIONS(1234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1238), - [anon_sym_BQUOTE] = ACTIONS(1240), - [anon_sym_LT_LPAREN] = ACTIONS(1242), - [anon_sym_GT_LPAREN] = ACTIONS(1242), - [sym_word] = ACTIONS(1244), - [sym_comment] = ACTIONS(52), - }, - [351] = { - [sym_heredoc] = STATE(633), - [sym__simple_heredoc] = ACTIONS(1246), - [sym__heredoc_beginning] = ACTIONS(1248), - [sym_comment] = ACTIONS(52), - }, - [352] = { - [aux_sym_concatenation_repeat1] = STATE(332), - [sym_file_descriptor] = ACTIONS(388), - [sym__concat] = ACTIONS(528), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_RPAREN] = ACTIONS(388), - [anon_sym_PIPE_AMP] = ACTIONS(388), - [anon_sym_AMP_AMP] = ACTIONS(388), - [anon_sym_PIPE_PIPE] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(388), - [anon_sym_AMP_GT] = ACTIONS(386), - [anon_sym_AMP_GT_GT] = ACTIONS(388), - [anon_sym_LT_AMP] = ACTIONS(388), - [anon_sym_GT_AMP] = ACTIONS(388), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_LT_LT_DASH] = ACTIONS(388), - [anon_sym_DQUOTE] = ACTIONS(388), - [sym_raw_string] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(386), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(388), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(388), - [anon_sym_BQUOTE] = ACTIONS(388), - [anon_sym_LT_LPAREN] = ACTIONS(388), - [anon_sym_GT_LPAREN] = ACTIONS(388), - [sym_word] = ACTIONS(390), - [sym_comment] = ACTIONS(52), - }, - [353] = { - [sym_file_descriptor] = ACTIONS(636), - [anon_sym_PIPE] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(1250), - [anon_sym_GT] = ACTIONS(1250), - [anon_sym_GT_GT] = ACTIONS(636), - [anon_sym_AMP_GT] = ACTIONS(1250), - [anon_sym_AMP_GT_GT] = ACTIONS(636), - [anon_sym_LT_AMP] = ACTIONS(636), - [anon_sym_GT_AMP] = ACTIONS(636), - [anon_sym_LT_LT] = ACTIONS(1250), - [anon_sym_LT_LT_DASH] = ACTIONS(636), - [anon_sym_BQUOTE] = ACTIONS(636), - [sym_comment] = ACTIONS(52), - }, - [354] = { - [sym_file_descriptor] = ACTIONS(388), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_RPAREN] = ACTIONS(388), - [anon_sym_PIPE_AMP] = ACTIONS(388), - [anon_sym_AMP_AMP] = ACTIONS(388), - [anon_sym_PIPE_PIPE] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(388), - [anon_sym_AMP_GT] = ACTIONS(386), - [anon_sym_AMP_GT_GT] = ACTIONS(388), - [anon_sym_LT_AMP] = ACTIONS(388), - [anon_sym_GT_AMP] = ACTIONS(388), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_LT_LT_DASH] = ACTIONS(388), - [anon_sym_DQUOTE] = ACTIONS(388), - [sym_raw_string] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(386), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(388), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(388), - [anon_sym_BQUOTE] = ACTIONS(388), - [anon_sym_LT_LPAREN] = ACTIONS(388), - [anon_sym_GT_LPAREN] = ACTIONS(388), - [sym_word] = ACTIONS(390), - [sym_comment] = ACTIONS(52), - }, - [355] = { - [sym_file_redirect] = STATE(353), - [sym_heredoc_redirect] = STATE(353), - [sym_concatenation] = STATE(354), - [sym_string] = STATE(352), - [sym_simple_expansion] = STATE(352), - [sym_expansion] = STATE(352), - [sym_command_substitution] = STATE(352), - [sym_process_substitution] = STATE(352), - [aux_sym_for_statement_repeat1] = STATE(634), - [aux_sym_command_repeat2] = STATE(635), - [sym_file_descriptor] = ACTIONS(552), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_RPAREN] = ACTIONS(1254), - [anon_sym_PIPE_AMP] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1254), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(558), - [anon_sym_GT] = ACTIONS(558), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(558), - [anon_sym_AMP_GT_GT] = ACTIONS(560), - [anon_sym_LT_AMP] = ACTIONS(560), - [anon_sym_GT_AMP] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_LT_LT_DASH] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(202), - [sym_raw_string] = ACTIONS(566), - [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(568), - [sym_comment] = ACTIONS(52), - }, - [356] = { - [sym_file_redirect] = STATE(353), - [sym_heredoc_redirect] = STATE(353), - [aux_sym_command_repeat2] = STATE(636), - [sym_file_descriptor] = ACTIONS(552), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_RPAREN] = ACTIONS(1254), - [anon_sym_PIPE_AMP] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1254), - [anon_sym_PIPE_PIPE] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(558), - [anon_sym_GT] = ACTIONS(558), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(558), - [anon_sym_AMP_GT_GT] = ACTIONS(560), - [anon_sym_LT_AMP] = ACTIONS(560), - [anon_sym_GT_AMP] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_LT_LT_DASH] = ACTIONS(564), - [sym_comment] = ACTIONS(52), - }, - [357] = { - [sym_file_redirect] = STATE(353), - [sym_heredoc_redirect] = STATE(353), - [sym_concatenation] = STATE(354), - [sym_string] = STATE(352), - [sym_simple_expansion] = STATE(352), - [sym_expansion] = STATE(352), - [sym_command_substitution] = STATE(352), - [sym_process_substitution] = STATE(352), - [aux_sym_for_statement_repeat1] = STATE(637), - [aux_sym_command_repeat2] = STATE(635), - [sym_file_descriptor] = ACTIONS(552), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_RPAREN] = ACTIONS(1254), - [anon_sym_PIPE_AMP] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1254), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(558), - [anon_sym_GT] = ACTIONS(558), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(558), - [anon_sym_AMP_GT_GT] = ACTIONS(560), - [anon_sym_LT_AMP] = ACTIONS(560), - [anon_sym_GT_AMP] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_LT_LT_DASH] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(202), - [sym_raw_string] = ACTIONS(566), - [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(568), - [sym_comment] = ACTIONS(52), - }, - [358] = { - [sym_concatenation] = STATE(574), - [sym_string] = STATE(638), - [sym_array] = STATE(574), - [sym_simple_expansion] = STATE(638), - [sym_expansion] = STATE(638), - [sym_command_substitution] = STATE(638), - [sym_process_substitution] = STATE(638), - [sym__empty_value] = ACTIONS(1138), - [anon_sym_LPAREN] = ACTIONS(1140), - [anon_sym_DQUOTE] = ACTIONS(1142), - [sym_raw_string] = ACTIONS(1256), - [anon_sym_DOLLAR] = ACTIONS(1146), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1148), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1150), - [anon_sym_BQUOTE] = ACTIONS(1152), - [anon_sym_LT_LPAREN] = ACTIONS(1154), - [anon_sym_GT_LPAREN] = ACTIONS(1154), - [sym_word] = ACTIONS(1258), - [sym_comment] = ACTIONS(52), - }, - [359] = { - [sym_compound_statement] = STATE(640), - [anon_sym_LPAREN] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1174), - [sym_comment] = ACTIONS(52), - }, - [360] = { - [sym__assignment] = STATE(599), - [anon_sym_LBRACK] = ACTIONS(58), - [anon_sym_EQ] = ACTIONS(1262), - [anon_sym_PLUS_EQ] = ACTIONS(1262), - [sym_comment] = ACTIONS(52), - }, - [361] = { - [sym__assignment] = STATE(599), - [anon_sym_EQ] = ACTIONS(1262), - [anon_sym_PLUS_EQ] = ACTIONS(1262), - [sym_comment] = ACTIONS(52), - }, - [362] = { - [sym_variable_assignment] = STATE(325), - [sym_subscript] = STATE(361), - [aux_sym_declaration_command_repeat1] = STATE(642), - [aux_sym_declaration_command_repeat2] = STATE(643), - [sym_variable_name] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_PIPE_AMP] = ACTIONS(1190), - [anon_sym_AMP_AMP] = ACTIONS(1190), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(522), - [anon_sym_BQUOTE] = ACTIONS(1190), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(524), - }, - [363] = { - [sym_variable_assignment] = STATE(325), - [sym_subscript] = STATE(361), - [aux_sym_declaration_command_repeat2] = STATE(644), - [sym_variable_name] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_PIPE_AMP] = ACTIONS(1190), - [anon_sym_AMP_AMP] = ACTIONS(1190), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_BQUOTE] = ACTIONS(1190), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(524), - }, - [364] = { - [aux_sym_concatenation_repeat1] = STATE(645), - [sym_file_descriptor] = ACTIONS(474), - [sym__concat] = ACTIONS(528), - [anon_sym_PIPE] = ACTIONS(883), - [anon_sym_PIPE_AMP] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(883), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_GT_GT] = ACTIONS(474), - [anon_sym_AMP_GT] = ACTIONS(883), - [anon_sym_AMP_GT_GT] = ACTIONS(474), - [anon_sym_LT_AMP] = ACTIONS(474), - [anon_sym_GT_AMP] = ACTIONS(474), - [anon_sym_LT_LT] = ACTIONS(883), - [anon_sym_LT_LT_DASH] = ACTIONS(474), - [anon_sym_DQUOTE] = ACTIONS(474), - [sym_raw_string] = ACTIONS(474), - [anon_sym_DOLLAR] = ACTIONS(883), - [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), - }, - [365] = { - [anon_sym_RPAREN] = ACTIONS(1264), - [sym_comment] = ACTIONS(52), - }, - [366] = { - [sym_for_statement] = STATE(618), - [sym_while_statement] = STATE(618), - [sym_if_statement] = STATE(618), - [sym_case_statement] = STATE(618), - [sym_function_definition] = STATE(618), - [sym_subshell] = STATE(618), - [sym_pipeline] = STATE(618), - [sym_list] = STATE(618), - [sym_bracket_command] = STATE(618), - [sym_command] = STATE(618), - [sym_command_name] = STATE(140), - [sym_variable_assignment] = STATE(647), - [sym_declaration_command] = STATE(618), - [sym_subscript] = STATE(142), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(137), - [sym_simple_expansion] = STATE(137), - [sym_expansion] = STATE(137), - [sym_command_substitution] = STATE(137), - [sym_process_substitution] = STATE(137), - [aux_sym_command_repeat1] = STATE(143), - [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), - }, - [367] = { - [sym_for_statement] = STATE(648), - [sym_while_statement] = STATE(648), - [sym_if_statement] = STATE(648), - [sym_case_statement] = STATE(648), - [sym_function_definition] = STATE(648), - [sym_subshell] = STATE(648), - [sym_pipeline] = STATE(648), - [sym_list] = STATE(648), - [sym_bracket_command] = STATE(648), - [sym_command] = STATE(648), - [sym_command_name] = STATE(140), - [sym_variable_assignment] = STATE(649), - [sym_declaration_command] = STATE(648), - [sym_subscript] = STATE(142), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(137), - [sym_simple_expansion] = STATE(137), - [sym_expansion] = STATE(137), - [sym_command_substitution] = STATE(137), - [sym_process_substitution] = STATE(137), - [aux_sym_command_repeat1] = STATE(143), - [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), - }, - [368] = { - [anon_sym_LT] = ACTIONS(1266), - [anon_sym_GT] = ACTIONS(1266), - [anon_sym_GT_GT] = ACTIONS(1268), - [anon_sym_AMP_GT] = ACTIONS(1266), - [anon_sym_AMP_GT_GT] = ACTIONS(1268), - [anon_sym_LT_AMP] = ACTIONS(1268), - [anon_sym_GT_AMP] = ACTIONS(1268), - [sym_comment] = ACTIONS(52), - }, - [369] = { - [sym_concatenation] = STATE(630), - [sym_string] = STATE(651), - [sym_simple_expansion] = STATE(651), - [sym_expansion] = STATE(651), - [sym_command_substitution] = STATE(651), - [sym_process_substitution] = STATE(651), - [anon_sym_DQUOTE] = ACTIONS(1230), - [sym_raw_string] = ACTIONS(1270), - [anon_sym_DOLLAR] = ACTIONS(1234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1238), - [anon_sym_BQUOTE] = ACTIONS(1240), - [anon_sym_LT_LPAREN] = ACTIONS(1242), - [anon_sym_GT_LPAREN] = ACTIONS(1242), - [sym_word] = ACTIONS(1272), - [sym_comment] = ACTIONS(52), - }, - [370] = { - [aux_sym_concatenation_repeat1] = STATE(364), - [sym_file_descriptor] = ACTIONS(388), - [sym__concat] = ACTIONS(528), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_PIPE_AMP] = ACTIONS(388), - [anon_sym_AMP_AMP] = ACTIONS(388), - [anon_sym_PIPE_PIPE] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(388), - [anon_sym_AMP_GT] = ACTIONS(386), - [anon_sym_AMP_GT_GT] = ACTIONS(388), - [anon_sym_LT_AMP] = ACTIONS(388), - [anon_sym_GT_AMP] = ACTIONS(388), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_LT_LT_DASH] = ACTIONS(388), - [anon_sym_DQUOTE] = ACTIONS(388), - [sym_raw_string] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(386), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(388), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(388), - [anon_sym_BQUOTE] = ACTIONS(388), - [anon_sym_LT_LPAREN] = ACTIONS(388), - [anon_sym_GT_LPAREN] = ACTIONS(388), - [sym_word] = ACTIONS(390), - [sym_comment] = ACTIONS(52), - }, - [371] = { - [sym_file_redirect] = STATE(353), - [sym_heredoc_redirect] = STATE(353), - [sym_concatenation] = STATE(354), - [sym_string] = STATE(370), - [sym_simple_expansion] = STATE(370), - [sym_expansion] = STATE(370), - [sym_command_substitution] = STATE(370), - [sym_process_substitution] = STATE(370), - [aux_sym_for_statement_repeat1] = STATE(652), - [aux_sym_command_repeat2] = STATE(653), - [sym_file_descriptor] = ACTIONS(588), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1254), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(590), - [anon_sym_GT] = ACTIONS(590), - [anon_sym_GT_GT] = ACTIONS(592), - [anon_sym_AMP_GT] = ACTIONS(590), - [anon_sym_AMP_GT_GT] = ACTIONS(592), - [anon_sym_LT_AMP] = ACTIONS(592), - [anon_sym_GT_AMP] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_LT_LT_DASH] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(202), - [sym_raw_string] = ACTIONS(594), - [anon_sym_DOLLAR] = ACTIONS(206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(210), - [anon_sym_BQUOTE] = ACTIONS(1254), - [anon_sym_LT_LPAREN] = ACTIONS(214), - [anon_sym_GT_LPAREN] = ACTIONS(214), - [sym_word] = ACTIONS(596), - [sym_comment] = ACTIONS(52), - }, - [372] = { - [sym_file_redirect] = STATE(353), - [sym_heredoc_redirect] = STATE(353), - [aux_sym_command_repeat2] = STATE(654), - [sym_file_descriptor] = ACTIONS(588), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1254), - [anon_sym_PIPE_PIPE] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(590), - [anon_sym_GT] = ACTIONS(590), - [anon_sym_GT_GT] = ACTIONS(592), - [anon_sym_AMP_GT] = ACTIONS(590), - [anon_sym_AMP_GT_GT] = ACTIONS(592), - [anon_sym_LT_AMP] = ACTIONS(592), - [anon_sym_GT_AMP] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_LT_LT_DASH] = ACTIONS(564), - [anon_sym_BQUOTE] = ACTIONS(1254), - [sym_comment] = ACTIONS(52), - }, - [373] = { - [sym_file_redirect] = STATE(353), - [sym_heredoc_redirect] = STATE(353), - [sym_concatenation] = STATE(354), - [sym_string] = STATE(370), - [sym_simple_expansion] = STATE(370), - [sym_expansion] = STATE(370), - [sym_command_substitution] = STATE(370), - [sym_process_substitution] = STATE(370), - [aux_sym_for_statement_repeat1] = STATE(655), - [aux_sym_command_repeat2] = STATE(653), - [sym_file_descriptor] = ACTIONS(588), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1254), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(590), - [anon_sym_GT] = ACTIONS(590), - [anon_sym_GT_GT] = ACTIONS(592), - [anon_sym_AMP_GT] = ACTIONS(590), - [anon_sym_AMP_GT_GT] = ACTIONS(592), - [anon_sym_LT_AMP] = ACTIONS(592), - [anon_sym_GT_AMP] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_LT_LT_DASH] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(202), - [sym_raw_string] = ACTIONS(594), - [anon_sym_DOLLAR] = ACTIONS(206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(210), - [anon_sym_BQUOTE] = ACTIONS(1254), - [anon_sym_LT_LPAREN] = ACTIONS(214), - [anon_sym_GT_LPAREN] = ACTIONS(214), - [sym_word] = ACTIONS(596), - [sym_comment] = ACTIONS(52), - }, - [374] = { - [sym_file_descriptor] = ACTIONS(1274), - [sym__concat] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_RPAREN] = ACTIONS(1276), - [anon_sym_SEMI_SEMI] = ACTIONS(1276), - [anon_sym_PIPE_AMP] = ACTIONS(1276), - [anon_sym_AMP_AMP] = ACTIONS(1276), - [anon_sym_PIPE_PIPE] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1276), - [anon_sym_GT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_AMP_GT] = ACTIONS(1276), - [anon_sym_AMP_GT_GT] = ACTIONS(1276), - [anon_sym_LT_AMP] = ACTIONS(1276), - [anon_sym_GT_AMP] = ACTIONS(1276), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_LT_LT_DASH] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_raw_string] = ACTIONS(1276), - [anon_sym_DOLLAR] = ACTIONS(1276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), - [anon_sym_BQUOTE] = ACTIONS(1276), - [anon_sym_LT_LPAREN] = ACTIONS(1276), - [anon_sym_GT_LPAREN] = ACTIONS(1276), - [sym_word] = ACTIONS(1276), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_LF] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - }, - [375] = { - [sym_compound_statement] = STATE(656), - [anon_sym_LBRACE] = ACTIONS(356), - [sym_comment] = ACTIONS(52), - }, - [376] = { - [anon_sym_PIPE] = ACTIONS(1278), - [anon_sym_RPAREN] = ACTIONS(1278), - [anon_sym_SEMI_SEMI] = ACTIONS(1278), - [anon_sym_PIPE_AMP] = ACTIONS(1278), - [anon_sym_AMP_AMP] = ACTIONS(1278), - [anon_sym_PIPE_PIPE] = ACTIONS(1278), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_LF] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - }, - [377] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(1278), - [anon_sym_RPAREN] = ACTIONS(1278), - [anon_sym_SEMI_SEMI] = ACTIONS(1278), - [anon_sym_PIPE_AMP] = ACTIONS(1278), - [anon_sym_AMP_AMP] = ACTIONS(1278), - [anon_sym_PIPE_PIPE] = ACTIONS(1278), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_AMP_GT] = ACTIONS(268), - [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(268), - [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(268), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_LF] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - }, - [378] = { - [anon_sym_PIPE] = ACTIONS(238), - [anon_sym_SEMI_SEMI] = ACTIONS(1280), - [anon_sym_PIPE_AMP] = ACTIONS(238), - [anon_sym_AMP_AMP] = ACTIONS(1280), - [anon_sym_PIPE_PIPE] = ACTIONS(1280), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym_LF] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1280), - }, - [379] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(238), - [anon_sym_SEMI_SEMI] = ACTIONS(1280), - [anon_sym_PIPE_AMP] = ACTIONS(238), - [anon_sym_AMP_AMP] = ACTIONS(1280), - [anon_sym_PIPE_PIPE] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_AMP_GT] = ACTIONS(268), - [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(268), - [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(268), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym_LF] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1280), - }, - [380] = { - [sym_concatenation] = STATE(658), - [sym_string] = STATE(657), - [sym_simple_expansion] = STATE(657), - [sym_expansion] = STATE(657), - [sym_command_substitution] = STATE(657), - [sym_process_substitution] = STATE(657), - [anon_sym_DQUOTE] = ACTIONS(616), - [sym_raw_string] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(620), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(622), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), - [anon_sym_BQUOTE] = ACTIONS(626), - [anon_sym_LT_LPAREN] = ACTIONS(628), - [anon_sym_GT_LPAREN] = ACTIONS(628), - [sym_word] = ACTIONS(1284), - [sym_comment] = ACTIONS(52), - }, - [381] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(660), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), - }, - [382] = { - [aux_sym_concatenation_repeat1] = STATE(662), - [sym_file_descriptor] = ACTIONS(434), - [sym__concat] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_SEMI_SEMI] = ACTIONS(1290), - [anon_sym_PIPE_AMP] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_GT_GT] = ACTIONS(1290), - [anon_sym_AMP_GT] = ACTIONS(1290), - [anon_sym_AMP_GT_GT] = ACTIONS(1290), - [anon_sym_LT_AMP] = ACTIONS(1290), - [anon_sym_GT_AMP] = ACTIONS(1290), - [anon_sym_LT_LT] = ACTIONS(1290), - [anon_sym_LT_LT_DASH] = ACTIONS(1290), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - }, - [383] = { - [sym_special_variable_name] = STATE(665), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_DOLLAR] = ACTIONS(1292), - [anon_sym_POUND] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(1292), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_QMARK] = ACTIONS(1292), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_0] = ACTIONS(1296), - [anon_sym__] = ACTIONS(1296), - }, - [384] = { - [sym_special_variable_name] = STATE(668), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(62), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), - }, - [385] = { - [sym_for_statement] = STATE(669), - [sym_while_statement] = STATE(669), - [sym_if_statement] = STATE(669), - [sym_case_statement] = STATE(669), - [sym_function_definition] = STATE(669), - [sym_subshell] = STATE(669), - [sym_pipeline] = STATE(669), - [sym_list] = STATE(669), - [sym_bracket_command] = STATE(669), - [sym_command] = STATE(669), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(670), - [sym_declaration_command] = STATE(669), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), - }, - [386] = { - [sym_for_statement] = STATE(671), - [sym_while_statement] = STATE(671), - [sym_if_statement] = STATE(671), - [sym_case_statement] = STATE(671), - [sym_function_definition] = STATE(671), - [sym_subshell] = STATE(671), - [sym_pipeline] = STATE(671), - [sym_list] = STATE(671), - [sym_bracket_command] = STATE(671), - [sym_command] = STATE(671), - [sym_command_name] = STATE(140), - [sym_variable_assignment] = STATE(672), - [sym_declaration_command] = STATE(671), - [sym_subscript] = STATE(142), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(137), - [sym_simple_expansion] = STATE(137), - [sym_expansion] = STATE(137), - [sym_command_substitution] = STATE(137), - [sym_process_substitution] = STATE(137), - [aux_sym_command_repeat1] = STATE(143), - [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), - }, - [387] = { - [sym_for_statement] = STATE(673), - [sym_while_statement] = STATE(673), - [sym_if_statement] = STATE(673), - [sym_case_statement] = STATE(673), - [sym_function_definition] = STATE(673), - [sym_subshell] = STATE(673), - [sym_pipeline] = STATE(673), - [sym_list] = STATE(673), - [sym_bracket_command] = STATE(673), - [sym_command] = STATE(673), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(674), - [sym_declaration_command] = STATE(673), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), - }, - [388] = { - [sym_file_descriptor] = ACTIONS(434), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_RPAREN] = ACTIONS(1290), - [anon_sym_SEMI_SEMI] = ACTIONS(1290), - [anon_sym_PIPE_AMP] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_GT_GT] = ACTIONS(1290), - [anon_sym_AMP_GT] = ACTIONS(1290), - [anon_sym_AMP_GT_GT] = ACTIONS(1290), - [anon_sym_LT_AMP] = ACTIONS(1290), - [anon_sym_GT_AMP] = ACTIONS(1290), - [anon_sym_LT_LT] = ACTIONS(1290), - [anon_sym_LT_LT_DASH] = ACTIONS(1290), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - }, - [389] = { - [sym_file_descriptor] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1304), - [anon_sym_RPAREN] = ACTIONS(1304), - [anon_sym_SEMI_SEMI] = ACTIONS(1304), - [anon_sym_PIPE_AMP] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1304), - [anon_sym_AMP_GT] = ACTIONS(1304), - [anon_sym_AMP_GT_GT] = ACTIONS(1304), - [anon_sym_LT_AMP] = ACTIONS(1304), - [anon_sym_GT_AMP] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1304), - [anon_sym_LT_LT_DASH] = ACTIONS(1304), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_LF] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - }, - [390] = { - [sym_simple_expansion] = STATE(675), - [sym_expansion] = STATE(675), - [aux_sym_heredoc_repeat1] = STATE(679), - [sym__heredoc_middle] = ACTIONS(1306), - [sym__heredoc_end] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1310), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1312), - [sym_comment] = ACTIONS(52), - }, - [391] = { - [sym_file_descriptor] = ACTIONS(1314), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_RPAREN] = ACTIONS(1316), - [anon_sym_SEMI_SEMI] = ACTIONS(1316), - [anon_sym_PIPE_AMP] = ACTIONS(1316), - [anon_sym_AMP_AMP] = ACTIONS(1316), - [anon_sym_PIPE_PIPE] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_GT_GT] = ACTIONS(1316), - [anon_sym_AMP_GT] = ACTIONS(1316), - [anon_sym_AMP_GT_GT] = ACTIONS(1316), - [anon_sym_LT_AMP] = ACTIONS(1316), - [anon_sym_GT_AMP] = ACTIONS(1316), - [anon_sym_LT_LT] = ACTIONS(1316), - [anon_sym_LT_LT_DASH] = ACTIONS(1316), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LF] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - }, - [392] = { - [sym_concatenation] = STATE(155), - [sym_string] = STATE(153), - [sym_simple_expansion] = STATE(153), - [sym_expansion] = STATE(153), - [sym_command_substitution] = STATE(153), - [sym_process_substitution] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(392), - [sym_file_descriptor] = ACTIONS(1318), - [anon_sym_PIPE] = ACTIONS(1320), - [anon_sym_SEMI_SEMI] = ACTIONS(1320), - [anon_sym_PIPE_AMP] = ACTIONS(1320), - [anon_sym_AMP_AMP] = ACTIONS(1320), - [anon_sym_PIPE_PIPE] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_GT_GT] = ACTIONS(1320), - [anon_sym_AMP_GT] = ACTIONS(1320), - [anon_sym_AMP_GT_GT] = ACTIONS(1320), - [anon_sym_LT_AMP] = ACTIONS(1320), - [anon_sym_GT_AMP] = ACTIONS(1320), - [anon_sym_LT_LT] = ACTIONS(1320), - [anon_sym_LT_LT_DASH] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_raw_string] = ACTIONS(1325), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1331), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1334), - [anon_sym_BQUOTE] = ACTIONS(1337), - [anon_sym_LT_LPAREN] = ACTIONS(1340), - [anon_sym_GT_LPAREN] = ACTIONS(1340), - [sym_word] = ACTIONS(1325), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym_LF] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - }, - [393] = { - [sym_file_redirect] = STATE(154), - [sym_heredoc_redirect] = STATE(154), - [aux_sym_command_repeat2] = STATE(394), - [sym_file_descriptor] = ACTIONS(244), - [anon_sym_PIPE] = ACTIONS(1343), - [anon_sym_SEMI_SEMI] = ACTIONS(1343), - [anon_sym_PIPE_AMP] = ACTIONS(1343), - [anon_sym_AMP_AMP] = ACTIONS(1343), - [anon_sym_PIPE_PIPE] = ACTIONS(1343), - [anon_sym_LT] = ACTIONS(248), - [anon_sym_GT] = ACTIONS(248), - [anon_sym_GT_GT] = ACTIONS(248), - [anon_sym_AMP_GT] = ACTIONS(248), - [anon_sym_AMP_GT_GT] = ACTIONS(248), - [anon_sym_LT_AMP] = ACTIONS(248), - [anon_sym_GT_AMP] = ACTIONS(248), - [anon_sym_LT_LT] = ACTIONS(250), - [anon_sym_LT_LT_DASH] = ACTIONS(250), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_LF] = ACTIONS(1343), - [anon_sym_AMP] = ACTIONS(1343), - }, - [394] = { - [sym_file_redirect] = STATE(154), - [sym_heredoc_redirect] = STATE(154), - [aux_sym_command_repeat2] = STATE(394), - [sym_file_descriptor] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1348), - [anon_sym_SEMI_SEMI] = ACTIONS(1348), - [anon_sym_PIPE_AMP] = ACTIONS(1348), - [anon_sym_AMP_AMP] = ACTIONS(1348), - [anon_sym_PIPE_PIPE] = ACTIONS(1348), - [anon_sym_LT] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_GT_GT] = ACTIONS(1350), - [anon_sym_AMP_GT] = ACTIONS(1350), - [anon_sym_AMP_GT_GT] = ACTIONS(1350), - [anon_sym_LT_AMP] = ACTIONS(1350), - [anon_sym_GT_AMP] = ACTIONS(1350), - [anon_sym_LT_LT] = ACTIONS(1353), - [anon_sym_LT_LT_DASH] = ACTIONS(1353), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym_LF] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - }, - [395] = { - [sym_concatenation] = STATE(680), - [sym_string] = STATE(682), - [sym_array] = STATE(680), - [sym_simple_expansion] = STATE(682), - [sym_expansion] = STATE(682), - [sym_command_substitution] = STATE(682), - [sym_process_substitution] = STATE(682), - [sym__empty_value] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(138), - [sym_raw_string] = ACTIONS(1360), - [anon_sym_DOLLAR] = ACTIONS(142), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(144), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(146), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_LT_LPAREN] = ACTIONS(150), - [anon_sym_GT_LPAREN] = ACTIONS(150), - [sym_word] = ACTIONS(1362), - [sym_comment] = ACTIONS(52), - }, - [396] = { - [sym_file_descriptor] = ACTIONS(318), - [sym_variable_name] = ACTIONS(318), - [anon_sym_LT] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_GT_GT] = ACTIONS(318), - [anon_sym_AMP_GT] = ACTIONS(1158), - [anon_sym_AMP_GT_GT] = ACTIONS(318), - [anon_sym_LT_AMP] = ACTIONS(318), - [anon_sym_GT_AMP] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(318), - [sym_raw_string] = ACTIONS(318), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(318), - [anon_sym_LT_LPAREN] = ACTIONS(318), - [anon_sym_GT_LPAREN] = ACTIONS(318), - [sym_word] = ACTIONS(1158), - [sym_comment] = ACTIONS(52), - }, - [397] = { - [sym_file_redirect] = STATE(154), - [sym_heredoc_redirect] = STATE(154), - [sym_concatenation] = STATE(155), - [sym_string] = STATE(153), - [sym_simple_expansion] = STATE(153), - [sym_expansion] = STATE(153), - [sym_command_substitution] = STATE(153), - [sym_process_substitution] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(392), - [aux_sym_command_repeat2] = STATE(683), - [sym_file_descriptor] = ACTIONS(244), - [anon_sym_PIPE] = ACTIONS(1343), - [anon_sym_SEMI_SEMI] = ACTIONS(1343), - [anon_sym_PIPE_AMP] = ACTIONS(1343), - [anon_sym_AMP_AMP] = ACTIONS(1343), - [anon_sym_PIPE_PIPE] = ACTIONS(1343), - [anon_sym_LT] = ACTIONS(248), - [anon_sym_GT] = ACTIONS(248), - [anon_sym_GT_GT] = ACTIONS(248), - [anon_sym_AMP_GT] = ACTIONS(248), - [anon_sym_AMP_GT_GT] = ACTIONS(248), - [anon_sym_LT_AMP] = ACTIONS(248), - [anon_sym_GT_AMP] = ACTIONS(248), - [anon_sym_LT_LT] = ACTIONS(250), - [anon_sym_LT_LT_DASH] = ACTIONS(250), - [anon_sym_DQUOTE] = ACTIONS(252), - [sym_raw_string] = ACTIONS(254), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(260), - [anon_sym_BQUOTE] = ACTIONS(262), - [anon_sym_LT_LPAREN] = ACTIONS(264), - [anon_sym_GT_LPAREN] = ACTIONS(264), - [sym_word] = ACTIONS(254), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_LF] = ACTIONS(1343), - [anon_sym_AMP] = ACTIONS(1343), - }, - [398] = { - [sym__concat] = ACTIONS(450), - [anon_sym_PIPE] = ACTIONS(450), - [anon_sym_RPAREN] = ACTIONS(450), - [anon_sym_RBRACK] = ACTIONS(450), - [sym_comment] = ACTIONS(52), - }, - [399] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(298), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), - }, - [400] = { - [sym_string] = STATE(685), - [sym_simple_expansion] = STATE(685), - [sym_expansion] = STATE(685), - [sym_command_substitution] = STATE(685), - [sym_process_substitution] = STATE(685), - [anon_sym_DQUOTE] = ACTIONS(282), - [sym_raw_string] = ACTIONS(1366), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_word] = ACTIONS(1368), - [sym_comment] = ACTIONS(52), - }, - [401] = { - [anon_sym_EQ] = ACTIONS(1370), - [anon_sym_PLUS_EQ] = ACTIONS(1370), - [sym_comment] = ACTIONS(52), - }, - [402] = { - [aux_sym_concatenation_repeat1] = STATE(686), - [sym__concat] = ACTIONS(731), - [anon_sym_RBRACK] = ACTIONS(474), - [sym_comment] = ACTIONS(52), - }, - [403] = { - [sym__concat] = ACTIONS(322), - [anon_sym_PIPE] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(322), - [anon_sym_RBRACK] = ACTIONS(322), - [sym_comment] = ACTIONS(52), - }, - [404] = { - [sym__concat] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(480), - [anon_sym_RBRACK] = ACTIONS(480), - [sym_comment] = ACTIONS(52), - }, - [405] = { - [sym__concat] = ACTIONS(484), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(484), - [anon_sym_RBRACK] = ACTIONS(484), - [sym_comment] = ACTIONS(52), - }, - [406] = { - [sym_special_variable_name] = STATE(688), - [anon_sym_RBRACE] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(62), - [anon_sym_AT] = ACTIONS(62), - [anon_sym_COLON] = ACTIONS(324), - [anon_sym_COLON_QMARK] = ACTIONS(322), - [anon_sym_COLON_DASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), - }, - [407] = { - [anon_sym_RBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_EQ] = ACTIONS(1378), - [anon_sym_COLON] = ACTIONS(1380), - [anon_sym_COLON_QMARK] = ACTIONS(1378), - [anon_sym_COLON_DASH] = ACTIONS(1378), - [anon_sym_PERCENT] = ACTIONS(1378), - [anon_sym_SLASH] = ACTIONS(1378), - [sym_comment] = ACTIONS(52), - }, - [408] = { - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1384), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_COLON] = ACTIONS(1388), - [anon_sym_COLON_QMARK] = ACTIONS(1386), - [anon_sym_COLON_DASH] = ACTIONS(1386), - [anon_sym_PERCENT] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1386), - [sym_comment] = ACTIONS(52), - }, - [409] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(1390), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), - }, - [410] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(1390), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [411] = { - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_BQUOTE] = ACTIONS(1390), - [sym_comment] = ACTIONS(52), - }, - [412] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(1390), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [413] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(1392), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), - }, - [414] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(1392), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [415] = { - [sym_file_descriptor] = ACTIONS(1394), - [sym_variable_name] = ACTIONS(1394), - [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(1396), - [anon_sym_GT] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1396), - [anon_sym_AMP_GT] = ACTIONS(1396), - [anon_sym_AMP_GT_GT] = ACTIONS(1396), - [anon_sym_LT_AMP] = ACTIONS(1396), - [anon_sym_GT_AMP] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [sym_raw_string] = ACTIONS(1396), - [anon_sym_DOLLAR] = ACTIONS(1396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), - [anon_sym_BQUOTE] = ACTIONS(1396), - [anon_sym_LT_LPAREN] = ACTIONS(1396), - [anon_sym_GT_LPAREN] = ACTIONS(1396), - [sym_word] = ACTIONS(1396), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_LF] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - }, - [416] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(698), - [anon_sym_DQUOTE] = ACTIONS(1398), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), - }, - [417] = { - [aux_sym_concatenation_repeat1] = STATE(700), - [sym__concat] = ACTIONS(1400), - [anon_sym_RPAREN] = ACTIONS(388), - [anon_sym_DQUOTE] = ACTIONS(388), - [sym_raw_string] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(386), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(388), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(388), - [anon_sym_BQUOTE] = ACTIONS(388), - [anon_sym_LT_LPAREN] = ACTIONS(388), - [anon_sym_GT_LPAREN] = ACTIONS(388), - [sym_word] = ACTIONS(386), - [sym_comment] = ACTIONS(52), - }, - [418] = { - [sym_special_variable_name] = STATE(703), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_DOLLAR] = ACTIONS(1402), - [anon_sym_POUND] = ACTIONS(1402), - [anon_sym_AT] = ACTIONS(1402), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1404), - [anon_sym_STAR] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1402), - [anon_sym_0] = ACTIONS(1406), - [anon_sym__] = ACTIONS(1406), - }, - [419] = { - [sym_special_variable_name] = STATE(706), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(1408), - [anon_sym_AT] = ACTIONS(62), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), - }, - [420] = { - [sym_for_statement] = STATE(707), - [sym_while_statement] = STATE(707), - [sym_if_statement] = STATE(707), - [sym_case_statement] = STATE(707), - [sym_function_definition] = STATE(707), - [sym_subshell] = STATE(707), - [sym_pipeline] = STATE(707), - [sym_list] = STATE(707), - [sym_bracket_command] = STATE(707), - [sym_command] = STATE(707), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(708), - [sym_declaration_command] = STATE(707), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), - }, - [421] = { - [sym_for_statement] = STATE(709), - [sym_while_statement] = STATE(709), - [sym_if_statement] = STATE(709), - [sym_case_statement] = STATE(709), - [sym_function_definition] = STATE(709), - [sym_subshell] = STATE(709), - [sym_pipeline] = STATE(709), - [sym_list] = STATE(709), - [sym_bracket_command] = STATE(709), - [sym_command] = STATE(709), - [sym_command_name] = STATE(140), - [sym_variable_assignment] = STATE(710), - [sym_declaration_command] = STATE(709), - [sym_subscript] = STATE(142), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(137), - [sym_simple_expansion] = STATE(137), - [sym_expansion] = STATE(137), - [sym_command_substitution] = STATE(137), - [sym_process_substitution] = STATE(137), - [aux_sym_command_repeat1] = STATE(143), - [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), - }, - [422] = { - [sym_for_statement] = STATE(711), - [sym_while_statement] = STATE(711), - [sym_if_statement] = STATE(711), - [sym_case_statement] = STATE(711), - [sym_function_definition] = STATE(711), - [sym_subshell] = STATE(711), - [sym_pipeline] = STATE(711), - [sym_list] = STATE(711), - [sym_bracket_command] = STATE(711), - [sym_command] = STATE(711), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(712), - [sym_declaration_command] = STATE(711), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), - }, [423] = { - [anon_sym_RPAREN] = ACTIONS(388), - [anon_sym_DQUOTE] = ACTIONS(388), - [sym_raw_string] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(386), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(388), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(388), - [anon_sym_BQUOTE] = ACTIONS(388), - [anon_sym_LT_LPAREN] = ACTIONS(388), - [anon_sym_GT_LPAREN] = ACTIONS(388), - [sym_word] = ACTIONS(386), - [sym_comment] = ACTIONS(52), + [sym_special_variable_name] = STATE(691), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(466), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(478), + [anon_sym_COLON_QMARK] = ACTIONS(466), + [anon_sym_COLON_DASH] = ACTIONS(466), + [anon_sym_PERCENT] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(466), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), }, [424] = { - [sym_concatenation] = STATE(423), - [sym_string] = STATE(417), - [sym_simple_expansion] = STATE(417), - [sym_expansion] = STATE(417), - [sym_command_substitution] = STATE(417), - [sym_process_substitution] = STATE(417), - [aux_sym_for_statement_repeat1] = STATE(714), - [anon_sym_RPAREN] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(755), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(759), - [anon_sym_BQUOTE] = ACTIONS(761), - [anon_sym_LT_LPAREN] = ACTIONS(763), - [anon_sym_GT_LPAREN] = ACTIONS(763), - [sym_word] = ACTIONS(765), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_LBRACK] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_COLON] = ACTIONS(1358), + [anon_sym_COLON_QMARK] = ACTIONS(1356), + [anon_sym_COLON_DASH] = ACTIONS(1356), + [anon_sym_PERCENT] = ACTIONS(1356), + [anon_sym_SLASH] = ACTIONS(1356), + [sym_comment] = ACTIONS(50), }, [425] = { - [sym_file_descriptor] = ACTIONS(450), - [sym__concat] = ACTIONS(450), - [sym_variable_name] = ACTIONS(450), - [anon_sym_PIPE] = ACTIONS(452), - [anon_sym_RPAREN] = ACTIONS(452), - [anon_sym_SEMI_SEMI] = ACTIONS(452), - [anon_sym_PIPE_AMP] = ACTIONS(452), - [anon_sym_AMP_AMP] = ACTIONS(452), - [anon_sym_PIPE_PIPE] = ACTIONS(452), - [anon_sym_LT] = ACTIONS(452), - [anon_sym_GT] = ACTIONS(452), - [anon_sym_GT_GT] = ACTIONS(452), - [anon_sym_AMP_GT] = ACTIONS(452), - [anon_sym_AMP_GT_GT] = ACTIONS(452), - [anon_sym_LT_AMP] = ACTIONS(452), - [anon_sym_GT_AMP] = ACTIONS(452), - [anon_sym_DQUOTE] = ACTIONS(452), - [sym_raw_string] = ACTIONS(452), - [anon_sym_DOLLAR] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(452), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(452), - [anon_sym_BQUOTE] = ACTIONS(452), - [anon_sym_LT_LPAREN] = ACTIONS(452), - [anon_sym_GT_LPAREN] = ACTIONS(452), - [sym_word] = ACTIONS(452), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(452), - [anon_sym_LF] = ACTIONS(452), - [anon_sym_AMP] = ACTIONS(452), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_LBRACK] = ACTIONS(1362), + [anon_sym_EQ] = ACTIONS(1364), + [anon_sym_COLON] = ACTIONS(1366), + [anon_sym_COLON_QMARK] = ACTIONS(1364), + [anon_sym_COLON_DASH] = ACTIONS(1364), + [anon_sym_PERCENT] = ACTIONS(1364), + [anon_sym_SLASH] = ACTIONS(1364), + [sym_comment] = ACTIONS(50), }, [426] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(298), - [anon_sym_DQUOTE] = ACTIONS(1414), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(1368), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), }, [427] = { - [sym_string] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [anon_sym_DQUOTE] = ACTIONS(302), - [sym_raw_string] = ACTIONS(1416), - [anon_sym_DOLLAR] = ACTIONS(306), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(308), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(310), - [anon_sym_BQUOTE] = ACTIONS(312), - [anon_sym_LT_LPAREN] = ACTIONS(314), - [anon_sym_GT_LPAREN] = ACTIONS(314), - [sym_word] = ACTIONS(1418), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(1368), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), }, [428] = { - [aux_sym_concatenation_repeat1] = STATE(717), - [sym_file_descriptor] = ACTIONS(474), - [sym__concat] = ACTIONS(769), - [sym_variable_name] = ACTIONS(474), - [anon_sym_PIPE] = 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(64), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_LF] = ACTIONS(476), - [anon_sym_AMP] = ACTIONS(476), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_BQUOTE] = ACTIONS(1368), + [sym_comment] = ACTIONS(50), }, [429] = { - [sym_file_descriptor] = ACTIONS(322), - [sym__concat] = ACTIONS(322), - [sym_variable_name] = ACTIONS(322), - [anon_sym_PIPE] = ACTIONS(478), - [anon_sym_RPAREN] = ACTIONS(478), - [anon_sym_SEMI_SEMI] = ACTIONS(478), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(478), - [anon_sym_PIPE_PIPE] = ACTIONS(478), - [anon_sym_LT] = ACTIONS(478), - [anon_sym_GT] = ACTIONS(478), - [anon_sym_GT_GT] = ACTIONS(478), - [anon_sym_AMP_GT] = ACTIONS(478), - [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(478), - [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(478), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_LF] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(478), + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(1368), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), }, [430] = { - [sym_file_descriptor] = ACTIONS(480), - [sym__concat] = ACTIONS(480), - [sym_variable_name] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(482), - [anon_sym_RPAREN] = ACTIONS(482), - [anon_sym_SEMI_SEMI] = ACTIONS(482), - [anon_sym_PIPE_AMP] = ACTIONS(482), - [anon_sym_AMP_AMP] = ACTIONS(482), - [anon_sym_PIPE_PIPE] = ACTIONS(482), - [anon_sym_LT] = ACTIONS(482), - [anon_sym_GT] = ACTIONS(482), - [anon_sym_GT_GT] = ACTIONS(482), - [anon_sym_AMP_GT] = ACTIONS(482), - [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(482), - [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(482), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(482), - [anon_sym_LF] = ACTIONS(482), - [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(1370), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), }, [431] = { - [sym_file_descriptor] = ACTIONS(484), - [sym__concat] = ACTIONS(484), - [sym_variable_name] = ACTIONS(484), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_RPAREN] = ACTIONS(486), - [anon_sym_SEMI_SEMI] = ACTIONS(486), - [anon_sym_PIPE_AMP] = ACTIONS(486), - [anon_sym_AMP_AMP] = ACTIONS(486), - [anon_sym_PIPE_PIPE] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(486), - [anon_sym_GT_GT] = ACTIONS(486), - [anon_sym_AMP_GT] = ACTIONS(486), - [anon_sym_AMP_GT_GT] = ACTIONS(486), - [anon_sym_LT_AMP] = ACTIONS(486), - [anon_sym_GT_AMP] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(486), - [sym_raw_string] = ACTIONS(486), - [anon_sym_DOLLAR] = ACTIONS(486), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(486), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(486), - [anon_sym_BQUOTE] = ACTIONS(486), - [anon_sym_LT_LPAREN] = ACTIONS(486), - [anon_sym_GT_LPAREN] = ACTIONS(486), - [sym_word] = ACTIONS(486), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(486), - [anon_sym_LF] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(486), + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(1370), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), }, [432] = { - [sym_special_variable_name] = STATE(719), - [anon_sym_RBRACE] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(62), - [anon_sym_AT] = ACTIONS(62), - [anon_sym_COLON] = ACTIONS(324), - [anon_sym_COLON_QMARK] = ACTIONS(322), - [anon_sym_COLON_DASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), + [aux_sym_concatenation_repeat1] = STATE(684), + [sym_file_descriptor] = ACTIONS(596), + [sym_word] = ACTIONS(596), + [sym__concat] = ACTIONS(762), + [sym_variable_name] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(598), + [anon_sym_SEMI_SEMI] = ACTIONS(598), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(598), + [anon_sym_PIPE_PIPE] = ACTIONS(598), + [anon_sym_LT] = ACTIONS(598), + [anon_sym_GT] = ACTIONS(598), + [anon_sym_GT_GT] = ACTIONS(598), + [anon_sym_AMP_GT] = ACTIONS(598), + [anon_sym_AMP_GT_GT] = ACTIONS(598), + [anon_sym_LT_AMP] = ACTIONS(598), + [anon_sym_GT_AMP] = ACTIONS(598), + [anon_sym_DQUOTE] = ACTIONS(598), + [sym_raw_string] = ACTIONS(598), + [anon_sym_DOLLAR] = ACTIONS(598), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(598), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(598), + [anon_sym_BQUOTE] = ACTIONS(598), + [anon_sym_LT_LPAREN] = ACTIONS(598), + [anon_sym_GT_LPAREN] = ACTIONS(598), [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1420), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), + [sym_identifier] = ACTIONS(598), + [anon_sym_SEMI] = ACTIONS(598), + [anon_sym_LF] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(598), }, [433] = { - [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), + [aux_sym_concatenation_repeat1] = STATE(701), + [sym_word] = ACTIONS(388), + [sym__concat] = ACTIONS(1372), + [anon_sym_SEMI_SEMI] = ACTIONS(610), + [anon_sym_DQUOTE] = ACTIONS(610), + [sym_raw_string] = ACTIONS(610), + [anon_sym_DOLLAR] = ACTIONS(610), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(610), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(610), + [anon_sym_BQUOTE] = ACTIONS(610), + [anon_sym_LT_LPAREN] = ACTIONS(610), + [anon_sym_GT_LPAREN] = ACTIONS(610), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(610), + [anon_sym_SEMI] = ACTIONS(610), + [anon_sym_LF] = ACTIONS(610), + [anon_sym_AMP] = ACTIONS(610), }, [434] = { - [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), + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(703), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_comment] = ACTIONS(64), }, [435] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(1438), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), + [sym_special_variable_name] = STATE(706), + [anon_sym_DOLLAR] = ACTIONS(1376), + [anon_sym_POUND] = ACTIONS(1376), + [anon_sym_AT] = ACTIONS(1376), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_QMARK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_0] = ACTIONS(1380), + [anon_sym__] = ACTIONS(1380), }, [436] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(1438), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), + [sym_special_variable_name] = STATE(709), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(1382), + [anon_sym_AT] = ACTIONS(162), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), }, [437] = { - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_BQUOTE] = ACTIONS(1438), - [sym_comment] = ACTIONS(52), + [sym_for_statement] = STATE(710), + [sym_while_statement] = STATE(710), + [sym_if_statement] = STATE(710), + [sym_case_statement] = STATE(710), + [sym_function_definition] = STATE(710), + [sym_subshell] = STATE(710), + [sym_pipeline] = STATE(710), + [sym_list] = STATE(710), + [sym_bracket_command] = STATE(710), + [sym_command] = STATE(710), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(711), + [sym_declaration_command] = STATE(710), + [sym_subscript] = STATE(126), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), }, [438] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(1438), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), + [sym_for_statement] = STATE(712), + [sym_while_statement] = STATE(712), + [sym_if_statement] = STATE(712), + [sym_case_statement] = STATE(712), + [sym_function_definition] = STATE(712), + [sym_subshell] = STATE(712), + [sym_pipeline] = STATE(712), + [sym_list] = STATE(712), + [sym_bracket_command] = STATE(712), + [sym_command] = STATE(712), + [sym_command_name] = STATE(135), + [sym_variable_assignment] = STATE(713), + [sym_declaration_command] = STATE(712), + [sym_subscript] = STATE(137), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(129), + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [sym_process_substitution] = STATE(129), + [aux_sym_command_repeat1] = STATE(138), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(206), + [sym_variable_name] = ACTIONS(208), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(212), + [anon_sym_typeset] = ACTIONS(212), + [anon_sym_export] = ACTIONS(212), + [anon_sym_readonly] = ACTIONS(212), + [anon_sym_local] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(206), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(214), }, [439] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), + [sym_for_statement] = STATE(714), + [sym_while_statement] = STATE(714), + [sym_if_statement] = STATE(714), + [sym_case_statement] = STATE(714), + [sym_function_definition] = STATE(714), + [sym_subshell] = STATE(714), + [sym_pipeline] = STATE(714), + [sym_list] = STATE(714), + [sym_bracket_command] = STATE(714), + [sym_command] = STATE(714), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(715), + [sym_declaration_command] = STATE(714), + [sym_subscript] = STATE(126), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), }, [440] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(716), + [sym_word] = ACTIONS(406), + [sym__concat] = ACTIONS(1372), + [anon_sym_SEMI_SEMI] = ACTIONS(632), + [anon_sym_DQUOTE] = ACTIONS(632), + [sym_raw_string] = ACTIONS(632), + [anon_sym_DOLLAR] = ACTIONS(632), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(632), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(632), + [anon_sym_BQUOTE] = ACTIONS(632), + [anon_sym_LT_LPAREN] = ACTIONS(632), + [anon_sym_GT_LPAREN] = ACTIONS(632), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(632), + [anon_sym_SEMI] = ACTIONS(632), + [anon_sym_LF] = ACTIONS(632), + [anon_sym_AMP] = ACTIONS(632), }, [441] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(729), - [anon_sym_DQUOTE] = ACTIONS(1442), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), + [sym_word] = ACTIONS(388), + [anon_sym_SEMI_SEMI] = ACTIONS(610), + [anon_sym_DQUOTE] = ACTIONS(610), + [sym_raw_string] = ACTIONS(610), + [anon_sym_DOLLAR] = ACTIONS(610), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(610), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(610), + [anon_sym_BQUOTE] = ACTIONS(610), + [anon_sym_LT_LPAREN] = ACTIONS(610), + [anon_sym_GT_LPAREN] = ACTIONS(610), [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(610), + [anon_sym_SEMI] = ACTIONS(610), + [anon_sym_LF] = ACTIONS(610), + [anon_sym_AMP] = ACTIONS(610), }, [442] = { - [aux_sym_concatenation_repeat1] = STATE(731), - [sym__concat] = ACTIONS(1444), - [anon_sym_SEMI_SEMI] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(390), - [sym_raw_string] = ACTIONS(390), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(390), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), - [anon_sym_BQUOTE] = ACTIONS(390), - [anon_sym_LT_LPAREN] = ACTIONS(390), - [anon_sym_GT_LPAREN] = ACTIONS(390), - [sym_word] = ACTIONS(390), + [sym_concatenation] = STATE(441), + [sym_string] = STATE(433), + [sym_simple_expansion] = STATE(433), + [sym_expansion] = STATE(433), + [sym_command_substitution] = STATE(433), + [sym_process_substitution] = STATE(433), + [aux_sym_for_statement_repeat1] = STATE(718), + [sym_word] = ACTIONS(788), + [anon_sym_SEMI_SEMI] = ACTIONS(1386), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_raw_string] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1394), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1398), + [anon_sym_LT_LPAREN] = ACTIONS(1400), + [anon_sym_GT_LPAREN] = ACTIONS(1400), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(390), - [anon_sym_LF] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(390), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym_LF] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), }, [443] = { - [sym_special_variable_name] = STATE(734), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_DOLLAR] = ACTIONS(1446), - [anon_sym_POUND] = ACTIONS(1446), - [anon_sym_AT] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1404), + [anon_sym_RPAREN] = ACTIONS(1404), + [anon_sym_SEMI_SEMI] = ACTIONS(1404), + [anon_sym_PIPE_AMP] = ACTIONS(1404), + [anon_sym_AMP_AMP] = ACTIONS(1404), + [anon_sym_PIPE_PIPE] = ACTIONS(1404), [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_0] = ACTIONS(1450), - [anon_sym__] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym_LF] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), }, [444] = { - [sym_special_variable_name] = STATE(737), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(1452), - [anon_sym_AT] = ACTIONS(62), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), + [sym_file_descriptor] = ACTIONS(224), + [sym_word] = ACTIONS(224), + [sym_variable_name] = ACTIONS(224), + [anon_sym_for] = ACTIONS(226), + [anon_sym_while] = ACTIONS(226), + [anon_sym_done] = ACTIONS(226), + [anon_sym_if] = ACTIONS(226), + [anon_sym_case] = ACTIONS(226), + [anon_sym_function] = ACTIONS(226), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LBRACK] = ACTIONS(226), + [anon_sym_LBRACK_LBRACK] = ACTIONS(224), + [anon_sym_declare] = ACTIONS(226), + [anon_sym_typeset] = ACTIONS(226), + [anon_sym_export] = ACTIONS(226), + [anon_sym_readonly] = ACTIONS(226), + [anon_sym_local] = ACTIONS(226), + [anon_sym_LT] = ACTIONS(226), + [anon_sym_GT] = ACTIONS(226), + [anon_sym_GT_GT] = ACTIONS(224), + [anon_sym_AMP_GT] = ACTIONS(226), + [anon_sym_AMP_GT_GT] = ACTIONS(224), + [anon_sym_LT_AMP] = ACTIONS(224), + [anon_sym_GT_AMP] = ACTIONS(224), + [anon_sym_DQUOTE] = ACTIONS(224), + [sym_raw_string] = ACTIONS(224), + [anon_sym_DOLLAR] = ACTIONS(226), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(224), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(224), + [anon_sym_GT_LPAREN] = ACTIONS(224), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(228), }, [445] = { - [sym_for_statement] = STATE(738), - [sym_while_statement] = STATE(738), - [sym_if_statement] = STATE(738), - [sym_case_statement] = STATE(738), - [sym_function_definition] = STATE(738), - [sym_subshell] = STATE(738), - [sym_pipeline] = STATE(738), - [sym_list] = STATE(738), - [sym_bracket_command] = STATE(738), - [sym_command] = STATE(738), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(739), - [sym_declaration_command] = STATE(738), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), + [anon_sym_PIPE] = ACTIONS(230), + [anon_sym_SEMI_SEMI] = ACTIONS(1406), + [anon_sym_PIPE_AMP] = ACTIONS(230), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym_LF] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1406), }, [446] = { - [sym_for_statement] = STATE(740), - [sym_while_statement] = STATE(740), - [sym_if_statement] = STATE(740), - [sym_case_statement] = STATE(740), - [sym_function_definition] = STATE(740), - [sym_subshell] = STATE(740), - [sym_pipeline] = STATE(740), - [sym_list] = STATE(740), - [sym_bracket_command] = STATE(740), - [sym_command] = STATE(740), - [sym_command_name] = STATE(140), - [sym_variable_assignment] = STATE(741), - [sym_declaration_command] = STATE(740), - [sym_subscript] = STATE(142), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(137), - [sym_simple_expansion] = STATE(137), - [sym_expansion] = STATE(137), - [sym_command_substitution] = STATE(137), - [sym_process_substitution] = STATE(137), - [aux_sym_command_repeat1] = STATE(143), - [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), + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(230), + [anon_sym_SEMI_SEMI] = ACTIONS(1406), + [anon_sym_PIPE_AMP] = ACTIONS(230), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_GT_GT] = ACTIONS(264), + [anon_sym_AMP_GT] = ACTIONS(264), + [anon_sym_AMP_GT_GT] = ACTIONS(264), + [anon_sym_LT_AMP] = ACTIONS(264), + [anon_sym_GT_AMP] = ACTIONS(264), + [anon_sym_DQUOTE] = ACTIONS(264), + [sym_raw_string] = ACTIONS(264), + [anon_sym_DOLLAR] = ACTIONS(264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(264), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(264), + [anon_sym_BQUOTE] = ACTIONS(264), + [anon_sym_LT_LPAREN] = ACTIONS(264), + [anon_sym_GT_LPAREN] = ACTIONS(264), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(264), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym_LF] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1406), }, [447] = { - [sym_for_statement] = STATE(742), - [sym_while_statement] = STATE(742), - [sym_if_statement] = STATE(742), - [sym_case_statement] = STATE(742), - [sym_function_definition] = STATE(742), - [sym_subshell] = STATE(742), - [sym_pipeline] = STATE(742), - [sym_list] = STATE(742), - [sym_bracket_command] = STATE(742), - [sym_command] = STATE(742), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(743), - [sym_declaration_command] = STATE(742), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), - }, - [448] = { - [anon_sym_SEMI_SEMI] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(390), - [sym_raw_string] = ACTIONS(390), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(390), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), - [anon_sym_BQUOTE] = ACTIONS(390), - [anon_sym_LT_LPAREN] = ACTIONS(390), - [anon_sym_GT_LPAREN] = ACTIONS(390), - [sym_word] = ACTIONS(390), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(390), - [anon_sym_LF] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(390), - }, - [449] = { - [sym_concatenation] = STATE(448), - [sym_string] = STATE(442), - [sym_simple_expansion] = STATE(442), - [sym_expansion] = STATE(442), - [sym_command_substitution] = STATE(442), - [sym_process_substitution] = STATE(442), - [aux_sym_for_statement_repeat1] = STATE(745), - [anon_sym_SEMI_SEMI] = ACTIONS(1456), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_raw_string] = ACTIONS(1460), - [anon_sym_DOLLAR] = ACTIONS(1462), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1464), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1468), - [anon_sym_LT_LPAREN] = ACTIONS(1470), - [anon_sym_GT_LPAREN] = ACTIONS(1470), - [sym_word] = ACTIONS(1460), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - }, - [450] = { - [sym_concatenation] = STATE(448), - [sym_string] = STATE(442), - [sym_simple_expansion] = STATE(442), - [sym_expansion] = STATE(442), - [sym_command_substitution] = STATE(442), - [sym_process_substitution] = STATE(442), - [aux_sym_for_statement_repeat1] = STATE(745), - [anon_sym_SEMI_SEMI] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_raw_string] = ACTIONS(1460), - [anon_sym_DOLLAR] = ACTIONS(1462), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1464), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1468), - [anon_sym_LT_LPAREN] = ACTIONS(1470), - [anon_sym_GT_LPAREN] = ACTIONS(1470), - [sym_word] = ACTIONS(1460), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_LF] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1472), - }, - [451] = { - [anon_sym_PIPE] = ACTIONS(1474), - [anon_sym_RPAREN] = ACTIONS(1474), - [anon_sym_SEMI_SEMI] = ACTIONS(1474), - [anon_sym_PIPE_AMP] = ACTIONS(1474), - [anon_sym_AMP_AMP] = ACTIONS(1474), - [anon_sym_PIPE_PIPE] = ACTIONS(1474), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym_LF] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - }, - [452] = { - [sym_file_descriptor] = ACTIONS(232), - [sym_variable_name] = ACTIONS(232), - [anon_sym_for] = ACTIONS(234), - [anon_sym_while] = ACTIONS(234), - [anon_sym_done] = ACTIONS(234), - [anon_sym_if] = ACTIONS(234), - [anon_sym_case] = ACTIONS(234), - [anon_sym_function] = ACTIONS(234), - [anon_sym_LPAREN] = ACTIONS(232), - [anon_sym_LBRACK] = ACTIONS(234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(234), - [anon_sym_declare] = ACTIONS(234), - [anon_sym_typeset] = ACTIONS(234), - [anon_sym_export] = ACTIONS(234), - [anon_sym_readonly] = ACTIONS(234), - [anon_sym_local] = ACTIONS(234), - [anon_sym_LT] = ACTIONS(234), - [anon_sym_GT] = ACTIONS(234), - [anon_sym_GT_GT] = ACTIONS(232), - [anon_sym_AMP_GT] = ACTIONS(234), - [anon_sym_AMP_GT_GT] = ACTIONS(232), - [anon_sym_LT_AMP] = ACTIONS(232), - [anon_sym_GT_AMP] = ACTIONS(232), - [anon_sym_DQUOTE] = ACTIONS(232), - [sym_raw_string] = ACTIONS(232), - [anon_sym_DOLLAR] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(232), - [anon_sym_BQUOTE] = ACTIONS(232), - [anon_sym_LT_LPAREN] = ACTIONS(232), - [anon_sym_GT_LPAREN] = ACTIONS(232), - [sym_word] = ACTIONS(236), - [sym_comment] = ACTIONS(52), - }, - [453] = { - [anon_sym_PIPE] = ACTIONS(238), - [anon_sym_SEMI_SEMI] = ACTIONS(1476), - [anon_sym_PIPE_AMP] = ACTIONS(238), - [anon_sym_AMP_AMP] = ACTIONS(242), - [anon_sym_PIPE_PIPE] = ACTIONS(242), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_LF] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1476), - }, - [454] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(238), - [anon_sym_SEMI_SEMI] = ACTIONS(1476), - [anon_sym_PIPE_AMP] = ACTIONS(238), - [anon_sym_AMP_AMP] = ACTIONS(242), - [anon_sym_PIPE_PIPE] = ACTIONS(242), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_AMP_GT] = ACTIONS(268), - [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(268), - [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(268), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_LF] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1476), - }, - [455] = { - [sym__terminated_statement] = STATE(452), - [sym_for_statement] = STATE(453), - [sym_while_statement] = STATE(453), - [sym_if_statement] = STATE(453), - [sym_case_statement] = STATE(453), - [sym_function_definition] = STATE(453), - [sym_subshell] = STATE(453), - [sym_pipeline] = STATE(453), - [sym_list] = STATE(453), - [sym_bracket_command] = STATE(453), - [sym_command] = STATE(453), + [sym__terminated_statement] = STATE(444), + [sym_for_statement] = STATE(445), + [sym_while_statement] = STATE(445), + [sym_if_statement] = STATE(445), + [sym_case_statement] = STATE(445), + [sym_function_definition] = STATE(445), + [sym_subshell] = STATE(445), + [sym_pipeline] = STATE(445), + [sym_list] = STATE(445), + [sym_bracket_command] = STATE(445), + [sym_command] = STATE(445), [sym_command_name] = STATE(25), - [sym_variable_assignment] = STATE(454), - [sym_declaration_command] = STATE(453), + [sym_variable_assignment] = STATE(446), + [sym_declaration_command] = STATE(445), [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(749), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(721), [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(1478), - [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), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_done] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), [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), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), }, - [456] = { - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_RPAREN] = ACTIONS(1480), - [anon_sym_SEMI_SEMI] = ACTIONS(1480), - [anon_sym_PIPE_AMP] = ACTIONS(1480), - [anon_sym_AMP_AMP] = ACTIONS(1480), - [anon_sym_PIPE_PIPE] = ACTIONS(1480), + [448] = { + [anon_sym_PIPE] = ACTIONS(1410), + [anon_sym_RPAREN] = ACTIONS(1410), + [anon_sym_SEMI_SEMI] = ACTIONS(1410), + [anon_sym_PIPE_AMP] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1410), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_LF] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_LF] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), }, - [457] = { - [sym__terminated_statement] = STATE(750), + [449] = { + [sym__terminated_statement] = STATE(722), [sym_for_statement] = STATE(40), [sym_while_statement] = STATE(40), [sym_if_statement] = STATE(40), @@ -17254,438 +16342,484 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), [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), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), [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), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), + }, + [450] = { + [sym__terminated_statement] = STATE(723), + [sym_for_statement] = STATE(724), + [sym_while_statement] = STATE(724), + [sym_if_statement] = STATE(724), + [sym_case_statement] = STATE(724), + [sym_function_definition] = STATE(724), + [sym_subshell] = STATE(724), + [sym_pipeline] = STATE(724), + [sym_list] = STATE(724), + [sym_bracket_command] = STATE(724), + [sym_command] = STATE(724), + [sym_command_name] = STATE(25), + [sym_variable_assignment] = STATE(725), + [sym_declaration_command] = STATE(724), + [sym_subscript] = STATE(27), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(726), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_fi] = ACTIONS(1412), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), + }, + [451] = { + [sym_file_descriptor] = ACTIONS(224), + [sym_word] = ACTIONS(224), + [sym_variable_name] = ACTIONS(224), + [anon_sym_for] = ACTIONS(226), + [anon_sym_while] = ACTIONS(226), + [anon_sym_if] = ACTIONS(226), + [anon_sym_fi] = ACTIONS(226), + [anon_sym_elif] = ACTIONS(226), + [anon_sym_else] = ACTIONS(226), + [anon_sym_case] = ACTIONS(226), + [anon_sym_function] = ACTIONS(226), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LBRACK] = ACTIONS(226), + [anon_sym_LBRACK_LBRACK] = ACTIONS(224), + [anon_sym_declare] = ACTIONS(226), + [anon_sym_typeset] = ACTIONS(226), + [anon_sym_export] = ACTIONS(226), + [anon_sym_readonly] = ACTIONS(226), + [anon_sym_local] = ACTIONS(226), + [anon_sym_LT] = ACTIONS(226), + [anon_sym_GT] = ACTIONS(226), + [anon_sym_GT_GT] = ACTIONS(224), + [anon_sym_AMP_GT] = ACTIONS(226), + [anon_sym_AMP_GT_GT] = ACTIONS(224), + [anon_sym_LT_AMP] = ACTIONS(224), + [anon_sym_GT_AMP] = ACTIONS(224), + [anon_sym_DQUOTE] = ACTIONS(224), + [sym_raw_string] = ACTIONS(224), + [anon_sym_DOLLAR] = ACTIONS(226), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(224), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(224), + [anon_sym_GT_LPAREN] = ACTIONS(224), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(228), + }, + [452] = { + [anon_sym_PIPE] = ACTIONS(230), + [anon_sym_SEMI_SEMI] = ACTIONS(1414), + [anon_sym_PIPE_AMP] = ACTIONS(230), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym_LF] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + }, + [453] = { + [anon_sym_fi] = ACTIONS(1416), + [anon_sym_elif] = ACTIONS(1416), + [anon_sym_else] = ACTIONS(1416), + [sym_comment] = ACTIONS(50), + }, + [454] = { + [anon_sym_fi] = ACTIONS(1418), + [sym_comment] = ACTIONS(50), + }, + [455] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(230), + [anon_sym_SEMI_SEMI] = ACTIONS(1414), + [anon_sym_PIPE_AMP] = ACTIONS(230), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_GT_GT] = ACTIONS(264), + [anon_sym_AMP_GT] = ACTIONS(264), + [anon_sym_AMP_GT_GT] = ACTIONS(264), + [anon_sym_LT_AMP] = ACTIONS(264), + [anon_sym_GT_AMP] = ACTIONS(264), + [anon_sym_DQUOTE] = ACTIONS(264), + [sym_raw_string] = ACTIONS(264), + [anon_sym_DOLLAR] = ACTIONS(264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(264), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(264), + [anon_sym_BQUOTE] = ACTIONS(264), + [anon_sym_LT_LPAREN] = ACTIONS(264), + [anon_sym_GT_LPAREN] = ACTIONS(264), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(264), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym_LF] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + }, + [456] = { + [sym__terminated_statement] = STATE(451), + [sym_for_statement] = STATE(452), + [sym_while_statement] = STATE(452), + [sym_if_statement] = STATE(452), + [sym_elif_clause] = STATE(453), + [sym_else_clause] = STATE(729), + [sym_case_statement] = STATE(452), + [sym_function_definition] = STATE(452), + [sym_subshell] = STATE(452), + [sym_pipeline] = STATE(452), + [sym_list] = STATE(452), + [sym_bracket_command] = STATE(452), + [sym_command] = STATE(452), + [sym_command_name] = STATE(25), + [sym_variable_assignment] = STATE(455), + [sym_declaration_command] = STATE(452), + [sym_subscript] = STATE(27), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(730), + [aux_sym_if_statement_repeat1] = STATE(731), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_fi] = ACTIONS(1420), + [anon_sym_elif] = ACTIONS(810), + [anon_sym_else] = ACTIONS(812), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), + }, + [457] = { + [sym_elif_clause] = STATE(453), + [sym_else_clause] = STATE(729), + [aux_sym_if_statement_repeat1] = STATE(732), + [anon_sym_fi] = ACTIONS(1418), + [anon_sym_elif] = ACTIONS(1422), + [anon_sym_else] = ACTIONS(1424), + [sym_comment] = ACTIONS(50), }, [458] = { - [sym__terminated_statement] = STATE(751), - [sym_for_statement] = STATE(752), - [sym_while_statement] = STATE(752), - [sym_if_statement] = STATE(752), - [sym_case_statement] = STATE(752), - [sym_function_definition] = STATE(752), - [sym_subshell] = STATE(752), - [sym_pipeline] = STATE(752), - [sym_list] = STATE(752), - [sym_bracket_command] = STATE(752), - [sym_command] = STATE(752), - [sym_command_name] = STATE(25), - [sym_variable_assignment] = STATE(753), - [sym_declaration_command] = STATE(752), - [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(754), - [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(1482), - [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), + [sym__concat] = ACTIONS(731), + [anon_sym_in] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(733), + [anon_sym_AMP] = ACTIONS(733), }, [459] = { - [sym_file_descriptor] = ACTIONS(232), - [sym_variable_name] = ACTIONS(232), - [anon_sym_for] = ACTIONS(234), - [anon_sym_while] = ACTIONS(234), - [anon_sym_if] = ACTIONS(234), - [anon_sym_fi] = ACTIONS(234), - [anon_sym_elif] = ACTIONS(234), - [anon_sym_else] = ACTIONS(234), - [anon_sym_case] = ACTIONS(234), - [anon_sym_function] = ACTIONS(234), - [anon_sym_LPAREN] = ACTIONS(232), - [anon_sym_LBRACK] = ACTIONS(234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(234), - [anon_sym_declare] = ACTIONS(234), - [anon_sym_typeset] = ACTIONS(234), - [anon_sym_export] = ACTIONS(234), - [anon_sym_readonly] = ACTIONS(234), - [anon_sym_local] = ACTIONS(234), - [anon_sym_LT] = ACTIONS(234), - [anon_sym_GT] = ACTIONS(234), - [anon_sym_GT_GT] = ACTIONS(232), - [anon_sym_AMP_GT] = ACTIONS(234), - [anon_sym_AMP_GT_GT] = ACTIONS(232), - [anon_sym_LT_AMP] = ACTIONS(232), - [anon_sym_GT_AMP] = ACTIONS(232), - [anon_sym_DQUOTE] = ACTIONS(232), - [sym_raw_string] = ACTIONS(232), - [anon_sym_DOLLAR] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(232), - [anon_sym_BQUOTE] = ACTIONS(232), - [anon_sym_LT_LPAREN] = ACTIONS(232), - [anon_sym_GT_LPAREN] = ACTIONS(232), - [sym_word] = ACTIONS(236), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(735), + [anon_sym_in] = ACTIONS(737), + [anon_sym_SEMI_SEMI] = ACTIONS(737), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(737), + [anon_sym_AMP] = ACTIONS(737), }, [460] = { - [anon_sym_PIPE] = ACTIONS(238), - [anon_sym_SEMI_SEMI] = ACTIONS(1484), - [anon_sym_PIPE_AMP] = ACTIONS(238), - [anon_sym_AMP_AMP] = ACTIONS(242), - [anon_sym_PIPE_PIPE] = ACTIONS(242), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_LF] = ACTIONS(1484), - [anon_sym_AMP] = ACTIONS(1484), + [sym_case_item] = STATE(736), + [sym_concatenation] = STATE(737), + [sym_string] = STATE(733), + [sym_simple_expansion] = STATE(733), + [sym_expansion] = STATE(733), + [sym_command_substitution] = STATE(733), + [sym_process_substitution] = STATE(733), + [aux_sym_case_statement_repeat1] = STATE(738), + [sym_word] = ACTIONS(1426), + [anon_sym_esac] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1430), }, [461] = { - [anon_sym_fi] = ACTIONS(1486), - [anon_sym_elif] = ACTIONS(1486), - [anon_sym_else] = ACTIONS(1486), - [sym_comment] = ACTIONS(52), + [anon_sym_SEMI_SEMI] = ACTIONS(1432), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym_LF] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), }, [462] = { - [anon_sym_fi] = ACTIONS(1488), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(462), + [sym__concat] = ACTIONS(1434), + [anon_sym_in] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(733), + [anon_sym_AMP] = ACTIONS(733), }, [463] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(238), - [anon_sym_SEMI_SEMI] = ACTIONS(1484), - [anon_sym_PIPE_AMP] = ACTIONS(238), - [anon_sym_AMP_AMP] = ACTIONS(242), - [anon_sym_PIPE_PIPE] = ACTIONS(242), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_AMP_GT] = ACTIONS(268), - [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(268), - [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(268), + [sym__concat] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1039), + [anon_sym_SEMI_SEMI] = ACTIONS(1039), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_LF] = ACTIONS(1484), - [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_AMP] = ACTIONS(1039), }, [464] = { - [sym__terminated_statement] = STATE(459), - [sym_for_statement] = STATE(460), - [sym_while_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_elif_clause] = STATE(461), - [sym_else_clause] = STATE(757), - [sym_case_statement] = STATE(460), - [sym_function_definition] = STATE(460), - [sym_subshell] = STATE(460), - [sym_pipeline] = STATE(460), - [sym_list] = STATE(460), - [sym_bracket_command] = STATE(460), - [sym_command] = STATE(460), - [sym_command_name] = STATE(25), - [sym_variable_assignment] = STATE(463), - [sym_declaration_command] = STATE(460), - [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(758), - [aux_sym_if_statement_repeat1] = STATE(759), - [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(1490), - [anon_sym_elif] = ACTIONS(803), - [anon_sym_else] = ACTIONS(805), - [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), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1439), + [sym_comment] = ACTIONS(50), }, [465] = { - [sym_elif_clause] = STATE(461), - [sym_else_clause] = STATE(757), - [aux_sym_if_statement_repeat1] = STATE(760), - [anon_sym_fi] = ACTIONS(1488), - [anon_sym_elif] = ACTIONS(1492), - [anon_sym_else] = ACTIONS(1494), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1443), + [sym_comment] = ACTIONS(50), }, [466] = { - [sym__concat] = ACTIONS(1080), - [anon_sym_in] = ACTIONS(1082), - [anon_sym_SEMI_SEMI] = ACTIONS(1082), + [sym__concat] = ACTIONS(1066), + [anon_sym_in] = ACTIONS(1068), + [anon_sym_SEMI_SEMI] = ACTIONS(1068), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_LF] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_LF] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1068), }, [467] = { - [sym__concat] = ACTIONS(1101), - [anon_sym_in] = ACTIONS(1103), - [anon_sym_SEMI_SEMI] = ACTIONS(1103), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_LF] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_AT] = ACTIONS(1445), + [sym_comment] = ACTIONS(50), }, [468] = { - [sym_case_item] = STATE(763), - [sym_concatenation] = STATE(764), - [sym_string] = STATE(762), - [sym_simple_expansion] = STATE(762), - [sym_expansion] = STATE(762), - [sym_command_substitution] = STATE(762), - [sym_process_substitution] = STATE(762), - [aux_sym_case_statement_repeat1] = STATE(765), - [anon_sym_esac] = ACTIONS(1496), - [anon_sym_DQUOTE] = ACTIONS(282), - [sym_raw_string] = ACTIONS(1498), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_word] = ACTIONS(1500), - [sym_comment] = ACTIONS(52), + [sym_concatenation] = STATE(748), + [sym_string] = STATE(745), + [sym_simple_expansion] = STATE(745), + [sym_expansion] = STATE(745), + [sym_command_substitution] = STATE(745), + [sym_process_substitution] = STATE(745), + [sym_word] = ACTIONS(1447), + [anon_sym_RBRACE] = ACTIONS(1449), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1447), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1451), }, [469] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1502), + [sym__concat] = ACTIONS(1078), + [anon_sym_in] = ACTIONS(1080), + [anon_sym_SEMI_SEMI] = ACTIONS(1080), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_LF] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_LF] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), }, [470] = { - [aux_sym_concatenation_repeat1] = STATE(470), - [sym__concat] = ACTIONS(1504), - [anon_sym_in] = ACTIONS(1103), - [anon_sym_SEMI_SEMI] = ACTIONS(1103), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_LF] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_AT] = ACTIONS(1453), + [sym_comment] = ACTIONS(50), }, [471] = { - [anon_sym_RBRACE] = ACTIONS(1507), - [anon_sym_LBRACK] = ACTIONS(1509), - [sym_comment] = ACTIONS(52), + [sym_concatenation] = STATE(752), + [sym_string] = STATE(750), + [sym_simple_expansion] = STATE(750), + [sym_expansion] = STATE(750), + [sym_command_substitution] = STATE(750), + [sym_process_substitution] = STATE(750), + [sym_word] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1455), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1457), }, [472] = { - [anon_sym_RBRACE] = ACTIONS(1511), - [anon_sym_LBRACK] = ACTIONS(1513), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(1162), + [anon_sym_in] = ACTIONS(1164), + [anon_sym_SEMI_SEMI] = ACTIONS(1164), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym_LF] = ACTIONS(1164), + [anon_sym_AMP] = ACTIONS(1164), }, [473] = { - [sym__concat] = ACTIONS(1116), - [anon_sym_in] = ACTIONS(1118), - [anon_sym_SEMI_SEMI] = ACTIONS(1118), + [sym__concat] = ACTIONS(1214), + [anon_sym_in] = ACTIONS(1216), + [anon_sym_SEMI_SEMI] = ACTIONS(1216), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_LF] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym_LF] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(1216), }, [474] = { - [anon_sym_AT] = ACTIONS(1515), - [sym_comment] = ACTIONS(52), + [sym_case_item] = STATE(736), + [sym_concatenation] = STATE(737), + [sym_string] = STATE(733), + [sym_simple_expansion] = STATE(733), + [sym_expansion] = STATE(733), + [sym_command_substitution] = STATE(733), + [sym_process_substitution] = STATE(733), + [aux_sym_case_statement_repeat1] = STATE(754), + [sym_word] = ACTIONS(1426), + [anon_sym_esac] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1430), }, [475] = { - [sym_concatenation] = STATE(774), - [sym_string] = STATE(773), - [sym_simple_expansion] = STATE(773), - [sym_expansion] = STATE(773), - [sym_command_substitution] = STATE(773), - [sym_process_substitution] = STATE(773), - [anon_sym_RBRACE] = ACTIONS(1517), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(1519), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(1521), - [sym_comment] = ACTIONS(52), + [anon_sym_SEMI_SEMI] = ACTIONS(1461), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1461), + [anon_sym_LF] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(1461), }, [476] = { - [sym__concat] = ACTIONS(1128), - [anon_sym_in] = ACTIONS(1130), - [anon_sym_SEMI_SEMI] = ACTIONS(1130), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1130), - [anon_sym_LF] = ACTIONS(1130), - [anon_sym_AMP] = ACTIONS(1130), + [sym_compound_statement] = STATE(756), + [anon_sym_LBRACE] = ACTIONS(358), + [sym_comment] = ACTIONS(50), }, [477] = { - [anon_sym_AT] = ACTIONS(1523), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(1463), + [anon_sym_PIPE] = ACTIONS(1465), + [anon_sym_RPAREN] = ACTIONS(1465), + [anon_sym_SEMI_SEMI] = ACTIONS(1465), + [anon_sym_PIPE_AMP] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1465), + [anon_sym_PIPE_PIPE] = ACTIONS(1465), + [anon_sym_LT] = ACTIONS(1465), + [anon_sym_GT] = ACTIONS(1465), + [anon_sym_GT_GT] = ACTIONS(1465), + [anon_sym_AMP_GT] = ACTIONS(1465), + [anon_sym_AMP_GT_GT] = ACTIONS(1465), + [anon_sym_LT_AMP] = ACTIONS(1465), + [anon_sym_GT_AMP] = ACTIONS(1465), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1465), + [anon_sym_LF] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(1465), }, [478] = { - [sym_concatenation] = STATE(777), - [sym_string] = STATE(776), - [sym_simple_expansion] = STATE(776), - [sym_expansion] = STATE(776), - [sym_command_substitution] = STATE(776), - [sym_process_substitution] = STATE(776), - [anon_sym_RBRACE] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(1525), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(1527), - [sym_comment] = ACTIONS(52), - }, - [479] = { - [sym__concat] = ACTIONS(1222), - [anon_sym_in] = ACTIONS(1224), - [anon_sym_SEMI_SEMI] = ACTIONS(1224), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym_LF] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - }, - [480] = { - [sym__concat] = ACTIONS(1274), - [anon_sym_in] = ACTIONS(1276), - [anon_sym_SEMI_SEMI] = ACTIONS(1276), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_LF] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - }, - [481] = { - [sym_compound_statement] = STATE(778), - [anon_sym_LBRACE] = ACTIONS(356), - [sym_comment] = ACTIONS(52), - }, - [482] = { - [sym_file_descriptor] = ACTIONS(1529), - [anon_sym_PIPE] = ACTIONS(1531), - [anon_sym_RPAREN] = ACTIONS(1531), - [anon_sym_SEMI_SEMI] = ACTIONS(1531), - [anon_sym_PIPE_AMP] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_PIPE_PIPE] = ACTIONS(1531), - [anon_sym_LT] = ACTIONS(1531), - [anon_sym_GT] = ACTIONS(1531), - [anon_sym_GT_GT] = ACTIONS(1531), - [anon_sym_AMP_GT] = ACTIONS(1531), - [anon_sym_AMP_GT_GT] = ACTIONS(1531), - [anon_sym_LT_AMP] = ACTIONS(1531), - [anon_sym_GT_AMP] = ACTIONS(1531), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_LF] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1531), - }, - [483] = { [sym__terminated_statement] = STATE(23), [sym_for_statement] = STATE(24), [sym_while_statement] = STATE(24), @@ -17703,5372 +16837,1924 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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(780), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(758), [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(1533), - [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), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_RBRACE] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), [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), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), + }, + [479] = { + [anon_sym_LT] = ACTIONS(1469), + [anon_sym_GT] = ACTIONS(1469), + [anon_sym_GT_GT] = ACTIONS(1471), + [anon_sym_AMP_GT] = ACTIONS(1469), + [anon_sym_AMP_GT_GT] = ACTIONS(1471), + [anon_sym_LT_AMP] = ACTIONS(1471), + [anon_sym_GT_AMP] = ACTIONS(1471), + [sym_comment] = ACTIONS(50), + }, + [480] = { + [sym_concatenation] = STATE(768), + [sym_string] = STATE(760), + [sym_simple_expansion] = STATE(760), + [sym_expansion] = STATE(760), + [sym_command_substitution] = STATE(760), + [sym_process_substitution] = STATE(760), + [sym_word] = ACTIONS(1473), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym_raw_string] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(1477), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1479), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1481), + [anon_sym_BQUOTE] = ACTIONS(1483), + [anon_sym_LT_LPAREN] = ACTIONS(1485), + [anon_sym_GT_LPAREN] = ACTIONS(1485), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1487), + }, + [481] = { + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_RPAREN] = ACTIONS(1489), + [anon_sym_SEMI_SEMI] = ACTIONS(1489), + [anon_sym_PIPE_AMP] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1489), + [anon_sym_PIPE_PIPE] = ACTIONS(1489), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1489), + [anon_sym_LF] = ACTIONS(1489), + [anon_sym_AMP] = ACTIONS(1489), + }, + [482] = { + [aux_sym_concatenation_repeat1] = STATE(482), + [sym_file_descriptor] = ACTIONS(731), + [sym_word] = ACTIONS(731), + [sym__concat] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(733), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(733), + [anon_sym_LT_AMP] = ACTIONS(733), + [anon_sym_GT_AMP] = ACTIONS(733), + [anon_sym_LT_LT] = ACTIONS(733), + [anon_sym_LT_LT_DASH] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [sym_raw_string] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(733), + [anon_sym_AMP] = ACTIONS(733), + }, + [483] = { + [aux_sym_concatenation_repeat1] = STATE(769), + [sym_file_descriptor] = ACTIONS(760), + [sym_word] = ACTIONS(760), + [sym__concat] = ACTIONS(762), + [sym_variable_name] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(764), + [anon_sym_SEMI_SEMI] = ACTIONS(764), + [anon_sym_PIPE_AMP] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(764), + [anon_sym_PIPE_PIPE] = ACTIONS(764), + [anon_sym_LT] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(764), + [anon_sym_GT_GT] = ACTIONS(764), + [anon_sym_AMP_GT] = ACTIONS(764), + [anon_sym_AMP_GT_GT] = ACTIONS(764), + [anon_sym_LT_AMP] = ACTIONS(764), + [anon_sym_GT_AMP] = ACTIONS(764), + [anon_sym_DQUOTE] = ACTIONS(764), + [sym_raw_string] = ACTIONS(764), + [anon_sym_DOLLAR] = ACTIONS(764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(764), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(764), + [anon_sym_LT_LPAREN] = ACTIONS(764), + [anon_sym_GT_LPAREN] = ACTIONS(764), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(764), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LF] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(764), }, [484] = { - [anon_sym_LT] = ACTIONS(1535), - [anon_sym_GT] = ACTIONS(1535), - [anon_sym_GT_GT] = ACTIONS(1537), - [anon_sym_AMP_GT] = ACTIONS(1535), - [anon_sym_AMP_GT_GT] = ACTIONS(1537), - [anon_sym_LT_AMP] = ACTIONS(1537), - [anon_sym_GT_AMP] = ACTIONS(1537), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(770), + [sym_file_descriptor] = ACTIONS(784), + [sym_word] = ACTIONS(784), + [sym__concat] = ACTIONS(762), + [sym_variable_name] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(786), + [anon_sym_RPAREN] = ACTIONS(786), + [anon_sym_SEMI_SEMI] = ACTIONS(786), + [anon_sym_PIPE_AMP] = ACTIONS(786), + [anon_sym_AMP_AMP] = ACTIONS(786), + [anon_sym_PIPE_PIPE] = ACTIONS(786), + [anon_sym_LT] = ACTIONS(786), + [anon_sym_GT] = ACTIONS(786), + [anon_sym_GT_GT] = ACTIONS(786), + [anon_sym_AMP_GT] = ACTIONS(786), + [anon_sym_AMP_GT_GT] = ACTIONS(786), + [anon_sym_LT_AMP] = ACTIONS(786), + [anon_sym_GT_AMP] = ACTIONS(786), + [anon_sym_DQUOTE] = ACTIONS(786), + [sym_raw_string] = ACTIONS(786), + [anon_sym_DOLLAR] = ACTIONS(786), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(786), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(786), + [anon_sym_BQUOTE] = ACTIONS(786), + [anon_sym_LT_LPAREN] = ACTIONS(786), + [anon_sym_GT_LPAREN] = ACTIONS(786), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(786), + [anon_sym_SEMI] = ACTIONS(786), + [anon_sym_LF] = ACTIONS(786), + [anon_sym_AMP] = ACTIONS(786), }, [485] = { - [sym_concatenation] = STATE(789), - [sym_string] = STATE(783), - [sym_simple_expansion] = STATE(783), - [sym_expansion] = STATE(783), - [sym_command_substitution] = STATE(783), - [sym_process_substitution] = STATE(783), - [anon_sym_DQUOTE] = ACTIONS(1539), - [sym_raw_string] = ACTIONS(1541), - [anon_sym_DOLLAR] = ACTIONS(1543), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1547), - [anon_sym_BQUOTE] = ACTIONS(1549), - [anon_sym_LT_LPAREN] = ACTIONS(1551), - [anon_sym_GT_LPAREN] = ACTIONS(1551), - [sym_word] = ACTIONS(1553), - [sym_comment] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(1491), + [sym_comment] = ACTIONS(50), }, [486] = { - [anon_sym_PIPE] = ACTIONS(1555), - [anon_sym_RPAREN] = ACTIONS(1555), - [anon_sym_SEMI_SEMI] = ACTIONS(1555), - [anon_sym_PIPE_AMP] = ACTIONS(1555), - [anon_sym_AMP_AMP] = ACTIONS(1555), - [anon_sym_PIPE_PIPE] = ACTIONS(1555), + [sym_file_redirect] = STATE(481), + [sym_file_descriptor] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(856), + [anon_sym_RPAREN] = ACTIONS(856), + [anon_sym_SEMI_SEMI] = ACTIONS(856), + [anon_sym_PIPE_AMP] = ACTIONS(856), + [anon_sym_AMP_AMP] = ACTIONS(856), + [anon_sym_PIPE_PIPE] = ACTIONS(856), + [anon_sym_LT] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1495), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_AMP_GT] = ACTIONS(1495), + [anon_sym_AMP_GT_GT] = ACTIONS(1495), + [anon_sym_LT_AMP] = ACTIONS(1495), + [anon_sym_GT_AMP] = ACTIONS(1495), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1555), - [anon_sym_LF] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_SEMI] = ACTIONS(856), + [anon_sym_LF] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(856), }, [487] = { - [aux_sym_concatenation_repeat1] = STATE(790), - [sym_file_descriptor] = ACTIONS(745), - [sym__concat] = ACTIONS(769), - [sym_variable_name] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_SEMI_SEMI] = ACTIONS(747), - [anon_sym_PIPE_AMP] = ACTIONS(747), - [anon_sym_AMP_AMP] = ACTIONS(747), - [anon_sym_PIPE_PIPE] = ACTIONS(747), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_GT] = ACTIONS(747), - [anon_sym_AMP_GT] = ACTIONS(747), - [anon_sym_AMP_GT_GT] = ACTIONS(747), - [anon_sym_LT_AMP] = ACTIONS(747), - [anon_sym_GT_AMP] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(747), - [sym_raw_string] = ACTIONS(747), - [anon_sym_DOLLAR] = ACTIONS(747), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(747), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(747), - [anon_sym_BQUOTE] = ACTIONS(747), - [anon_sym_LT_LPAREN] = ACTIONS(747), - [anon_sym_GT_LPAREN] = ACTIONS(747), - [sym_word] = ACTIONS(747), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_LF] = ACTIONS(747), - [anon_sym_AMP] = ACTIONS(747), + [sym_concatenation] = STATE(517), + [sym_string] = STATE(774), + [sym_array] = STATE(517), + [sym_simple_expansion] = STATE(774), + [sym_expansion] = STATE(774), + [sym_command_substitution] = STATE(774), + [sym_process_substitution] = STATE(774), + [sym_word] = ACTIONS(1497), + [sym__empty_value] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym_raw_string] = ACTIONS(1497), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(968), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(970), + [anon_sym_BQUOTE] = ACTIONS(972), + [anon_sym_LT_LPAREN] = ACTIONS(974), + [anon_sym_GT_LPAREN] = ACTIONS(974), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1499), }, [488] = { - [anon_sym_RPAREN] = ACTIONS(1557), - [sym_comment] = ACTIONS(52), + [sym_variable_assignment] = STATE(77), + [sym_subscript] = STATE(219), + [aux_sym_declaration_command_repeat1] = STATE(488), + [sym_word] = ACTIONS(978), + [sym_variable_name] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_SEMI_SEMI] = ACTIONS(984), + [anon_sym_PIPE_AMP] = ACTIONS(984), + [anon_sym_AMP_AMP] = ACTIONS(984), + [anon_sym_PIPE_PIPE] = ACTIONS(984), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_LF] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(984), }, [489] = { - [sym_file_redirect] = STATE(486), - [sym_file_descriptor] = ACTIONS(1559), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_SEMI_SEMI] = ACTIONS(845), - [anon_sym_PIPE_AMP] = ACTIONS(845), - [anon_sym_AMP_AMP] = ACTIONS(845), - [anon_sym_PIPE_PIPE] = ACTIONS(845), - [anon_sym_LT] = ACTIONS(1561), - [anon_sym_GT] = ACTIONS(1561), - [anon_sym_GT_GT] = ACTIONS(1561), - [anon_sym_AMP_GT] = ACTIONS(1561), - [anon_sym_AMP_GT_GT] = ACTIONS(1561), - [anon_sym_LT_AMP] = ACTIONS(1561), - [anon_sym_GT_AMP] = ACTIONS(1561), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(845), - [anon_sym_LF] = ACTIONS(845), - [anon_sym_AMP] = ACTIONS(845), + [sym_compound_statement] = STATE(776), + [anon_sym_LBRACE] = ACTIONS(358), + [sym_comment] = ACTIONS(50), }, [490] = { - [sym_concatenation] = STATE(532), - [sym_string] = STATE(794), - [sym_array] = STATE(532), - [sym_simple_expansion] = STATE(794), - [sym_expansion] = STATE(794), - [sym_command_substitution] = STATE(794), - [sym_process_substitution] = STATE(794), - [sym__empty_value] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(993), - [anon_sym_DQUOTE] = ACTIONS(995), - [sym_raw_string] = ACTIONS(1563), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1001), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1003), - [anon_sym_BQUOTE] = ACTIONS(1005), - [anon_sym_LT_LPAREN] = ACTIONS(1007), - [anon_sym_GT_LPAREN] = ACTIONS(1007), - [sym_word] = ACTIONS(1565), - [sym_comment] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_RPAREN] = ACTIONS(1504), + [anon_sym_SEMI_SEMI] = ACTIONS(1504), + [anon_sym_PIPE_AMP] = ACTIONS(1504), + [anon_sym_AMP_AMP] = ACTIONS(1504), + [anon_sym_PIPE_PIPE] = ACTIONS(1504), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_LF] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), }, [491] = { - [aux_sym_declaration_command_repeat1] = STATE(491), - [sym_variable_name] = ACTIONS(1015), - [anon_sym_PIPE] = ACTIONS(1017), - [anon_sym_RPAREN] = ACTIONS(1017), - [anon_sym_SEMI_SEMI] = ACTIONS(1017), - [anon_sym_PIPE_AMP] = ACTIONS(1017), - [anon_sym_AMP_AMP] = ACTIONS(1017), - [anon_sym_PIPE_PIPE] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_PIPE] = ACTIONS(368), + [anon_sym_RPAREN] = ACTIONS(1220), + [anon_sym_SEMI_SEMI] = ACTIONS(1220), + [anon_sym_PIPE_AMP] = ACTIONS(368), + [anon_sym_AMP_AMP] = ACTIONS(1220), + [anon_sym_PIPE_PIPE] = ACTIONS(1220), [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1017), - [anon_sym_SEMI] = ACTIONS(1017), - [anon_sym_LF] = ACTIONS(1017), - [anon_sym_AMP] = ACTIONS(1017), + [anon_sym_SEMI] = ACTIONS(1220), + [anon_sym_LF] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1220), }, [492] = { - [sym_variable_assignment] = STATE(83), - [sym_subscript] = STATE(212), - [aux_sym_declaration_command_repeat2] = STATE(493), - [sym_variable_name] = ACTIONS(362), - [anon_sym_PIPE] = ACTIONS(1022), - [anon_sym_RPAREN] = ACTIONS(1022), - [anon_sym_SEMI_SEMI] = ACTIONS(1022), - [anon_sym_PIPE_AMP] = ACTIONS(1022), - [anon_sym_AMP_AMP] = ACTIONS(1022), - [anon_sym_PIPE_PIPE] = ACTIONS(1022), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(136), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_LF] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1022), - }, - [493] = { - [sym_variable_assignment] = STATE(83), - [sym_subscript] = STATE(212), - [aux_sym_declaration_command_repeat2] = STATE(493), - [sym_variable_name] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(1027), - [anon_sym_SEMI_SEMI] = ACTIONS(1027), - [anon_sym_PIPE_AMP] = ACTIONS(1027), - [anon_sym_AMP_AMP] = ACTIONS(1027), - [anon_sym_PIPE_PIPE] = ACTIONS(1027), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LF] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(1027), - }, - [494] = { - [aux_sym_concatenation_repeat1] = STATE(494), - [sym_file_descriptor] = ACTIONS(1101), - [sym__concat] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1103), - [anon_sym_SEMI_SEMI] = ACTIONS(1103), - [anon_sym_PIPE_AMP] = ACTIONS(1103), - [anon_sym_AMP_AMP] = ACTIONS(1103), - [anon_sym_PIPE_PIPE] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1103), - [anon_sym_GT] = ACTIONS(1103), - [anon_sym_GT_GT] = ACTIONS(1103), - [anon_sym_AMP_GT] = ACTIONS(1103), - [anon_sym_AMP_GT_GT] = ACTIONS(1103), - [anon_sym_LT_AMP] = ACTIONS(1103), - [anon_sym_GT_AMP] = ACTIONS(1103), - [anon_sym_LT_LT] = ACTIONS(1103), - [anon_sym_LT_LT_DASH] = ACTIONS(1103), - [anon_sym_DQUOTE] = ACTIONS(1103), - [sym_raw_string] = ACTIONS(1103), - [anon_sym_DOLLAR] = ACTIONS(1103), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1103), - [anon_sym_BQUOTE] = ACTIONS(1103), - [anon_sym_LT_LPAREN] = ACTIONS(1103), - [anon_sym_GT_LPAREN] = ACTIONS(1103), - [sym_word] = ACTIONS(1103), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_LF] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1103), - }, - [495] = { - [sym_compound_statement] = STATE(795), - [anon_sym_LBRACE] = ACTIONS(356), - [sym_comment] = ACTIONS(52), - }, - [496] = { - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_RPAREN] = ACTIONS(1570), - [anon_sym_SEMI_SEMI] = ACTIONS(1570), - [anon_sym_PIPE_AMP] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1570), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1570), - [anon_sym_LF] = ACTIONS(1570), - [anon_sym_AMP] = ACTIONS(1570), - }, - [497] = { - [anon_sym_PIPE] = ACTIONS(366), - [anon_sym_RPAREN] = ACTIONS(1280), - [anon_sym_SEMI_SEMI] = ACTIONS(1280), - [anon_sym_PIPE_AMP] = ACTIONS(366), - [anon_sym_AMP_AMP] = ACTIONS(1280), - [anon_sym_PIPE_PIPE] = ACTIONS(1280), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym_LF] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1280), - }, - [498] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(366), - [anon_sym_RPAREN] = ACTIONS(1280), - [anon_sym_SEMI_SEMI] = ACTIONS(1280), - [anon_sym_PIPE_AMP] = ACTIONS(366), - [anon_sym_AMP_AMP] = ACTIONS(1280), - [anon_sym_PIPE_PIPE] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_AMP_GT] = ACTIONS(268), - [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(268), - [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(268), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym_LF] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1280), - }, - [499] = { - [sym_concatenation] = STATE(658), - [sym_string] = STATE(796), - [sym_simple_expansion] = STATE(796), - [sym_expansion] = STATE(796), - [sym_command_substitution] = STATE(796), - [sym_process_substitution] = STATE(796), - [anon_sym_DQUOTE] = ACTIONS(616), - [sym_raw_string] = ACTIONS(1572), - [anon_sym_DOLLAR] = ACTIONS(620), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(622), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), - [anon_sym_BQUOTE] = ACTIONS(626), - [anon_sym_LT_LPAREN] = ACTIONS(628), - [anon_sym_GT_LPAREN] = ACTIONS(628), - [sym_word] = ACTIONS(1574), - [sym_comment] = ACTIONS(52), - }, - [500] = { - [aux_sym_concatenation_repeat1] = STATE(797), - [sym_file_descriptor] = ACTIONS(434), - [sym__concat] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_RPAREN] = ACTIONS(1290), - [anon_sym_SEMI_SEMI] = ACTIONS(1290), - [anon_sym_PIPE_AMP] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_GT_GT] = ACTIONS(1290), - [anon_sym_AMP_GT] = ACTIONS(1290), - [anon_sym_AMP_GT_GT] = ACTIONS(1290), - [anon_sym_LT_AMP] = ACTIONS(1290), - [anon_sym_GT_AMP] = ACTIONS(1290), - [anon_sym_LT_LT] = ACTIONS(1290), - [anon_sym_LT_LT_DASH] = ACTIONS(1290), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - }, - [501] = { - [sym_concatenation] = STATE(155), - [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(501), - [sym_file_descriptor] = ACTIONS(1318), - [anon_sym_PIPE] = ACTIONS(1320), - [anon_sym_RPAREN] = ACTIONS(1320), - [anon_sym_SEMI_SEMI] = ACTIONS(1320), - [anon_sym_PIPE_AMP] = ACTIONS(1320), - [anon_sym_AMP_AMP] = ACTIONS(1320), - [anon_sym_PIPE_PIPE] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_GT_GT] = ACTIONS(1320), - [anon_sym_AMP_GT] = ACTIONS(1320), - [anon_sym_AMP_GT_GT] = ACTIONS(1320), - [anon_sym_LT_AMP] = ACTIONS(1320), - [anon_sym_GT_AMP] = ACTIONS(1320), - [anon_sym_LT_LT] = ACTIONS(1320), - [anon_sym_LT_LT_DASH] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_raw_string] = ACTIONS(1576), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1331), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1334), - [anon_sym_BQUOTE] = ACTIONS(1337), - [anon_sym_LT_LPAREN] = ACTIONS(1340), - [anon_sym_GT_LPAREN] = ACTIONS(1340), - [sym_word] = ACTIONS(1576), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym_LF] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - }, - [502] = { - [sym_file_redirect] = STATE(154), - [sym_heredoc_redirect] = STATE(154), - [aux_sym_command_repeat2] = STATE(503), - [sym_file_descriptor] = ACTIONS(374), - [anon_sym_PIPE] = ACTIONS(1343), - [anon_sym_RPAREN] = ACTIONS(1343), - [anon_sym_SEMI_SEMI] = ACTIONS(1343), - [anon_sym_PIPE_AMP] = ACTIONS(1343), - [anon_sym_AMP_AMP] = ACTIONS(1343), - [anon_sym_PIPE_PIPE] = ACTIONS(1343), - [anon_sym_LT] = ACTIONS(376), - [anon_sym_GT] = ACTIONS(376), - [anon_sym_GT_GT] = ACTIONS(376), - [anon_sym_AMP_GT] = ACTIONS(376), - [anon_sym_AMP_GT_GT] = ACTIONS(376), - [anon_sym_LT_AMP] = ACTIONS(376), - [anon_sym_GT_AMP] = ACTIONS(376), - [anon_sym_LT_LT] = ACTIONS(250), - [anon_sym_LT_LT_DASH] = ACTIONS(250), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_LF] = ACTIONS(1343), - [anon_sym_AMP] = ACTIONS(1343), - }, - [503] = { - [sym_file_redirect] = STATE(154), - [sym_heredoc_redirect] = STATE(154), - [aux_sym_command_repeat2] = STATE(503), - [sym_file_descriptor] = ACTIONS(1579), - [anon_sym_PIPE] = ACTIONS(1348), - [anon_sym_RPAREN] = ACTIONS(1348), - [anon_sym_SEMI_SEMI] = ACTIONS(1348), - [anon_sym_PIPE_AMP] = ACTIONS(1348), - [anon_sym_AMP_AMP] = ACTIONS(1348), - [anon_sym_PIPE_PIPE] = ACTIONS(1348), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_GT_GT] = ACTIONS(1582), - [anon_sym_AMP_GT] = ACTIONS(1582), - [anon_sym_AMP_GT_GT] = ACTIONS(1582), - [anon_sym_LT_AMP] = ACTIONS(1582), - [anon_sym_GT_AMP] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1353), - [anon_sym_LT_LT_DASH] = ACTIONS(1353), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym_LF] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - }, - [504] = { - [sym_file_descriptor] = ACTIONS(606), - [sym_variable_name] = ACTIONS(606), - [anon_sym_for] = ACTIONS(608), - [anon_sym_while] = ACTIONS(608), - [anon_sym_if] = ACTIONS(608), - [anon_sym_case] = ACTIONS(608), - [anon_sym_RPAREN] = ACTIONS(1585), - [anon_sym_function] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(606), - [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_LBRACK_LBRACK] = ACTIONS(608), - [anon_sym_declare] = ACTIONS(608), - [anon_sym_typeset] = ACTIONS(608), - [anon_sym_export] = ACTIONS(608), - [anon_sym_readonly] = ACTIONS(608), - [anon_sym_local] = ACTIONS(608), - [anon_sym_LT] = ACTIONS(608), - [anon_sym_GT] = ACTIONS(608), - [anon_sym_GT_GT] = ACTIONS(606), - [anon_sym_AMP_GT] = ACTIONS(608), - [anon_sym_AMP_GT_GT] = ACTIONS(606), - [anon_sym_LT_AMP] = ACTIONS(606), - [anon_sym_GT_AMP] = ACTIONS(606), - [anon_sym_DQUOTE] = ACTIONS(606), - [sym_raw_string] = ACTIONS(606), - [anon_sym_DOLLAR] = ACTIONS(608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(606), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), - [anon_sym_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(606), - [anon_sym_GT_LPAREN] = ACTIONS(606), - [sym_word] = ACTIONS(610), - [sym_comment] = ACTIONS(52), - }, - [505] = { - [sym_file_redirect] = STATE(154), - [sym_heredoc_redirect] = STATE(154), - [sym_concatenation] = STATE(155), - [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(501), - [aux_sym_command_repeat2] = STATE(799), - [sym_file_descriptor] = ACTIONS(374), - [anon_sym_PIPE] = ACTIONS(1343), - [anon_sym_RPAREN] = ACTIONS(1343), - [anon_sym_SEMI_SEMI] = ACTIONS(1343), - [anon_sym_PIPE_AMP] = ACTIONS(1343), - [anon_sym_AMP_AMP] = ACTIONS(1343), - [anon_sym_PIPE_PIPE] = ACTIONS(1343), - [anon_sym_LT] = ACTIONS(376), - [anon_sym_GT] = ACTIONS(376), - [anon_sym_GT_GT] = ACTIONS(376), - [anon_sym_AMP_GT] = ACTIONS(376), - [anon_sym_AMP_GT_GT] = ACTIONS(376), - [anon_sym_LT_AMP] = ACTIONS(376), - [anon_sym_GT_AMP] = ACTIONS(376), - [anon_sym_LT_LT] = ACTIONS(250), - [anon_sym_LT_LT_DASH] = ACTIONS(250), - [anon_sym_DQUOTE] = ACTIONS(252), - [sym_raw_string] = ACTIONS(378), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(260), - [anon_sym_BQUOTE] = ACTIONS(262), + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(368), + [anon_sym_RPAREN] = ACTIONS(1220), + [anon_sym_SEMI_SEMI] = ACTIONS(1220), + [anon_sym_PIPE_AMP] = ACTIONS(368), + [anon_sym_AMP_AMP] = ACTIONS(1220), + [anon_sym_PIPE_PIPE] = ACTIONS(1220), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_GT_GT] = ACTIONS(264), + [anon_sym_AMP_GT] = ACTIONS(264), + [anon_sym_AMP_GT_GT] = ACTIONS(264), + [anon_sym_LT_AMP] = ACTIONS(264), + [anon_sym_GT_AMP] = ACTIONS(264), + [anon_sym_DQUOTE] = ACTIONS(264), + [sym_raw_string] = ACTIONS(264), + [anon_sym_DOLLAR] = ACTIONS(264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(264), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(264), + [anon_sym_BQUOTE] = ACTIONS(264), [anon_sym_LT_LPAREN] = ACTIONS(264), [anon_sym_GT_LPAREN] = ACTIONS(264), - [sym_word] = ACTIONS(378), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_LF] = ACTIONS(1343), - [anon_sym_AMP] = ACTIONS(1343), + [sym_identifier] = ACTIONS(264), + [anon_sym_SEMI] = ACTIONS(1220), + [anon_sym_LF] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1220), + }, + [493] = { + [sym_concatenation] = STATE(642), + [sym_string] = STATE(777), + [sym_simple_expansion] = STATE(777), + [sym_expansion] = STATE(777), + [sym_command_substitution] = STATE(777), + [sym_process_substitution] = STATE(777), + [sym_word] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(614), + [sym_raw_string] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(616), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(618), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(620), + [anon_sym_BQUOTE] = ACTIONS(622), + [anon_sym_LT_LPAREN] = ACTIONS(624), + [anon_sym_GT_LPAREN] = ACTIONS(624), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1508), + }, + [494] = { + [aux_sym_concatenation_repeat1] = STATE(779), + [sym_file_descriptor] = ACTIONS(424), + [sym__concat] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1228), + [anon_sym_RPAREN] = ACTIONS(1228), + [anon_sym_SEMI_SEMI] = ACTIONS(1228), + [anon_sym_PIPE_AMP] = ACTIONS(1228), + [anon_sym_AMP_AMP] = ACTIONS(1228), + [anon_sym_PIPE_PIPE] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1228), + [anon_sym_GT_GT] = ACTIONS(1228), + [anon_sym_AMP_GT] = ACTIONS(1228), + [anon_sym_AMP_GT_GT] = ACTIONS(1228), + [anon_sym_LT_AMP] = ACTIONS(1228), + [anon_sym_GT_AMP] = ACTIONS(1228), + [anon_sym_LT_LT] = ACTIONS(1228), + [anon_sym_LT_LT_DASH] = ACTIONS(1228), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1228), + [anon_sym_LF] = ACTIONS(1228), + [anon_sym_AMP] = ACTIONS(1228), + }, + [495] = { + [aux_sym_concatenation_repeat1] = STATE(780), + [sym_file_descriptor] = ACTIONS(442), + [sym__concat] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_RPAREN] = ACTIONS(1242), + [anon_sym_SEMI_SEMI] = ACTIONS(1242), + [anon_sym_PIPE_AMP] = ACTIONS(1242), + [anon_sym_AMP_AMP] = ACTIONS(1242), + [anon_sym_PIPE_PIPE] = ACTIONS(1242), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_GT] = ACTIONS(1242), + [anon_sym_GT_GT] = ACTIONS(1242), + [anon_sym_AMP_GT] = ACTIONS(1242), + [anon_sym_AMP_GT_GT] = ACTIONS(1242), + [anon_sym_LT_AMP] = ACTIONS(1242), + [anon_sym_GT_AMP] = ACTIONS(1242), + [anon_sym_LT_LT] = ACTIONS(1242), + [anon_sym_LT_LT_DASH] = ACTIONS(1242), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_LF] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + }, + [496] = { + [sym_concatenation] = STATE(152), + [sym_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym_for_statement_repeat1] = STATE(496), + [sym_file_descriptor] = ACTIONS(929), + [sym_word] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_RPAREN] = ACTIONS(1263), + [anon_sym_SEMI_SEMI] = ACTIONS(1263), + [anon_sym_PIPE_AMP] = ACTIONS(1263), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_GT_GT] = ACTIONS(1263), + [anon_sym_AMP_GT] = ACTIONS(1263), + [anon_sym_AMP_GT_GT] = ACTIONS(1263), + [anon_sym_LT_AMP] = ACTIONS(1263), + [anon_sym_GT_AMP] = ACTIONS(1263), + [anon_sym_LT_LT] = ACTIONS(1263), + [anon_sym_LT_LT_DASH] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym_raw_string] = ACTIONS(1513), + [anon_sym_DOLLAR] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1277), + [anon_sym_BQUOTE] = ACTIONS(1280), + [anon_sym_LT_LPAREN] = ACTIONS(1283), + [anon_sym_GT_LPAREN] = ACTIONS(1283), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_LF] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1263), + }, + [497] = { + [sym_file_redirect] = STATE(151), + [sym_heredoc_redirect] = STATE(151), + [aux_sym_command_repeat2] = STATE(498), + [sym_file_descriptor] = ACTIONS(376), + [anon_sym_PIPE] = ACTIONS(1289), + [anon_sym_RPAREN] = ACTIONS(1289), + [anon_sym_SEMI_SEMI] = ACTIONS(1289), + [anon_sym_PIPE_AMP] = ACTIONS(1289), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [anon_sym_PIPE_PIPE] = ACTIONS(1289), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(380), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(380), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [anon_sym_LT_LT] = ACTIONS(244), + [anon_sym_LT_LT_DASH] = ACTIONS(244), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym_LF] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), + }, + [498] = { + [sym_file_redirect] = STATE(151), + [sym_heredoc_redirect] = STATE(151), + [aux_sym_command_repeat2] = STATE(498), + [sym_file_descriptor] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1294), + [anon_sym_RPAREN] = ACTIONS(1294), + [anon_sym_SEMI_SEMI] = ACTIONS(1294), + [anon_sym_PIPE_AMP] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1522), + [anon_sym_GT] = ACTIONS(1522), + [anon_sym_GT_GT] = ACTIONS(1522), + [anon_sym_AMP_GT] = ACTIONS(1522), + [anon_sym_AMP_GT_GT] = ACTIONS(1522), + [anon_sym_LT_AMP] = ACTIONS(1522), + [anon_sym_GT_AMP] = ACTIONS(1522), + [anon_sym_LT_LT] = ACTIONS(1299), + [anon_sym_LT_LT_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_LF] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + }, + [499] = { + [sym_file_descriptor] = ACTIONS(600), + [sym_word] = ACTIONS(600), + [sym_variable_name] = ACTIONS(600), + [anon_sym_for] = ACTIONS(602), + [anon_sym_while] = ACTIONS(602), + [anon_sym_if] = ACTIONS(602), + [anon_sym_case] = ACTIONS(602), + [anon_sym_RPAREN] = ACTIONS(1525), + [anon_sym_function] = ACTIONS(602), + [anon_sym_LPAREN] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(602), + [anon_sym_typeset] = ACTIONS(602), + [anon_sym_export] = ACTIONS(602), + [anon_sym_readonly] = ACTIONS(602), + [anon_sym_local] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_GT_GT] = ACTIONS(600), + [anon_sym_AMP_GT] = ACTIONS(602), + [anon_sym_AMP_GT_GT] = ACTIONS(600), + [anon_sym_LT_AMP] = ACTIONS(600), + [anon_sym_GT_AMP] = ACTIONS(600), + [anon_sym_DQUOTE] = ACTIONS(600), + [sym_raw_string] = ACTIONS(600), + [anon_sym_DOLLAR] = ACTIONS(602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(600), + [anon_sym_LT_LPAREN] = ACTIONS(600), + [anon_sym_GT_LPAREN] = ACTIONS(600), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(604), + }, + [500] = { + [sym_file_redirect] = STATE(151), + [sym_heredoc_redirect] = STATE(151), + [sym_concatenation] = STATE(152), + [sym_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym_for_statement_repeat1] = STATE(496), + [aux_sym_command_repeat2] = STATE(782), + [sym_file_descriptor] = ACTIONS(376), + [sym_word] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1289), + [anon_sym_RPAREN] = ACTIONS(1289), + [anon_sym_SEMI_SEMI] = ACTIONS(1289), + [anon_sym_PIPE_AMP] = ACTIONS(1289), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [anon_sym_PIPE_PIPE] = ACTIONS(1289), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(380), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(380), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [anon_sym_LT_LT] = ACTIONS(244), + [anon_sym_LT_LT_DASH] = ACTIONS(244), + [anon_sym_DQUOTE] = ACTIONS(246), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(250), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), + [anon_sym_BQUOTE] = ACTIONS(256), + [anon_sym_LT_LPAREN] = ACTIONS(258), + [anon_sym_GT_LPAREN] = ACTIONS(258), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym_LF] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), + }, + [501] = { + [sym_word] = ACTIONS(731), + [sym__concat] = ACTIONS(731), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_RBRACK] = ACTIONS(1527), + [anon_sym_RBRACK_RBRACK] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(1527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1527), + }, + [502] = { + [sym_word] = ACTIONS(735), + [sym__concat] = ACTIONS(735), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_RBRACK] = ACTIONS(1529), + [anon_sym_RBRACK_RBRACK] = ACTIONS(735), + [anon_sym_DQUOTE] = ACTIONS(735), + [sym_raw_string] = ACTIONS(735), + [anon_sym_DOLLAR] = ACTIONS(1529), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1529), + }, + [503] = { + [aux_sym_concatenation_repeat1] = STATE(503), + [sym_word] = ACTIONS(731), + [sym__concat] = ACTIONS(1531), + [anon_sym_RBRACK] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(1527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1527), + }, + [504] = { + [sym_word] = ACTIONS(1037), + [sym__concat] = ACTIONS(1037), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_RBRACK] = ACTIONS(1534), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym_raw_string] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1534), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), + [anon_sym_BQUOTE] = ACTIONS(1037), + [anon_sym_LT_LPAREN] = ACTIONS(1037), + [anon_sym_GT_LPAREN] = ACTIONS(1037), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1534), + }, + [505] = { + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1538), + [sym_comment] = ACTIONS(50), }, [506] = { - [sym__concat] = ACTIONS(1080), - [anon_sym_RBRACE] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1080), - [sym_raw_string] = ACTIONS(1080), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1080), - [anon_sym_BQUOTE] = ACTIONS(1080), - [anon_sym_LT_LPAREN] = ACTIONS(1080), - [anon_sym_GT_LPAREN] = ACTIONS(1080), - [sym_word] = ACTIONS(1082), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [sym_comment] = ACTIONS(50), }, [507] = { - [sym__concat] = ACTIONS(1101), - [anon_sym_RBRACE] = ACTIONS(1101), - [anon_sym_RBRACK] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1101), - [sym_raw_string] = ACTIONS(1101), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1101), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), - [anon_sym_BQUOTE] = ACTIONS(1101), - [anon_sym_LT_LPAREN] = ACTIONS(1101), - [anon_sym_GT_LPAREN] = ACTIONS(1101), - [sym_word] = ACTIONS(1103), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(1066), + [sym__concat] = ACTIONS(1066), + [anon_sym_RPAREN] = ACTIONS(1066), + [anon_sym_RBRACK] = ACTIONS(1544), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_raw_string] = ACTIONS(1066), + [anon_sym_DOLLAR] = ACTIONS(1544), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1066), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1066), + [anon_sym_BQUOTE] = ACTIONS(1066), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1544), }, [508] = { - [aux_sym_concatenation_repeat1] = STATE(508), - [sym__concat] = ACTIONS(1591), - [anon_sym_RBRACK] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1101), - [sym_raw_string] = ACTIONS(1101), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1101), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), - [anon_sym_BQUOTE] = ACTIONS(1101), - [anon_sym_LT_LPAREN] = ACTIONS(1101), - [anon_sym_GT_LPAREN] = ACTIONS(1101), - [sym_word] = ACTIONS(1103), - [sym_comment] = ACTIONS(52), + [anon_sym_AT] = ACTIONS(1546), + [sym_comment] = ACTIONS(50), }, [509] = { - [anon_sym_RBRACE] = ACTIONS(1594), - [anon_sym_LBRACK] = ACTIONS(1596), - [sym_comment] = ACTIONS(52), + [sym_concatenation] = STATE(791), + [sym_string] = STATE(788), + [sym_simple_expansion] = STATE(788), + [sym_expansion] = STATE(788), + [sym_command_substitution] = STATE(788), + [sym_process_substitution] = STATE(788), + [sym_word] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(1550), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1552), }, [510] = { - [anon_sym_RBRACE] = ACTIONS(1598), - [anon_sym_LBRACK] = ACTIONS(1600), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(1078), + [sym__concat] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_RBRACK] = ACTIONS(1554), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym_raw_string] = ACTIONS(1078), + [anon_sym_DOLLAR] = ACTIONS(1554), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1078), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1078), + [anon_sym_BQUOTE] = ACTIONS(1078), + [anon_sym_LT_LPAREN] = ACTIONS(1078), + [anon_sym_GT_LPAREN] = ACTIONS(1078), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1554), }, [511] = { - [sym__concat] = ACTIONS(1116), - [anon_sym_RBRACE] = ACTIONS(1116), - [anon_sym_RBRACK] = ACTIONS(1602), - [anon_sym_DQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1116), - [anon_sym_DOLLAR] = ACTIONS(1602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1116), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1116), - [anon_sym_BQUOTE] = ACTIONS(1116), - [anon_sym_LT_LPAREN] = ACTIONS(1116), - [anon_sym_GT_LPAREN] = ACTIONS(1116), - [sym_word] = ACTIONS(1118), - [sym_comment] = ACTIONS(52), + [anon_sym_AT] = ACTIONS(1556), + [sym_comment] = ACTIONS(50), }, [512] = { - [anon_sym_AT] = ACTIONS(1604), - [sym_comment] = ACTIONS(52), + [sym_concatenation] = STATE(795), + [sym_string] = STATE(793), + [sym_simple_expansion] = STATE(793), + [sym_expansion] = STATE(793), + [sym_command_substitution] = STATE(793), + [sym_process_substitution] = STATE(793), + [sym_word] = ACTIONS(1558), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1558), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1560), }, [513] = { - [sym_concatenation] = STATE(807), - [sym_string] = STATE(806), - [sym_simple_expansion] = STATE(806), - [sym_expansion] = STATE(806), - [sym_command_substitution] = STATE(806), - [sym_process_substitution] = STATE(806), - [anon_sym_RBRACE] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(1610), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(1162), + [sym__concat] = ACTIONS(1162), + [anon_sym_RPAREN] = ACTIONS(1162), + [anon_sym_RBRACK] = ACTIONS(1562), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1162), + [anon_sym_DQUOTE] = ACTIONS(1162), + [sym_raw_string] = ACTIONS(1162), + [anon_sym_DOLLAR] = ACTIONS(1562), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1162), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1162), + [anon_sym_BQUOTE] = ACTIONS(1162), + [anon_sym_LT_LPAREN] = ACTIONS(1162), + [anon_sym_GT_LPAREN] = ACTIONS(1162), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1562), }, [514] = { - [sym__concat] = ACTIONS(1128), - [anon_sym_RBRACE] = ACTIONS(1128), - [anon_sym_RBRACK] = ACTIONS(1612), - [anon_sym_DQUOTE] = ACTIONS(1128), - [sym_raw_string] = ACTIONS(1128), - [anon_sym_DOLLAR] = ACTIONS(1612), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1128), - [anon_sym_LT_LPAREN] = ACTIONS(1128), - [anon_sym_GT_LPAREN] = ACTIONS(1128), - [sym_word] = ACTIONS(1130), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(1214), + [sym__concat] = ACTIONS(1214), + [anon_sym_RPAREN] = ACTIONS(1214), + [anon_sym_RBRACK] = ACTIONS(1564), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1214), + [anon_sym_DQUOTE] = ACTIONS(1214), + [sym_raw_string] = ACTIONS(1214), + [anon_sym_DOLLAR] = ACTIONS(1564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1214), + [anon_sym_BQUOTE] = ACTIONS(1214), + [anon_sym_LT_LPAREN] = ACTIONS(1214), + [anon_sym_GT_LPAREN] = ACTIONS(1214), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1564), }, [515] = { - [anon_sym_AT] = ACTIONS(1614), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(515), + [sym_word] = ACTIONS(731), + [sym__concat] = ACTIONS(1531), + [anon_sym_RBRACK_RBRACK] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(1527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1527), }, [516] = { - [sym_concatenation] = STATE(810), - [sym_string] = STATE(809), - [sym_simple_expansion] = STATE(809), - [sym_expansion] = STATE(809), - [sym_command_substitution] = STATE(809), - [sym_process_substitution] = STATE(809), - [anon_sym_RBRACE] = ACTIONS(1598), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(1616), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(1618), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(797), + [sym_word] = ACTIONS(760), + [sym__concat] = ACTIONS(1566), + [sym_variable_name] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(764), + [anon_sym_SEMI_SEMI] = ACTIONS(764), + [anon_sym_PIPE_AMP] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(764), + [anon_sym_PIPE_PIPE] = ACTIONS(764), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(764), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LF] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(764), }, [517] = { - [sym__concat] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_RBRACK] = ACTIONS(1620), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_raw_string] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1620), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1222), - [anon_sym_BQUOTE] = ACTIONS(1222), - [anon_sym_LT_LPAREN] = ACTIONS(1222), - [anon_sym_GT_LPAREN] = ACTIONS(1222), - [sym_word] = ACTIONS(1224), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(760), + [sym_variable_name] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(764), + [anon_sym_SEMI_SEMI] = ACTIONS(764), + [anon_sym_PIPE_AMP] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(764), + [anon_sym_PIPE_PIPE] = ACTIONS(764), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(764), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LF] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(764), }, [518] = { - [sym__concat] = ACTIONS(1274), - [anon_sym_RBRACE] = ACTIONS(1274), - [anon_sym_RBRACK] = ACTIONS(1622), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_raw_string] = ACTIONS(1274), - [anon_sym_DOLLAR] = ACTIONS(1622), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1274), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1274), - [anon_sym_BQUOTE] = ACTIONS(1274), - [anon_sym_LT_LPAREN] = ACTIONS(1274), - [anon_sym_GT_LPAREN] = ACTIONS(1274), - [sym_word] = ACTIONS(1276), - [sym_comment] = ACTIONS(52), + [sym_concatenation] = STATE(72), + [sym_string] = STATE(414), + [sym_simple_expansion] = STATE(414), + [sym_expansion] = STATE(414), + [sym_command_substitution] = STATE(414), + [sym_process_substitution] = STATE(414), + [aux_sym_for_statement_repeat1] = STATE(799), + [sym_word] = ACTIONS(766), + [anon_sym_RPAREN] = ACTIONS(1568), + [anon_sym_DQUOTE] = ACTIONS(102), + [sym_raw_string] = ACTIONS(766), + [anon_sym_DOLLAR] = ACTIONS(104), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(108), + [anon_sym_BQUOTE] = ACTIONS(110), + [anon_sym_LT_LPAREN] = ACTIONS(112), + [anon_sym_GT_LPAREN] = ACTIONS(112), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(770), }, [519] = { - [sym__concat] = ACTIONS(1080), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1080), - [sym_raw_string] = ACTIONS(1080), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1080), - [anon_sym_BQUOTE] = ACTIONS(1080), - [anon_sym_LT_LPAREN] = ACTIONS(1080), - [anon_sym_GT_LPAREN] = ACTIONS(1080), - [sym_word] = ACTIONS(1082), - [sym_comment] = ACTIONS(52), + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(801), + [anon_sym_DQUOTE] = ACTIONS(1570), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_comment] = ACTIONS(64), }, [520] = { - [sym__concat] = ACTIONS(1101), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1101), - [sym_raw_string] = ACTIONS(1101), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1101), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), - [anon_sym_BQUOTE] = ACTIONS(1101), - [anon_sym_LT_LPAREN] = ACTIONS(1101), - [anon_sym_GT_LPAREN] = ACTIONS(1101), - [sym_word] = ACTIONS(1103), - [sym_comment] = ACTIONS(52), + [sym_special_variable_name] = STATE(804), + [anon_sym_DOLLAR] = ACTIONS(1572), + [anon_sym_POUND] = ACTIONS(1572), + [anon_sym_AT] = ACTIONS(1572), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1574), + [anon_sym_STAR] = ACTIONS(1572), + [anon_sym_QMARK] = ACTIONS(1572), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_0] = ACTIONS(1576), + [anon_sym__] = ACTIONS(1576), }, [521] = { - [aux_sym_concatenation_repeat1] = STATE(521), - [sym__concat] = ACTIONS(1624), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1101), - [sym_raw_string] = ACTIONS(1101), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1101), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), - [anon_sym_BQUOTE] = ACTIONS(1101), - [anon_sym_LT_LPAREN] = ACTIONS(1101), - [anon_sym_GT_LPAREN] = ACTIONS(1101), - [sym_word] = ACTIONS(1103), - [sym_comment] = ACTIONS(52), + [sym_special_variable_name] = STATE(807), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(1578), + [anon_sym_AT] = ACTIONS(162), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), }, [522] = { - [anon_sym_RBRACE] = ACTIONS(1627), - [anon_sym_LBRACK] = ACTIONS(1629), - [sym_comment] = ACTIONS(52), + [sym_for_statement] = STATE(808), + [sym_while_statement] = STATE(808), + [sym_if_statement] = STATE(808), + [sym_case_statement] = STATE(808), + [sym_function_definition] = STATE(808), + [sym_subshell] = STATE(808), + [sym_pipeline] = STATE(808), + [sym_list] = STATE(808), + [sym_bracket_command] = STATE(808), + [sym_command] = STATE(808), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(809), + [sym_declaration_command] = STATE(808), + [sym_subscript] = STATE(126), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), }, [523] = { - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [sym_comment] = ACTIONS(52), + [sym_for_statement] = STATE(810), + [sym_while_statement] = STATE(810), + [sym_if_statement] = STATE(810), + [sym_case_statement] = STATE(810), + [sym_function_definition] = STATE(810), + [sym_subshell] = STATE(810), + [sym_pipeline] = STATE(810), + [sym_list] = STATE(810), + [sym_bracket_command] = STATE(810), + [sym_command] = STATE(810), + [sym_command_name] = STATE(135), + [sym_variable_assignment] = STATE(811), + [sym_declaration_command] = STATE(810), + [sym_subscript] = STATE(137), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(129), + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [sym_process_substitution] = STATE(129), + [aux_sym_command_repeat1] = STATE(138), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(206), + [sym_variable_name] = ACTIONS(208), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(212), + [anon_sym_typeset] = ACTIONS(212), + [anon_sym_export] = ACTIONS(212), + [anon_sym_readonly] = ACTIONS(212), + [anon_sym_local] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(206), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(214), }, [524] = { - [sym__concat] = ACTIONS(1116), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1602), - [anon_sym_DQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1116), - [anon_sym_DOLLAR] = ACTIONS(1602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1116), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1116), - [anon_sym_BQUOTE] = ACTIONS(1116), - [anon_sym_LT_LPAREN] = ACTIONS(1116), - [anon_sym_GT_LPAREN] = ACTIONS(1116), - [sym_word] = ACTIONS(1118), - [sym_comment] = ACTIONS(52), + [sym_for_statement] = STATE(812), + [sym_while_statement] = STATE(812), + [sym_if_statement] = STATE(812), + [sym_case_statement] = STATE(812), + [sym_function_definition] = STATE(812), + [sym_subshell] = STATE(812), + [sym_pipeline] = STATE(812), + [sym_list] = STATE(812), + [sym_bracket_command] = STATE(812), + [sym_command] = STATE(812), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(813), + [sym_declaration_command] = STATE(812), + [sym_subscript] = STATE(126), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), }, [525] = { - [anon_sym_AT] = ACTIONS(1635), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(814), + [sym_word] = ACTIONS(784), + [sym__concat] = ACTIONS(1566), + [sym_variable_name] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(786), + [anon_sym_SEMI_SEMI] = ACTIONS(786), + [anon_sym_PIPE_AMP] = ACTIONS(786), + [anon_sym_AMP_AMP] = ACTIONS(786), + [anon_sym_PIPE_PIPE] = ACTIONS(786), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(786), + [anon_sym_SEMI] = ACTIONS(786), + [anon_sym_LF] = ACTIONS(786), + [anon_sym_AMP] = ACTIONS(786), }, [526] = { - [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(1637), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(1639), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(1641), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(731), + [sym_word] = ACTIONS(731), + [sym__concat] = ACTIONS(731), + [sym_variable_name] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(1527), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(1527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1527), }, [527] = { - [sym__concat] = ACTIONS(1128), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1612), - [anon_sym_DQUOTE] = ACTIONS(1128), - [sym_raw_string] = ACTIONS(1128), - [anon_sym_DOLLAR] = ACTIONS(1612), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1128), - [anon_sym_LT_LPAREN] = ACTIONS(1128), - [anon_sym_GT_LPAREN] = ACTIONS(1128), - [sym_word] = ACTIONS(1130), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(735), + [sym_word] = ACTIONS(735), + [sym__concat] = ACTIONS(735), + [sym_variable_name] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(1529), + [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(1529), + [anon_sym_GT] = ACTIONS(1529), + [anon_sym_GT_GT] = ACTIONS(735), + [anon_sym_AMP_GT] = ACTIONS(1529), + [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(1529), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1529), }, [528] = { - [anon_sym_AT] = ACTIONS(1643), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(528), + [sym_file_descriptor] = ACTIONS(731), + [sym_word] = ACTIONS(731), + [sym__concat] = ACTIONS(1582), + [sym_variable_name] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(1527), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(1527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1527), }, [529] = { - [sym_concatenation] = STATE(821), + [sym_file_descriptor] = ACTIONS(1037), + [sym_word] = ACTIONS(1037), + [sym__concat] = ACTIONS(1037), + [sym_variable_name] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1534), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_PIPE_AMP] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1037), + [anon_sym_PIPE_PIPE] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1534), + [anon_sym_GT] = ACTIONS(1534), + [anon_sym_GT_GT] = ACTIONS(1037), + [anon_sym_AMP_GT] = ACTIONS(1534), + [anon_sym_AMP_GT_GT] = ACTIONS(1037), + [anon_sym_LT_AMP] = ACTIONS(1037), + [anon_sym_GT_AMP] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym_raw_string] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1534), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), + [anon_sym_BQUOTE] = ACTIONS(1037), + [anon_sym_LT_LPAREN] = ACTIONS(1037), + [anon_sym_GT_LPAREN] = ACTIONS(1037), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1534), + }, + [530] = { + [anon_sym_RBRACE] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [sym_comment] = ACTIONS(50), + }, + [531] = { + [anon_sym_RBRACE] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [sym_comment] = ACTIONS(50), + }, + [532] = { + [sym_file_descriptor] = ACTIONS(1066), + [sym_word] = ACTIONS(1066), + [sym__concat] = ACTIONS(1066), + [sym_variable_name] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_RPAREN] = ACTIONS(1066), + [anon_sym_PIPE_AMP] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_GT_GT] = ACTIONS(1066), + [anon_sym_AMP_GT] = ACTIONS(1544), + [anon_sym_AMP_GT_GT] = ACTIONS(1066), + [anon_sym_LT_AMP] = ACTIONS(1066), + [anon_sym_GT_AMP] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_raw_string] = ACTIONS(1066), + [anon_sym_DOLLAR] = ACTIONS(1544), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1066), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1066), + [anon_sym_BQUOTE] = ACTIONS(1066), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1544), + }, + [533] = { + [anon_sym_AT] = ACTIONS(1593), + [sym_comment] = ACTIONS(50), + }, + [534] = { + [sym_concatenation] = STATE(823), [sym_string] = STATE(820), [sym_simple_expansion] = STATE(820), [sym_expansion] = STATE(820), [sym_command_substitution] = STATE(820), [sym_process_substitution] = STATE(820), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(1647), - [sym_comment] = ACTIONS(52), - }, - [530] = { - [sym__concat] = ACTIONS(1222), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1620), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_raw_string] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1620), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1222), - [anon_sym_BQUOTE] = ACTIONS(1222), - [anon_sym_LT_LPAREN] = ACTIONS(1222), - [anon_sym_GT_LPAREN] = ACTIONS(1222), - [sym_word] = ACTIONS(1224), - [sym_comment] = ACTIONS(52), - }, - [531] = { - [sym__concat] = ACTIONS(1274), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1622), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_raw_string] = ACTIONS(1274), - [anon_sym_DOLLAR] = ACTIONS(1622), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1274), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1274), - [anon_sym_BQUOTE] = ACTIONS(1274), - [anon_sym_LT_LPAREN] = ACTIONS(1274), - [anon_sym_GT_LPAREN] = ACTIONS(1274), - [sym_word] = ACTIONS(1276), - [sym_comment] = ACTIONS(52), - }, - [532] = { - [sym_variable_name] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_SEMI_SEMI] = ACTIONS(747), - [anon_sym_PIPE_AMP] = ACTIONS(747), - [anon_sym_AMP_AMP] = ACTIONS(747), - [anon_sym_PIPE_PIPE] = ACTIONS(747), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_LF] = ACTIONS(747), - [anon_sym_AMP] = ACTIONS(747), - }, - [533] = { - [sym_concatenation] = STATE(423), - [sym_string] = STATE(417), - [sym_simple_expansion] = STATE(417), - [sym_expansion] = STATE(417), - [sym_command_substitution] = STATE(417), - [sym_process_substitution] = STATE(417), - [aux_sym_for_statement_repeat1] = STATE(823), - [anon_sym_RPAREN] = ACTIONS(1649), - [anon_sym_DQUOTE] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(755), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(759), - [anon_sym_BQUOTE] = ACTIONS(761), - [anon_sym_LT_LPAREN] = ACTIONS(763), - [anon_sym_GT_LPAREN] = ACTIONS(763), - [sym_word] = ACTIONS(765), - [sym_comment] = ACTIONS(52), - }, - [534] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(825), - [anon_sym_DQUOTE] = ACTIONS(1651), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), + [sym_word] = ACTIONS(1595), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1595), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1599), }, [535] = { - [aux_sym_concatenation_repeat1] = STATE(827), - [sym__concat] = ACTIONS(1653), - [sym_variable_name] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_SEMI_SEMI] = ACTIONS(747), - [anon_sym_PIPE_AMP] = ACTIONS(747), - [anon_sym_AMP_AMP] = ACTIONS(747), - [anon_sym_PIPE_PIPE] = ACTIONS(747), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_LF] = ACTIONS(747), - [anon_sym_AMP] = ACTIONS(747), + [sym_file_descriptor] = ACTIONS(1078), + [sym_word] = ACTIONS(1078), + [sym__concat] = ACTIONS(1078), + [sym_variable_name] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1554), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_PIPE_AMP] = ACTIONS(1078), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_AMP_GT] = ACTIONS(1554), + [anon_sym_AMP_GT_GT] = ACTIONS(1078), + [anon_sym_LT_AMP] = ACTIONS(1078), + [anon_sym_GT_AMP] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym_raw_string] = ACTIONS(1078), + [anon_sym_DOLLAR] = ACTIONS(1554), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1078), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1078), + [anon_sym_BQUOTE] = ACTIONS(1078), + [anon_sym_LT_LPAREN] = ACTIONS(1078), + [anon_sym_GT_LPAREN] = ACTIONS(1078), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1554), }, [536] = { - [sym_special_variable_name] = STATE(830), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_DOLLAR] = ACTIONS(1655), - [anon_sym_POUND] = ACTIONS(1655), - [anon_sym_AT] = ACTIONS(1655), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1657), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1655), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_0] = ACTIONS(1659), - [anon_sym__] = ACTIONS(1659), + [anon_sym_AT] = ACTIONS(1601), + [sym_comment] = ACTIONS(50), }, [537] = { - [sym_special_variable_name] = STATE(833), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(1661), - [anon_sym_AT] = ACTIONS(62), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), + [sym_concatenation] = STATE(827), + [sym_string] = STATE(825), + [sym_simple_expansion] = STATE(825), + [sym_expansion] = STATE(825), + [sym_command_substitution] = STATE(825), + [sym_process_substitution] = STATE(825), + [sym_word] = ACTIONS(1603), + [anon_sym_RBRACE] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1603), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1605), }, [538] = { - [sym_for_statement] = STATE(834), - [sym_while_statement] = STATE(834), - [sym_if_statement] = STATE(834), - [sym_case_statement] = STATE(834), - [sym_function_definition] = STATE(834), - [sym_subshell] = STATE(834), - [sym_pipeline] = STATE(834), - [sym_list] = STATE(834), - [sym_bracket_command] = STATE(834), - [sym_command] = STATE(834), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(835), - [sym_declaration_command] = STATE(834), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), + [sym_file_descriptor] = ACTIONS(1162), + [sym_word] = ACTIONS(1162), + [sym__concat] = ACTIONS(1162), + [sym_variable_name] = ACTIONS(1162), + [anon_sym_PIPE] = ACTIONS(1562), + [anon_sym_RPAREN] = ACTIONS(1162), + [anon_sym_PIPE_AMP] = ACTIONS(1162), + [anon_sym_AMP_AMP] = ACTIONS(1162), + [anon_sym_PIPE_PIPE] = ACTIONS(1162), + [anon_sym_LT] = ACTIONS(1562), + [anon_sym_GT] = ACTIONS(1562), + [anon_sym_GT_GT] = ACTIONS(1162), + [anon_sym_AMP_GT] = ACTIONS(1562), + [anon_sym_AMP_GT_GT] = ACTIONS(1162), + [anon_sym_LT_AMP] = ACTIONS(1162), + [anon_sym_GT_AMP] = ACTIONS(1162), + [anon_sym_DQUOTE] = ACTIONS(1162), + [sym_raw_string] = ACTIONS(1162), + [anon_sym_DOLLAR] = ACTIONS(1562), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1162), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1162), + [anon_sym_BQUOTE] = ACTIONS(1162), + [anon_sym_LT_LPAREN] = ACTIONS(1162), + [anon_sym_GT_LPAREN] = ACTIONS(1162), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1562), }, [539] = { - [sym_for_statement] = STATE(836), - [sym_while_statement] = STATE(836), - [sym_if_statement] = STATE(836), - [sym_case_statement] = STATE(836), - [sym_function_definition] = STATE(836), - [sym_subshell] = STATE(836), - [sym_pipeline] = STATE(836), - [sym_list] = STATE(836), - [sym_bracket_command] = STATE(836), - [sym_command] = STATE(836), - [sym_command_name] = STATE(140), - [sym_variable_assignment] = STATE(837), - [sym_declaration_command] = STATE(836), - [sym_subscript] = STATE(142), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(137), - [sym_simple_expansion] = STATE(137), - [sym_expansion] = STATE(137), - [sym_command_substitution] = STATE(137), - [sym_process_substitution] = STATE(137), - [aux_sym_command_repeat1] = STATE(143), - [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), + [sym_file_descriptor] = ACTIONS(1214), + [sym_word] = ACTIONS(1214), + [sym__concat] = ACTIONS(1214), + [sym_variable_name] = ACTIONS(1214), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_RPAREN] = ACTIONS(1214), + [anon_sym_PIPE_AMP] = ACTIONS(1214), + [anon_sym_AMP_AMP] = ACTIONS(1214), + [anon_sym_PIPE_PIPE] = ACTIONS(1214), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(1564), + [anon_sym_GT_GT] = ACTIONS(1214), + [anon_sym_AMP_GT] = ACTIONS(1564), + [anon_sym_AMP_GT_GT] = ACTIONS(1214), + [anon_sym_LT_AMP] = ACTIONS(1214), + [anon_sym_GT_AMP] = ACTIONS(1214), + [anon_sym_DQUOTE] = ACTIONS(1214), + [sym_raw_string] = ACTIONS(1214), + [anon_sym_DOLLAR] = ACTIONS(1564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1214), + [anon_sym_BQUOTE] = ACTIONS(1214), + [anon_sym_LT_LPAREN] = ACTIONS(1214), + [anon_sym_GT_LPAREN] = ACTIONS(1214), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1564), }, [540] = { - [sym_for_statement] = STATE(838), - [sym_while_statement] = STATE(838), - [sym_if_statement] = STATE(838), - [sym_case_statement] = STATE(838), - [sym_function_definition] = STATE(838), - [sym_subshell] = STATE(838), - [sym_pipeline] = STATE(838), - [sym_list] = STATE(838), - [sym_bracket_command] = STATE(838), - [sym_command] = STATE(838), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(839), - [sym_declaration_command] = STATE(838), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1609), + [sym_comment] = ACTIONS(50), }, [541] = { - [sym_file_descriptor] = ACTIONS(1080), - [sym__concat] = ACTIONS(1080), - [sym_variable_name] = ACTIONS(1080), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_GT] = ACTIONS(1080), - [anon_sym_AMP_GT] = ACTIONS(1587), - [anon_sym_AMP_GT_GT] = ACTIONS(1080), - [anon_sym_LT_AMP] = ACTIONS(1080), - [anon_sym_GT_AMP] = ACTIONS(1080), - [anon_sym_DQUOTE] = ACTIONS(1080), - [sym_raw_string] = ACTIONS(1080), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1080), - [anon_sym_BQUOTE] = ACTIONS(1080), - [anon_sym_LT_LPAREN] = ACTIONS(1080), - [anon_sym_GT_LPAREN] = ACTIONS(1080), - [sym_word] = ACTIONS(1587), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(1611), + [anon_sym_LBRACK] = ACTIONS(1613), + [sym_comment] = ACTIONS(50), }, [542] = { - [sym_file_descriptor] = ACTIONS(1101), - [sym__concat] = ACTIONS(1101), - [sym_variable_name] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1589), - [anon_sym_GT_GT] = ACTIONS(1101), - [anon_sym_AMP_GT] = ACTIONS(1589), - [anon_sym_AMP_GT_GT] = ACTIONS(1101), - [anon_sym_LT_AMP] = ACTIONS(1101), - [anon_sym_GT_AMP] = ACTIONS(1101), - [anon_sym_DQUOTE] = ACTIONS(1101), - [sym_raw_string] = ACTIONS(1101), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1101), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), - [anon_sym_BQUOTE] = ACTIONS(1101), - [anon_sym_LT_LPAREN] = ACTIONS(1101), - [anon_sym_GT_LPAREN] = ACTIONS(1101), - [sym_word] = ACTIONS(1589), - [sym_comment] = ACTIONS(52), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym__string_content] = ACTIONS(1544), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1068), + [anon_sym_BQUOTE] = ACTIONS(1068), + [sym_comment] = ACTIONS(64), }, [543] = { - [aux_sym_concatenation_repeat1] = STATE(543), - [sym_file_descriptor] = ACTIONS(1101), - [sym__concat] = ACTIONS(1665), - [sym_variable_name] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1589), - [anon_sym_GT_GT] = ACTIONS(1101), - [anon_sym_AMP_GT] = ACTIONS(1589), - [anon_sym_AMP_GT_GT] = ACTIONS(1101), - [anon_sym_LT_AMP] = ACTIONS(1101), - [anon_sym_GT_AMP] = ACTIONS(1101), - [anon_sym_DQUOTE] = ACTIONS(1101), - [sym_raw_string] = ACTIONS(1101), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1101), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), - [anon_sym_BQUOTE] = ACTIONS(1101), - [anon_sym_LT_LPAREN] = ACTIONS(1101), - [anon_sym_GT_LPAREN] = ACTIONS(1101), - [sym_word] = ACTIONS(1589), - [sym_comment] = ACTIONS(52), + [anon_sym_AT] = ACTIONS(1615), + [sym_comment] = ACTIONS(50), }, [544] = { - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_comment] = ACTIONS(52), + [sym_concatenation] = STATE(836), + [sym_string] = STATE(833), + [sym_simple_expansion] = STATE(833), + [sym_expansion] = STATE(833), + [sym_command_substitution] = STATE(833), + [sym_process_substitution] = STATE(833), + [sym_word] = ACTIONS(1617), + [anon_sym_RBRACE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1617), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1621), }, [545] = { - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1674), - [sym_comment] = ACTIONS(52), - }, - [546] = { - [sym_file_descriptor] = ACTIONS(1116), - [sym__concat] = ACTIONS(1116), - [sym_variable_name] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(1602), - [anon_sym_GT] = ACTIONS(1602), - [anon_sym_GT_GT] = ACTIONS(1116), - [anon_sym_AMP_GT] = ACTIONS(1602), - [anon_sym_AMP_GT_GT] = ACTIONS(1116), - [anon_sym_LT_AMP] = ACTIONS(1116), - [anon_sym_GT_AMP] = ACTIONS(1116), - [anon_sym_DQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1116), - [anon_sym_DOLLAR] = ACTIONS(1602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1116), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1116), - [anon_sym_BQUOTE] = ACTIONS(1116), - [anon_sym_LT_LPAREN] = ACTIONS(1116), - [anon_sym_GT_LPAREN] = ACTIONS(1116), - [sym_word] = ACTIONS(1602), - [sym_comment] = ACTIONS(52), - }, - [547] = { - [anon_sym_AT] = ACTIONS(1676), - [sym_comment] = ACTIONS(52), - }, - [548] = { - [sym_concatenation] = STATE(847), - [sym_string] = STATE(846), - [sym_simple_expansion] = STATE(846), - [sym_expansion] = STATE(846), - [sym_command_substitution] = STATE(846), - [sym_process_substitution] = STATE(846), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(1682), - [sym_comment] = ACTIONS(52), - }, - [549] = { - [sym_file_descriptor] = ACTIONS(1128), - [sym__concat] = ACTIONS(1128), - [sym_variable_name] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1612), - [anon_sym_GT] = ACTIONS(1612), - [anon_sym_GT_GT] = ACTIONS(1128), - [anon_sym_AMP_GT] = ACTIONS(1612), - [anon_sym_AMP_GT_GT] = ACTIONS(1128), - [anon_sym_LT_AMP] = ACTIONS(1128), - [anon_sym_GT_AMP] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1128), - [sym_raw_string] = ACTIONS(1128), - [anon_sym_DOLLAR] = ACTIONS(1612), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1128), - [anon_sym_LT_LPAREN] = ACTIONS(1128), - [anon_sym_GT_LPAREN] = ACTIONS(1128), - [sym_word] = ACTIONS(1612), - [sym_comment] = ACTIONS(52), - }, - [550] = { - [anon_sym_AT] = ACTIONS(1684), - [sym_comment] = ACTIONS(52), - }, - [551] = { - [sym_concatenation] = STATE(850), - [sym_string] = STATE(849), - [sym_simple_expansion] = STATE(849), - [sym_expansion] = STATE(849), - [sym_command_substitution] = STATE(849), - [sym_process_substitution] = STATE(849), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(1686), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(1688), - [sym_comment] = ACTIONS(52), - }, - [552] = { - [sym_file_descriptor] = ACTIONS(1222), - [sym__concat] = ACTIONS(1222), - [sym_variable_name] = ACTIONS(1222), - [anon_sym_LT] = ACTIONS(1620), - [anon_sym_GT] = ACTIONS(1620), - [anon_sym_GT_GT] = ACTIONS(1222), - [anon_sym_AMP_GT] = ACTIONS(1620), - [anon_sym_AMP_GT_GT] = ACTIONS(1222), - [anon_sym_LT_AMP] = ACTIONS(1222), - [anon_sym_GT_AMP] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_raw_string] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1620), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1222), - [anon_sym_BQUOTE] = ACTIONS(1222), - [anon_sym_LT_LPAREN] = ACTIONS(1222), - [anon_sym_GT_LPAREN] = ACTIONS(1222), - [sym_word] = ACTIONS(1620), - [sym_comment] = ACTIONS(52), - }, - [553] = { - [sym_file_descriptor] = ACTIONS(1274), - [sym__concat] = ACTIONS(1274), - [sym_variable_name] = ACTIONS(1274), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_GT_GT] = ACTIONS(1274), - [anon_sym_AMP_GT] = ACTIONS(1622), - [anon_sym_AMP_GT_GT] = ACTIONS(1274), - [anon_sym_LT_AMP] = ACTIONS(1274), - [anon_sym_GT_AMP] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_raw_string] = ACTIONS(1274), - [anon_sym_DOLLAR] = ACTIONS(1622), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1274), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1274), - [anon_sym_BQUOTE] = ACTIONS(1274), - [anon_sym_LT_LPAREN] = ACTIONS(1274), - [anon_sym_GT_LPAREN] = ACTIONS(1274), - [sym_word] = ACTIONS(1622), - [sym_comment] = ACTIONS(52), - }, - [554] = { - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [sym_comment] = ACTIONS(52), - }, - [555] = { - [anon_sym_RBRACE] = ACTIONS(1694), - [anon_sym_LBRACK] = ACTIONS(1696), - [sym_comment] = ACTIONS(52), - }, - [556] = { - [anon_sym_DQUOTE] = ACTIONS(1118), - [sym__string_content] = ACTIONS(1602), - [anon_sym_DOLLAR] = ACTIONS(1118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1118), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1118), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_comment] = ACTIONS(64), - }, - [557] = { - [anon_sym_AT] = ACTIONS(1698), - [sym_comment] = ACTIONS(52), - }, - [558] = { - [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(1700), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(1702), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(1704), - [sym_comment] = ACTIONS(52), - }, - [559] = { - [anon_sym_DQUOTE] = ACTIONS(1130), - [sym__string_content] = ACTIONS(1612), - [anon_sym_DOLLAR] = ACTIONS(1130), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1130), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1130), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_comment] = ACTIONS(64), - }, - [560] = { - [anon_sym_AT] = ACTIONS(1706), - [sym_comment] = ACTIONS(52), - }, - [561] = { - [sym_concatenation] = STATE(861), - [sym_string] = STATE(860), - [sym_simple_expansion] = STATE(860), - [sym_expansion] = STATE(860), - [sym_command_substitution] = STATE(860), - [sym_process_substitution] = STATE(860), - [anon_sym_RBRACE] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(1710), - [sym_comment] = ACTIONS(52), - }, - [562] = { - [anon_sym_DQUOTE] = ACTIONS(1224), - [sym__string_content] = ACTIONS(1620), - [anon_sym_DOLLAR] = ACTIONS(1224), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1224), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1224), - [anon_sym_BQUOTE] = ACTIONS(1224), - [sym_comment] = ACTIONS(64), - }, - [563] = { - [sym_file_descriptor] = ACTIONS(1712), - [sym__concat] = ACTIONS(1712), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_RPAREN] = ACTIONS(1714), - [anon_sym_SEMI_SEMI] = ACTIONS(1714), - [anon_sym_PIPE_AMP] = ACTIONS(1714), - [anon_sym_AMP_AMP] = ACTIONS(1714), - [anon_sym_PIPE_PIPE] = ACTIONS(1714), - [anon_sym_LT] = ACTIONS(1714), - [anon_sym_GT] = ACTIONS(1714), - [anon_sym_GT_GT] = ACTIONS(1714), - [anon_sym_AMP_GT] = ACTIONS(1714), - [anon_sym_AMP_GT_GT] = ACTIONS(1714), - [anon_sym_LT_AMP] = ACTIONS(1714), - [anon_sym_GT_AMP] = ACTIONS(1714), - [anon_sym_LT_LT] = ACTIONS(1714), - [anon_sym_LT_LT_DASH] = ACTIONS(1714), - [anon_sym_DQUOTE] = ACTIONS(1714), - [sym_raw_string] = ACTIONS(1714), - [anon_sym_DOLLAR] = ACTIONS(1714), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1714), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1714), - [anon_sym_BQUOTE] = ACTIONS(1714), - [anon_sym_LT_LPAREN] = ACTIONS(1714), - [anon_sym_GT_LPAREN] = ACTIONS(1714), - [sym_word] = ACTIONS(1714), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_LF] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1714), - }, - [564] = { - [anon_sym_AT] = ACTIONS(1716), - [sym_comment] = ACTIONS(52), - }, - [565] = { - [sym_file_descriptor] = ACTIONS(1718), - [sym__concat] = ACTIONS(1718), - [anon_sym_PIPE] = ACTIONS(1720), - [anon_sym_RPAREN] = ACTIONS(1720), - [anon_sym_SEMI_SEMI] = ACTIONS(1720), - [anon_sym_PIPE_AMP] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1720), - [anon_sym_AMP_GT] = ACTIONS(1720), - [anon_sym_AMP_GT_GT] = ACTIONS(1720), - [anon_sym_LT_AMP] = ACTIONS(1720), - [anon_sym_GT_AMP] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_LT_LT_DASH] = ACTIONS(1720), - [anon_sym_DQUOTE] = ACTIONS(1720), - [sym_raw_string] = ACTIONS(1720), - [anon_sym_DOLLAR] = ACTIONS(1720), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1720), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1720), - [anon_sym_BQUOTE] = ACTIONS(1720), - [anon_sym_LT_LPAREN] = ACTIONS(1720), - [anon_sym_GT_LPAREN] = ACTIONS(1720), - [sym_word] = ACTIONS(1720), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_LF] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1720), - }, - [566] = { - [anon_sym_AT] = ACTIONS(1722), - [sym_comment] = ACTIONS(52), - }, - [567] = { - [anon_sym_RBRACK] = ACTIONS(1724), - [sym_comment] = ACTIONS(52), - }, - [568] = { - [sym_file_descriptor] = ACTIONS(1726), - [sym__concat] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_RPAREN] = ACTIONS(1728), - [anon_sym_SEMI_SEMI] = ACTIONS(1728), - [anon_sym_PIPE_AMP] = ACTIONS(1728), - [anon_sym_AMP_AMP] = ACTIONS(1728), - [anon_sym_PIPE_PIPE] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(1728), - [anon_sym_GT] = ACTIONS(1728), - [anon_sym_GT_GT] = ACTIONS(1728), - [anon_sym_AMP_GT] = ACTIONS(1728), - [anon_sym_AMP_GT_GT] = ACTIONS(1728), - [anon_sym_LT_AMP] = ACTIONS(1728), - [anon_sym_GT_AMP] = ACTIONS(1728), - [anon_sym_LT_LT] = ACTIONS(1728), - [anon_sym_LT_LT_DASH] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_raw_string] = ACTIONS(1728), - [anon_sym_DOLLAR] = ACTIONS(1728), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1728), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1728), - [anon_sym_BQUOTE] = ACTIONS(1728), - [anon_sym_LT_LPAREN] = ACTIONS(1728), - [anon_sym_GT_LPAREN] = ACTIONS(1728), - [sym_word] = ACTIONS(1728), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_LF] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - }, - [569] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(1730), - [sym_comment] = ACTIONS(52), - }, - [570] = { - [anon_sym_RBRACE] = ACTIONS(1730), - [sym_comment] = ACTIONS(52), - }, - [571] = { - [anon_sym_RBRACK] = ACTIONS(1732), - [sym_comment] = ACTIONS(52), - }, - [572] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(1734), - [sym_comment] = ACTIONS(52), - }, - [573] = { - [anon_sym_RBRACE] = ACTIONS(1734), - [sym_comment] = ACTIONS(52), - }, - [574] = { - [sym_file_descriptor] = ACTIONS(745), - [sym_variable_name] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(745), - [anon_sym_PIPE_AMP] = ACTIONS(745), - [anon_sym_AMP_AMP] = ACTIONS(745), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1736), - [anon_sym_GT] = ACTIONS(1736), - [anon_sym_GT_GT] = ACTIONS(745), - [anon_sym_AMP_GT] = ACTIONS(1736), - [anon_sym_AMP_GT_GT] = ACTIONS(745), - [anon_sym_LT_AMP] = ACTIONS(745), - [anon_sym_GT_AMP] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [sym_raw_string] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(1736), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(745), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(745), - [anon_sym_BQUOTE] = ACTIONS(745), - [anon_sym_LT_LPAREN] = ACTIONS(745), - [anon_sym_GT_LPAREN] = ACTIONS(745), - [sym_word] = ACTIONS(747), - [sym_comment] = ACTIONS(52), - }, - [575] = { - [sym_concatenation] = STATE(423), - [sym_string] = STATE(417), - [sym_simple_expansion] = STATE(417), - [sym_expansion] = STATE(417), - [sym_command_substitution] = STATE(417), - [sym_process_substitution] = STATE(417), - [aux_sym_for_statement_repeat1] = STATE(870), - [anon_sym_RPAREN] = ACTIONS(1738), - [anon_sym_DQUOTE] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(755), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(759), - [anon_sym_BQUOTE] = ACTIONS(761), - [anon_sym_LT_LPAREN] = ACTIONS(763), - [anon_sym_GT_LPAREN] = ACTIONS(763), - [sym_word] = ACTIONS(765), - [sym_comment] = ACTIONS(52), - }, - [576] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(872), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), - }, - [577] = { - [aux_sym_concatenation_repeat1] = STATE(874), - [sym_file_descriptor] = ACTIONS(745), - [sym__concat] = ACTIONS(1742), - [sym_variable_name] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(745), - [anon_sym_PIPE_AMP] = ACTIONS(745), - [anon_sym_AMP_AMP] = ACTIONS(745), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1736), - [anon_sym_GT] = ACTIONS(1736), - [anon_sym_GT_GT] = ACTIONS(745), - [anon_sym_AMP_GT] = ACTIONS(1736), - [anon_sym_AMP_GT_GT] = ACTIONS(745), - [anon_sym_LT_AMP] = ACTIONS(745), - [anon_sym_GT_AMP] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [sym_raw_string] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(1736), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(745), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(745), - [anon_sym_BQUOTE] = ACTIONS(745), - [anon_sym_LT_LPAREN] = ACTIONS(745), - [anon_sym_GT_LPAREN] = ACTIONS(745), - [sym_word] = ACTIONS(747), - [sym_comment] = ACTIONS(52), - }, - [578] = { - [sym_special_variable_name] = STATE(877), - [anon_sym_DASH] = ACTIONS(1744), - [anon_sym_DOLLAR] = ACTIONS(1744), - [anon_sym_POUND] = ACTIONS(1744), - [anon_sym_AT] = ACTIONS(1744), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1744), - [anon_sym_QMARK] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1744), - [anon_sym_0] = ACTIONS(1748), - [anon_sym__] = ACTIONS(1748), - }, - [579] = { - [sym_special_variable_name] = STATE(880), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(1750), - [anon_sym_AT] = ACTIONS(62), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), - }, - [580] = { - [sym_for_statement] = STATE(881), - [sym_while_statement] = STATE(881), - [sym_if_statement] = STATE(881), - [sym_case_statement] = STATE(881), - [sym_function_definition] = STATE(881), - [sym_subshell] = STATE(881), - [sym_pipeline] = STATE(881), - [sym_list] = STATE(881), - [sym_bracket_command] = STATE(881), - [sym_command] = STATE(881), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(882), - [sym_declaration_command] = STATE(881), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), - }, - [581] = { - [sym_for_statement] = STATE(883), - [sym_while_statement] = STATE(883), - [sym_if_statement] = STATE(883), - [sym_case_statement] = STATE(883), - [sym_function_definition] = STATE(883), - [sym_subshell] = STATE(883), - [sym_pipeline] = STATE(883), - [sym_list] = STATE(883), - [sym_bracket_command] = STATE(883), - [sym_command] = STATE(883), - [sym_command_name] = STATE(140), - [sym_variable_assignment] = STATE(884), - [sym_declaration_command] = STATE(883), - [sym_subscript] = STATE(142), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(137), - [sym_simple_expansion] = STATE(137), - [sym_expansion] = STATE(137), - [sym_command_substitution] = STATE(137), - [sym_process_substitution] = STATE(137), - [aux_sym_command_repeat1] = STATE(143), - [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), - }, - [582] = { - [sym_for_statement] = STATE(885), - [sym_while_statement] = STATE(885), - [sym_if_statement] = STATE(885), - [sym_case_statement] = STATE(885), - [sym_function_definition] = STATE(885), - [sym_subshell] = STATE(885), - [sym_pipeline] = STATE(885), - [sym_list] = STATE(885), - [sym_bracket_command] = STATE(885), - [sym_command] = STATE(885), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(886), - [sym_declaration_command] = STATE(885), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), - }, - [583] = { - [sym_concatenation] = STATE(448), - [sym_string] = STATE(442), - [sym_simple_expansion] = STATE(442), - [sym_expansion] = STATE(442), - [sym_command_substitution] = STATE(442), - [sym_process_substitution] = STATE(442), - [aux_sym_for_statement_repeat1] = STATE(887), - [anon_sym_DQUOTE] = ACTIONS(781), - [sym_raw_string] = ACTIONS(783), - [anon_sym_DOLLAR] = ACTIONS(785), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(787), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(789), - [anon_sym_BQUOTE] = ACTIONS(791), - [anon_sym_LT_LPAREN] = ACTIONS(793), - [anon_sym_GT_LPAREN] = ACTIONS(793), - [sym_word] = ACTIONS(795), - [sym_comment] = ACTIONS(52), - }, - [584] = { - [sym_concatenation] = STATE(448), - [sym_string] = STATE(442), - [sym_simple_expansion] = STATE(442), - [sym_expansion] = STATE(442), - [sym_command_substitution] = STATE(442), - [sym_process_substitution] = STATE(442), - [aux_sym_for_statement_repeat1] = STATE(888), - [anon_sym_DQUOTE] = ACTIONS(781), - [sym_raw_string] = ACTIONS(783), - [anon_sym_DOLLAR] = ACTIONS(785), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(787), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(789), - [anon_sym_BQUOTE] = ACTIONS(791), - [anon_sym_LT_LPAREN] = ACTIONS(793), - [anon_sym_GT_LPAREN] = ACTIONS(793), - [sym_word] = ACTIONS(795), - [sym_comment] = ACTIONS(52), - }, - [585] = { - [sym__terminated_statement] = STATE(452), - [sym_for_statement] = STATE(453), - [sym_while_statement] = STATE(453), - [sym_if_statement] = STATE(453), - [sym_case_statement] = STATE(453), - [sym_function_definition] = STATE(453), - [sym_subshell] = STATE(453), - [sym_pipeline] = STATE(453), - [sym_list] = STATE(453), - [sym_bracket_command] = STATE(453), - [sym_command] = STATE(453), - [sym_command_name] = STATE(25), - [sym_variable_assignment] = STATE(454), - [sym_declaration_command] = STATE(453), - [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(890), - [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(1754), - [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), - }, - [586] = { - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1758), - [anon_sym_PIPE_AMP] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1758), - [anon_sym_PIPE_PIPE] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1758), - [sym_comment] = ACTIONS(52), - }, - [587] = { - [sym__terminated_statement] = STATE(459), - [sym_for_statement] = STATE(460), - [sym_while_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_elif_clause] = STATE(461), - [sym_else_clause] = STATE(892), - [sym_case_statement] = STATE(460), - [sym_function_definition] = STATE(460), - [sym_subshell] = STATE(460), - [sym_pipeline] = STATE(460), - [sym_list] = STATE(460), - [sym_bracket_command] = STATE(460), - [sym_command] = STATE(460), - [sym_command_name] = STATE(25), - [sym_variable_assignment] = STATE(463), - [sym_declaration_command] = STATE(460), - [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(893), - [aux_sym_if_statement_repeat1] = STATE(894), - [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(1760), - [anon_sym_elif] = ACTIONS(803), - [anon_sym_else] = ACTIONS(805), - [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), - }, - [588] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1762), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1762), - [anon_sym_LF] = ACTIONS(1762), - [anon_sym_AMP] = ACTIONS(1762), - }, - [589] = { - [anon_sym_in] = ACTIONS(1764), - [sym_comment] = ACTIONS(52), - }, - [590] = { - [anon_sym_RPAREN] = ACTIONS(1766), - [sym_comment] = ACTIONS(52), - }, - [591] = { - [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(899), - [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(1768), - [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), - }, - [592] = { - [sym_file_redirect] = STATE(902), - [sym_file_descriptor] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1774), - [anon_sym_PIPE_AMP] = ACTIONS(1774), - [anon_sym_AMP_AMP] = ACTIONS(1774), - [anon_sym_PIPE_PIPE] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1776), - [anon_sym_GT] = ACTIONS(1776), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_AMP_GT] = ACTIONS(1776), - [anon_sym_AMP_GT_GT] = ACTIONS(1778), - [anon_sym_LT_AMP] = ACTIONS(1778), - [anon_sym_GT_AMP] = ACTIONS(1778), - [sym_comment] = ACTIONS(52), - }, - [593] = { - [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), - }, - [594] = { - [sym_file_descriptor] = ACTIONS(606), - [sym_variable_name] = ACTIONS(606), - [anon_sym_for] = ACTIONS(608), - [anon_sym_while] = ACTIONS(608), - [anon_sym_if] = ACTIONS(608), - [anon_sym_case] = ACTIONS(608), - [anon_sym_RPAREN] = ACTIONS(1784), - [anon_sym_function] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(606), - [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_LBRACK_LBRACK] = ACTIONS(608), - [anon_sym_declare] = ACTIONS(608), - [anon_sym_typeset] = ACTIONS(608), - [anon_sym_export] = ACTIONS(608), - [anon_sym_readonly] = ACTIONS(608), - [anon_sym_local] = ACTIONS(608), - [anon_sym_LT] = ACTIONS(608), - [anon_sym_GT] = ACTIONS(608), - [anon_sym_GT_GT] = ACTIONS(606), - [anon_sym_AMP_GT] = ACTIONS(608), - [anon_sym_AMP_GT_GT] = ACTIONS(606), - [anon_sym_LT_AMP] = ACTIONS(606), - [anon_sym_GT_AMP] = ACTIONS(606), - [anon_sym_DQUOTE] = ACTIONS(606), - [sym_raw_string] = ACTIONS(606), - [anon_sym_DOLLAR] = ACTIONS(608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(606), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), - [anon_sym_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(606), - [anon_sym_GT_LPAREN] = ACTIONS(606), - [sym_word] = ACTIONS(610), - [sym_comment] = ACTIONS(52), - }, - [595] = { - [anon_sym_PIPE] = ACTIONS(366), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_SEMI_SEMI] = ACTIONS(1788), - [anon_sym_PIPE_AMP] = ACTIONS(366), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_LF] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - }, - [596] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(366), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_SEMI_SEMI] = ACTIONS(1788), - [anon_sym_PIPE_AMP] = ACTIONS(366), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_AMP_GT] = ACTIONS(268), - [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(268), - [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(268), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_LF] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - }, - [597] = { - [anon_sym_PIPE] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_PIPE_AMP] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1792), - [sym_comment] = ACTIONS(52), - }, - [598] = { - [sym_concatenation] = STATE(905), - [sym_string] = STATE(908), - [sym_array] = STATE(905), - [sym_simple_expansion] = STATE(908), - [sym_expansion] = STATE(908), - [sym_command_substitution] = STATE(908), - [sym_process_substitution] = STATE(908), - [sym__empty_value] = ACTIONS(1794), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1798), - [sym_raw_string] = ACTIONS(1800), - [anon_sym_DOLLAR] = ACTIONS(1802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1806), - [anon_sym_BQUOTE] = ACTIONS(1808), - [anon_sym_LT_LPAREN] = ACTIONS(1810), - [anon_sym_GT_LPAREN] = ACTIONS(1810), - [sym_word] = ACTIONS(1812), - [sym_comment] = ACTIONS(52), - }, - [599] = { - [sym_variable_name] = ACTIONS(318), - [anon_sym_PIPE] = ACTIONS(1158), - [anon_sym_RPAREN] = ACTIONS(318), - [anon_sym_PIPE_AMP] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(318), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(1158), - }, - [600] = { - [sym_variable_name] = ACTIONS(1011), - [anon_sym_PIPE] = ACTIONS(1814), - [anon_sym_RPAREN] = ACTIONS(1011), - [anon_sym_PIPE_AMP] = ACTIONS(1011), - [anon_sym_AMP_AMP] = ACTIONS(1011), - [anon_sym_PIPE_PIPE] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1011), - [anon_sym_BQUOTE] = ACTIONS(1011), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(1814), - }, - [601] = { - [aux_sym_declaration_command_repeat1] = STATE(601), - [sym_variable_name] = ACTIONS(1015), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_RPAREN] = ACTIONS(1015), - [anon_sym_PIPE_AMP] = ACTIONS(1015), - [anon_sym_AMP_AMP] = ACTIONS(1015), - [anon_sym_PIPE_PIPE] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1818), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(1816), - }, - [602] = { - [sym_variable_assignment] = STATE(325), - [sym_subscript] = STATE(326), - [aux_sym_declaration_command_repeat2] = STATE(603), - [sym_variable_name] = ACTIONS(516), - [anon_sym_PIPE] = ACTIONS(1821), - [anon_sym_RPAREN] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(524), - }, - [603] = { - [sym_variable_assignment] = STATE(325), - [sym_subscript] = STATE(326), - [aux_sym_declaration_command_repeat2] = STATE(603), - [sym_variable_name] = ACTIONS(1825), - [anon_sym_PIPE] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1830), - [anon_sym_PIPE_AMP] = ACTIONS(1830), - [anon_sym_AMP_AMP] = ACTIONS(1830), - [anon_sym_PIPE_PIPE] = ACTIONS(1830), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(1832), - }, - [604] = { - [sym_file_descriptor] = ACTIONS(1080), - [sym__concat] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1080), - [anon_sym_PIPE_AMP] = ACTIONS(1080), - [anon_sym_AMP_AMP] = ACTIONS(1080), - [anon_sym_PIPE_PIPE] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_GT] = ACTIONS(1080), - [anon_sym_AMP_GT] = ACTIONS(1587), - [anon_sym_AMP_GT_GT] = ACTIONS(1080), - [anon_sym_LT_AMP] = ACTIONS(1080), - [anon_sym_GT_AMP] = ACTIONS(1080), - [anon_sym_LT_LT] = ACTIONS(1587), - [anon_sym_LT_LT_DASH] = ACTIONS(1080), [anon_sym_DQUOTE] = ACTIONS(1080), - [sym_raw_string] = ACTIONS(1080), - [anon_sym_DOLLAR] = ACTIONS(1587), + [sym__string_content] = ACTIONS(1554), + [anon_sym_DOLLAR] = ACTIONS(1080), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1080), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1080), [anon_sym_BQUOTE] = ACTIONS(1080), - [anon_sym_LT_LPAREN] = ACTIONS(1080), - [anon_sym_GT_LPAREN] = ACTIONS(1080), - [sym_word] = ACTIONS(1082), - [sym_comment] = ACTIONS(52), - }, - [605] = { - [sym_file_descriptor] = ACTIONS(1101), - [sym__concat] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(1101), - [anon_sym_PIPE_AMP] = ACTIONS(1101), - [anon_sym_AMP_AMP] = ACTIONS(1101), - [anon_sym_PIPE_PIPE] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1589), - [anon_sym_GT_GT] = ACTIONS(1101), - [anon_sym_AMP_GT] = ACTIONS(1589), - [anon_sym_AMP_GT_GT] = ACTIONS(1101), - [anon_sym_LT_AMP] = ACTIONS(1101), - [anon_sym_GT_AMP] = ACTIONS(1101), - [anon_sym_LT_LT] = ACTIONS(1589), - [anon_sym_LT_LT_DASH] = ACTIONS(1101), - [anon_sym_DQUOTE] = ACTIONS(1101), - [sym_raw_string] = ACTIONS(1101), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1101), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), - [anon_sym_BQUOTE] = ACTIONS(1101), - [anon_sym_LT_LPAREN] = ACTIONS(1101), - [anon_sym_GT_LPAREN] = ACTIONS(1101), - [sym_word] = ACTIONS(1103), - [sym_comment] = ACTIONS(52), - }, - [606] = { - [aux_sym_concatenation_repeat1] = STATE(606), - [sym_file_descriptor] = ACTIONS(1101), - [sym__concat] = ACTIONS(1835), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(1101), - [anon_sym_PIPE_AMP] = ACTIONS(1101), - [anon_sym_AMP_AMP] = ACTIONS(1101), - [anon_sym_PIPE_PIPE] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1589), - [anon_sym_GT_GT] = ACTIONS(1101), - [anon_sym_AMP_GT] = ACTIONS(1589), - [anon_sym_AMP_GT_GT] = ACTIONS(1101), - [anon_sym_LT_AMP] = ACTIONS(1101), - [anon_sym_GT_AMP] = ACTIONS(1101), - [anon_sym_LT_LT] = ACTIONS(1589), - [anon_sym_LT_LT_DASH] = ACTIONS(1101), - [anon_sym_DQUOTE] = ACTIONS(1101), - [sym_raw_string] = ACTIONS(1101), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1101), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), - [anon_sym_BQUOTE] = ACTIONS(1101), - [anon_sym_LT_LPAREN] = ACTIONS(1101), - [anon_sym_GT_LPAREN] = ACTIONS(1101), - [sym_word] = ACTIONS(1103), - [sym_comment] = ACTIONS(52), - }, - [607] = { - [anon_sym_RBRACE] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1840), - [sym_comment] = ACTIONS(52), - }, - [608] = { - [anon_sym_RBRACE] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1844), - [sym_comment] = ACTIONS(52), - }, - [609] = { - [sym_file_descriptor] = ACTIONS(1116), - [sym__concat] = ACTIONS(1116), - [anon_sym_PIPE] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(1116), - [anon_sym_PIPE_AMP] = ACTIONS(1116), - [anon_sym_AMP_AMP] = ACTIONS(1116), - [anon_sym_PIPE_PIPE] = ACTIONS(1602), - [anon_sym_LT] = ACTIONS(1602), - [anon_sym_GT] = ACTIONS(1602), - [anon_sym_GT_GT] = ACTIONS(1116), - [anon_sym_AMP_GT] = ACTIONS(1602), - [anon_sym_AMP_GT_GT] = ACTIONS(1116), - [anon_sym_LT_AMP] = ACTIONS(1116), - [anon_sym_GT_AMP] = ACTIONS(1116), - [anon_sym_LT_LT] = ACTIONS(1602), - [anon_sym_LT_LT_DASH] = ACTIONS(1116), - [anon_sym_DQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1116), - [anon_sym_DOLLAR] = ACTIONS(1602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1116), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1116), - [anon_sym_BQUOTE] = ACTIONS(1116), - [anon_sym_LT_LPAREN] = ACTIONS(1116), - [anon_sym_GT_LPAREN] = ACTIONS(1116), - [sym_word] = ACTIONS(1118), - [sym_comment] = ACTIONS(52), - }, - [610] = { - [anon_sym_AT] = ACTIONS(1846), - [sym_comment] = ACTIONS(52), - }, - [611] = { - [sym_concatenation] = STATE(921), - [sym_string] = STATE(920), - [sym_simple_expansion] = STATE(920), - [sym_expansion] = STATE(920), - [sym_command_substitution] = STATE(920), - [sym_process_substitution] = STATE(920), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(1852), - [sym_comment] = ACTIONS(52), - }, - [612] = { - [sym_file_descriptor] = ACTIONS(1128), - [sym__concat] = ACTIONS(1128), - [anon_sym_PIPE] = ACTIONS(1612), - [anon_sym_RPAREN] = ACTIONS(1128), - [anon_sym_PIPE_AMP] = ACTIONS(1128), - [anon_sym_AMP_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(1612), - [anon_sym_GT] = ACTIONS(1612), - [anon_sym_GT_GT] = ACTIONS(1128), - [anon_sym_AMP_GT] = ACTIONS(1612), - [anon_sym_AMP_GT_GT] = ACTIONS(1128), - [anon_sym_LT_AMP] = ACTIONS(1128), - [anon_sym_GT_AMP] = ACTIONS(1128), - [anon_sym_LT_LT] = ACTIONS(1612), - [anon_sym_LT_LT_DASH] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1128), - [sym_raw_string] = ACTIONS(1128), - [anon_sym_DOLLAR] = ACTIONS(1612), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1128), - [anon_sym_LT_LPAREN] = ACTIONS(1128), - [anon_sym_GT_LPAREN] = ACTIONS(1128), - [sym_word] = ACTIONS(1130), - [sym_comment] = ACTIONS(52), - }, - [613] = { - [anon_sym_AT] = ACTIONS(1854), - [sym_comment] = ACTIONS(52), - }, - [614] = { - [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(1842), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(1856), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(1858), - [sym_comment] = ACTIONS(52), - }, - [615] = { - [sym_file_descriptor] = ACTIONS(1222), - [sym__concat] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1620), - [anon_sym_RPAREN] = ACTIONS(1222), - [anon_sym_PIPE_AMP] = ACTIONS(1222), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1620), - [anon_sym_GT] = ACTIONS(1620), - [anon_sym_GT_GT] = ACTIONS(1222), - [anon_sym_AMP_GT] = ACTIONS(1620), - [anon_sym_AMP_GT_GT] = ACTIONS(1222), - [anon_sym_LT_AMP] = ACTIONS(1222), - [anon_sym_GT_AMP] = ACTIONS(1222), - [anon_sym_LT_LT] = ACTIONS(1620), - [anon_sym_LT_LT_DASH] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_raw_string] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1620), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1222), - [anon_sym_BQUOTE] = ACTIONS(1222), - [anon_sym_LT_LPAREN] = ACTIONS(1222), - [anon_sym_GT_LPAREN] = ACTIONS(1222), - [sym_word] = ACTIONS(1224), - [sym_comment] = ACTIONS(52), - }, - [616] = { - [sym_file_descriptor] = ACTIONS(1274), - [sym__concat] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1622), - [anon_sym_RPAREN] = ACTIONS(1274), - [anon_sym_PIPE_AMP] = ACTIONS(1274), - [anon_sym_AMP_AMP] = ACTIONS(1274), - [anon_sym_PIPE_PIPE] = ACTIONS(1622), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_GT_GT] = ACTIONS(1274), - [anon_sym_AMP_GT] = ACTIONS(1622), - [anon_sym_AMP_GT_GT] = ACTIONS(1274), - [anon_sym_LT_AMP] = ACTIONS(1274), - [anon_sym_GT_AMP] = ACTIONS(1274), - [anon_sym_LT_LT] = ACTIONS(1622), - [anon_sym_LT_LT_DASH] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_raw_string] = ACTIONS(1274), - [anon_sym_DOLLAR] = ACTIONS(1622), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1274), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1274), - [anon_sym_BQUOTE] = ACTIONS(1274), - [anon_sym_LT_LPAREN] = ACTIONS(1274), - [anon_sym_GT_LPAREN] = ACTIONS(1274), - [sym_word] = ACTIONS(1276), - [sym_comment] = ACTIONS(52), - }, - [617] = { - [sym_compound_statement] = STATE(925), - [anon_sym_LBRACE] = ACTIONS(1174), - [sym_comment] = ACTIONS(52), - }, - [618] = { - [anon_sym_PIPE] = ACTIONS(1860), - [anon_sym_RPAREN] = ACTIONS(1862), - [anon_sym_PIPE_AMP] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1862), - [anon_sym_PIPE_PIPE] = ACTIONS(1862), - [anon_sym_BQUOTE] = ACTIONS(1862), - [sym_comment] = ACTIONS(52), - }, - [619] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(1860), - [anon_sym_RPAREN] = ACTIONS(1862), - [anon_sym_PIPE_AMP] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1862), - [anon_sym_PIPE_PIPE] = ACTIONS(1860), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [620] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(1864), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1864), - [sym_comment] = ACTIONS(52), - }, - [621] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(1864), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [622] = { - [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_DQUOTE] = ACTIONS(1230), - [sym_raw_string] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1238), - [anon_sym_BQUOTE] = ACTIONS(1240), - [anon_sym_LT_LPAREN] = ACTIONS(1242), - [anon_sym_GT_LPAREN] = ACTIONS(1242), - [sym_word] = ACTIONS(1870), - [sym_comment] = ACTIONS(52), - }, - [623] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(929), - [anon_sym_DQUOTE] = ACTIONS(1872), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), [sym_comment] = ACTIONS(64), }, - [624] = { - [aux_sym_concatenation_repeat1] = STATE(931), - [sym_file_descriptor] = ACTIONS(434), - [sym__concat] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(438), - [anon_sym_RPAREN] = ACTIONS(434), - [anon_sym_PIPE_AMP] = ACTIONS(434), - [anon_sym_AMP_AMP] = ACTIONS(434), - [anon_sym_PIPE_PIPE] = ACTIONS(434), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_GT] = ACTIONS(438), - [anon_sym_GT_GT] = ACTIONS(434), - [anon_sym_AMP_GT] = ACTIONS(438), - [anon_sym_AMP_GT_GT] = ACTIONS(434), - [anon_sym_LT_AMP] = ACTIONS(434), - [anon_sym_GT_AMP] = ACTIONS(434), - [anon_sym_LT_LT] = ACTIONS(438), - [anon_sym_LT_LT_DASH] = ACTIONS(434), - [sym_comment] = ACTIONS(52), + [546] = { + [anon_sym_AT] = ACTIONS(1623), + [sym_comment] = ACTIONS(50), }, - [625] = { - [sym_special_variable_name] = STATE(934), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_DOLLAR] = ACTIONS(1876), - [anon_sym_POUND] = ACTIONS(1876), - [anon_sym_AT] = ACTIONS(1876), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1878), - [anon_sym_STAR] = ACTIONS(1876), - [anon_sym_QMARK] = ACTIONS(1876), - [anon_sym_BANG] = ACTIONS(1876), - [anon_sym_0] = ACTIONS(1880), - [anon_sym__] = ACTIONS(1880), + [547] = { + [sym_concatenation] = STATE(840), + [sym_string] = STATE(838), + [sym_simple_expansion] = STATE(838), + [sym_expansion] = STATE(838), + [sym_command_substitution] = STATE(838), + [sym_process_substitution] = STATE(838), + [sym_word] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1625), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1627), }, - [626] = { - [sym_special_variable_name] = STATE(937), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(1882), - [anon_sym_AT] = ACTIONS(62), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1884), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), - }, - [627] = { - [sym_for_statement] = STATE(938), - [sym_while_statement] = STATE(938), - [sym_if_statement] = STATE(938), - [sym_case_statement] = STATE(938), - [sym_function_definition] = STATE(938), - [sym_subshell] = STATE(938), - [sym_pipeline] = STATE(938), - [sym_list] = STATE(938), - [sym_bracket_command] = STATE(938), - [sym_command] = STATE(938), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(939), - [sym_declaration_command] = STATE(938), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), - }, - [628] = { - [sym_for_statement] = STATE(940), - [sym_while_statement] = STATE(940), - [sym_if_statement] = STATE(940), - [sym_case_statement] = STATE(940), - [sym_function_definition] = STATE(940), - [sym_subshell] = STATE(940), - [sym_pipeline] = STATE(940), - [sym_list] = STATE(940), - [sym_bracket_command] = STATE(940), - [sym_command] = STATE(940), - [sym_command_name] = STATE(140), - [sym_variable_assignment] = STATE(941), - [sym_declaration_command] = STATE(940), - [sym_subscript] = STATE(142), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(137), - [sym_simple_expansion] = STATE(137), - [sym_expansion] = STATE(137), - [sym_command_substitution] = STATE(137), - [sym_process_substitution] = STATE(137), - [aux_sym_command_repeat1] = STATE(143), - [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), - }, - [629] = { - [sym_for_statement] = STATE(942), - [sym_while_statement] = STATE(942), - [sym_if_statement] = STATE(942), - [sym_case_statement] = STATE(942), - [sym_function_definition] = STATE(942), - [sym_subshell] = STATE(942), - [sym_pipeline] = STATE(942), - [sym_list] = STATE(942), - [sym_bracket_command] = STATE(942), - [sym_command] = STATE(942), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(943), - [sym_declaration_command] = STATE(942), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), - }, - [630] = { - [sym_file_descriptor] = ACTIONS(434), - [anon_sym_PIPE] = ACTIONS(438), - [anon_sym_RPAREN] = ACTIONS(434), - [anon_sym_PIPE_AMP] = ACTIONS(434), - [anon_sym_AMP_AMP] = ACTIONS(434), - [anon_sym_PIPE_PIPE] = ACTIONS(434), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_GT] = ACTIONS(438), - [anon_sym_GT_GT] = ACTIONS(434), - [anon_sym_AMP_GT] = ACTIONS(438), - [anon_sym_AMP_GT_GT] = ACTIONS(434), - [anon_sym_LT_AMP] = ACTIONS(434), - [anon_sym_GT_AMP] = ACTIONS(434), - [anon_sym_LT_LT] = ACTIONS(438), - [anon_sym_LT_LT_DASH] = ACTIONS(434), - [anon_sym_BQUOTE] = ACTIONS(434), - [sym_comment] = ACTIONS(52), - }, - [631] = { - [sym_file_descriptor] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_RPAREN] = ACTIONS(1302), - [anon_sym_PIPE_AMP] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1302), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_GT_GT] = ACTIONS(1302), - [anon_sym_AMP_GT] = ACTIONS(1886), - [anon_sym_AMP_GT_GT] = ACTIONS(1302), - [anon_sym_LT_AMP] = ACTIONS(1302), - [anon_sym_GT_AMP] = ACTIONS(1302), - [anon_sym_LT_LT] = ACTIONS(1886), - [anon_sym_LT_LT_DASH] = ACTIONS(1302), - [anon_sym_BQUOTE] = ACTIONS(1302), - [sym_comment] = ACTIONS(52), - }, - [632] = { - [sym_simple_expansion] = STATE(675), - [sym_expansion] = STATE(675), - [aux_sym_heredoc_repeat1] = STATE(945), - [sym__heredoc_middle] = ACTIONS(1306), - [sym__heredoc_end] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1310), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1312), - [sym_comment] = ACTIONS(52), - }, - [633] = { - [sym_file_descriptor] = ACTIONS(1314), - [anon_sym_PIPE] = ACTIONS(1890), - [anon_sym_RPAREN] = ACTIONS(1314), - [anon_sym_PIPE_AMP] = ACTIONS(1314), - [anon_sym_AMP_AMP] = ACTIONS(1314), - [anon_sym_PIPE_PIPE] = ACTIONS(1314), - [anon_sym_LT] = ACTIONS(1890), - [anon_sym_GT] = ACTIONS(1890), - [anon_sym_GT_GT] = ACTIONS(1314), - [anon_sym_AMP_GT] = ACTIONS(1890), - [anon_sym_AMP_GT_GT] = ACTIONS(1314), - [anon_sym_LT_AMP] = ACTIONS(1314), - [anon_sym_GT_AMP] = ACTIONS(1314), - [anon_sym_LT_LT] = ACTIONS(1890), - [anon_sym_LT_LT_DASH] = ACTIONS(1314), - [anon_sym_BQUOTE] = ACTIONS(1314), - [sym_comment] = ACTIONS(52), - }, - [634] = { - [sym_concatenation] = STATE(354), - [sym_string] = STATE(352), - [sym_simple_expansion] = STATE(352), - [sym_expansion] = STATE(352), - [sym_command_substitution] = STATE(352), - [sym_process_substitution] = STATE(352), - [aux_sym_for_statement_repeat1] = STATE(634), - [sym_file_descriptor] = ACTIONS(1318), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1318), - [anon_sym_PIPE_AMP] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(913), - [anon_sym_LT] = ACTIONS(913), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_GT_GT] = ACTIONS(1318), - [anon_sym_AMP_GT] = ACTIONS(913), - [anon_sym_AMP_GT_GT] = ACTIONS(1318), - [anon_sym_LT_AMP] = ACTIONS(1318), - [anon_sym_GT_AMP] = ACTIONS(1318), - [anon_sym_LT_LT] = ACTIONS(913), - [anon_sym_LT_LT_DASH] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1895), - [anon_sym_DOLLAR] = ACTIONS(1898), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1904), - [anon_sym_BQUOTE] = ACTIONS(1907), - [anon_sym_LT_LPAREN] = ACTIONS(1910), - [anon_sym_GT_LPAREN] = ACTIONS(1910), - [sym_word] = ACTIONS(1913), - [sym_comment] = ACTIONS(52), - }, - [635] = { - [sym_file_redirect] = STATE(353), - [sym_heredoc_redirect] = STATE(353), - [aux_sym_command_repeat2] = STATE(636), - [sym_file_descriptor] = ACTIONS(552), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_RPAREN] = ACTIONS(1918), - [anon_sym_PIPE_AMP] = ACTIONS(1918), - [anon_sym_AMP_AMP] = ACTIONS(1918), - [anon_sym_PIPE_PIPE] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(558), - [anon_sym_GT] = ACTIONS(558), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(558), - [anon_sym_AMP_GT_GT] = ACTIONS(560), - [anon_sym_LT_AMP] = ACTIONS(560), - [anon_sym_GT_AMP] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_LT_LT_DASH] = ACTIONS(564), - [sym_comment] = ACTIONS(52), - }, - [636] = { - [sym_file_redirect] = STATE(353), - [sym_heredoc_redirect] = STATE(353), - [aux_sym_command_repeat2] = STATE(636), - [sym_file_descriptor] = ACTIONS(1920), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_RPAREN] = ACTIONS(1925), - [anon_sym_PIPE_AMP] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1925), - [anon_sym_PIPE_PIPE] = ACTIONS(1925), - [anon_sym_LT] = ACTIONS(1927), - [anon_sym_GT] = ACTIONS(1927), - [anon_sym_GT_GT] = ACTIONS(1930), - [anon_sym_AMP_GT] = ACTIONS(1927), - [anon_sym_AMP_GT_GT] = ACTIONS(1930), - [anon_sym_LT_AMP] = ACTIONS(1930), - [anon_sym_GT_AMP] = ACTIONS(1930), - [anon_sym_LT_LT] = ACTIONS(1933), - [anon_sym_LT_LT_DASH] = ACTIONS(1936), - [sym_comment] = ACTIONS(52), - }, - [637] = { - [sym_file_redirect] = STATE(353), - [sym_heredoc_redirect] = STATE(353), - [sym_concatenation] = STATE(354), - [sym_string] = STATE(352), - [sym_simple_expansion] = STATE(352), - [sym_expansion] = STATE(352), - [sym_command_substitution] = STATE(352), - [sym_process_substitution] = STATE(352), - [aux_sym_for_statement_repeat1] = STATE(634), - [aux_sym_command_repeat2] = STATE(946), - [sym_file_descriptor] = ACTIONS(552), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_RPAREN] = ACTIONS(1918), - [anon_sym_PIPE_AMP] = ACTIONS(1918), - [anon_sym_AMP_AMP] = ACTIONS(1918), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(558), - [anon_sym_GT] = ACTIONS(558), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(558), - [anon_sym_AMP_GT_GT] = ACTIONS(560), - [anon_sym_LT_AMP] = ACTIONS(560), - [anon_sym_GT_AMP] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_LT_LT_DASH] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(202), - [sym_raw_string] = ACTIONS(566), - [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(568), - [sym_comment] = ACTIONS(52), - }, - [638] = { - [aux_sym_concatenation_repeat1] = STATE(947), - [sym_file_descriptor] = ACTIONS(745), - [sym__concat] = ACTIONS(1742), - [sym_variable_name] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_PIPE_AMP] = ACTIONS(745), - [anon_sym_AMP_AMP] = ACTIONS(745), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1736), - [anon_sym_GT] = ACTIONS(1736), - [anon_sym_GT_GT] = ACTIONS(745), - [anon_sym_AMP_GT] = ACTIONS(1736), - [anon_sym_AMP_GT_GT] = ACTIONS(745), - [anon_sym_LT_AMP] = ACTIONS(745), - [anon_sym_GT_AMP] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [sym_raw_string] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(1736), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(745), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(745), - [anon_sym_BQUOTE] = ACTIONS(745), - [anon_sym_LT_LPAREN] = ACTIONS(745), - [anon_sym_GT_LPAREN] = ACTIONS(745), - [sym_word] = ACTIONS(747), - [sym_comment] = ACTIONS(52), - }, - [639] = { - [anon_sym_RPAREN] = ACTIONS(1939), - [sym_comment] = ACTIONS(52), - }, - [640] = { - [sym_file_redirect] = STATE(902), - [sym_file_descriptor] = ACTIONS(1941), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_PIPE_AMP] = ACTIONS(1774), - [anon_sym_AMP_AMP] = ACTIONS(1774), - [anon_sym_PIPE_PIPE] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_GT_GT] = ACTIONS(1945), - [anon_sym_AMP_GT] = ACTIONS(1943), - [anon_sym_AMP_GT_GT] = ACTIONS(1945), - [anon_sym_LT_AMP] = ACTIONS(1945), - [anon_sym_GT_AMP] = ACTIONS(1945), - [anon_sym_BQUOTE] = ACTIONS(1774), - [sym_comment] = ACTIONS(52), - }, - [641] = { - [sym_concatenation] = STATE(905), - [sym_string] = STATE(951), - [sym_array] = STATE(905), - [sym_simple_expansion] = STATE(951), - [sym_expansion] = STATE(951), - [sym_command_substitution] = STATE(951), - [sym_process_substitution] = STATE(951), - [sym__empty_value] = ACTIONS(1794), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1798), - [sym_raw_string] = ACTIONS(1947), - [anon_sym_DOLLAR] = ACTIONS(1802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1806), - [anon_sym_BQUOTE] = ACTIONS(1808), - [anon_sym_LT_LPAREN] = ACTIONS(1810), - [anon_sym_GT_LPAREN] = ACTIONS(1810), - [sym_word] = ACTIONS(1949), - [sym_comment] = ACTIONS(52), - }, - [642] = { - [aux_sym_declaration_command_repeat1] = STATE(642), - [sym_variable_name] = ACTIONS(1015), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_PIPE_AMP] = ACTIONS(1015), - [anon_sym_AMP_AMP] = ACTIONS(1015), - [anon_sym_PIPE_PIPE] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_BQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(1816), - }, - [643] = { - [sym_variable_assignment] = STATE(325), - [sym_subscript] = STATE(361), - [aux_sym_declaration_command_repeat2] = STATE(644), - [sym_variable_name] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(1821), - [anon_sym_PIPE_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_BQUOTE] = ACTIONS(1823), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(524), - }, - [644] = { - [sym_variable_assignment] = STATE(325), - [sym_subscript] = STATE(361), - [aux_sym_declaration_command_repeat2] = STATE(644), - [sym_variable_name] = ACTIONS(1951), - [anon_sym_PIPE] = ACTIONS(1828), - [anon_sym_PIPE_AMP] = ACTIONS(1830), - [anon_sym_AMP_AMP] = ACTIONS(1830), - [anon_sym_PIPE_PIPE] = ACTIONS(1830), - [anon_sym_BQUOTE] = ACTIONS(1830), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(1832), - }, - [645] = { - [aux_sym_concatenation_repeat1] = STATE(645), - [sym_file_descriptor] = ACTIONS(1101), - [sym__concat] = ACTIONS(1835), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_PIPE_AMP] = ACTIONS(1101), - [anon_sym_AMP_AMP] = ACTIONS(1101), - [anon_sym_PIPE_PIPE] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1589), - [anon_sym_GT_GT] = ACTIONS(1101), - [anon_sym_AMP_GT] = ACTIONS(1589), - [anon_sym_AMP_GT_GT] = ACTIONS(1101), - [anon_sym_LT_AMP] = ACTIONS(1101), - [anon_sym_GT_AMP] = ACTIONS(1101), - [anon_sym_LT_LT] = ACTIONS(1589), - [anon_sym_LT_LT_DASH] = ACTIONS(1101), - [anon_sym_DQUOTE] = ACTIONS(1101), - [sym_raw_string] = ACTIONS(1101), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1101), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), - [anon_sym_BQUOTE] = ACTIONS(1101), - [anon_sym_LT_LPAREN] = ACTIONS(1101), - [anon_sym_GT_LPAREN] = ACTIONS(1101), - [sym_word] = ACTIONS(1103), - [sym_comment] = ACTIONS(52), - }, - [646] = { - [sym_compound_statement] = STATE(952), - [anon_sym_LBRACE] = ACTIONS(1174), - [sym_comment] = ACTIONS(52), - }, - [647] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(1860), - [anon_sym_PIPE_AMP] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1862), - [anon_sym_PIPE_PIPE] = ACTIONS(1860), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(1862), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [648] = { - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1864), - [anon_sym_BQUOTE] = ACTIONS(1864), - [sym_comment] = ACTIONS(52), - }, - [649] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [650] = { - [sym_concatenation] = STATE(927), - [sym_string] = STATE(953), - [sym_simple_expansion] = STATE(953), - [sym_expansion] = STATE(953), - [sym_command_substitution] = STATE(953), - [sym_process_substitution] = STATE(953), - [anon_sym_DQUOTE] = ACTIONS(1230), - [sym_raw_string] = ACTIONS(1954), - [anon_sym_DOLLAR] = ACTIONS(1234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1238), - [anon_sym_BQUOTE] = ACTIONS(1240), - [anon_sym_LT_LPAREN] = ACTIONS(1242), - [anon_sym_GT_LPAREN] = ACTIONS(1242), - [sym_word] = ACTIONS(1956), - [sym_comment] = ACTIONS(52), - }, - [651] = { - [aux_sym_concatenation_repeat1] = STATE(954), - [sym_file_descriptor] = ACTIONS(434), - [sym__concat] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(438), - [anon_sym_PIPE_AMP] = ACTIONS(434), - [anon_sym_AMP_AMP] = ACTIONS(434), - [anon_sym_PIPE_PIPE] = ACTIONS(434), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_GT] = ACTIONS(438), - [anon_sym_GT_GT] = ACTIONS(434), - [anon_sym_AMP_GT] = ACTIONS(438), - [anon_sym_AMP_GT_GT] = ACTIONS(434), - [anon_sym_LT_AMP] = ACTIONS(434), - [anon_sym_GT_AMP] = ACTIONS(434), - [anon_sym_LT_LT] = ACTIONS(438), - [anon_sym_LT_LT_DASH] = ACTIONS(434), - [anon_sym_BQUOTE] = ACTIONS(434), - [sym_comment] = ACTIONS(52), - }, - [652] = { - [sym_concatenation] = STATE(354), - [sym_string] = STATE(370), - [sym_simple_expansion] = STATE(370), - [sym_expansion] = STATE(370), - [sym_command_substitution] = STATE(370), - [sym_process_substitution] = STATE(370), - [aux_sym_for_statement_repeat1] = STATE(652), - [sym_file_descriptor] = ACTIONS(1318), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_PIPE_AMP] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(913), - [anon_sym_LT] = ACTIONS(913), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_GT_GT] = ACTIONS(1318), - [anon_sym_AMP_GT] = ACTIONS(913), - [anon_sym_AMP_GT_GT] = ACTIONS(1318), - [anon_sym_LT_AMP] = ACTIONS(1318), - [anon_sym_GT_AMP] = ACTIONS(1318), - [anon_sym_LT_LT] = ACTIONS(913), - [anon_sym_LT_LT_DASH] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1958), - [anon_sym_DOLLAR] = ACTIONS(1898), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1904), - [anon_sym_BQUOTE] = ACTIONS(1907), - [anon_sym_LT_LPAREN] = ACTIONS(1910), - [anon_sym_GT_LPAREN] = ACTIONS(1910), - [sym_word] = ACTIONS(1961), - [sym_comment] = ACTIONS(52), - }, - [653] = { - [sym_file_redirect] = STATE(353), - [sym_heredoc_redirect] = STATE(353), - [aux_sym_command_repeat2] = STATE(654), - [sym_file_descriptor] = ACTIONS(588), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1918), - [anon_sym_AMP_AMP] = ACTIONS(1918), - [anon_sym_PIPE_PIPE] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(590), - [anon_sym_GT] = ACTIONS(590), - [anon_sym_GT_GT] = ACTIONS(592), - [anon_sym_AMP_GT] = ACTIONS(590), - [anon_sym_AMP_GT_GT] = ACTIONS(592), - [anon_sym_LT_AMP] = ACTIONS(592), - [anon_sym_GT_AMP] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_LT_LT_DASH] = ACTIONS(564), - [anon_sym_BQUOTE] = ACTIONS(1918), - [sym_comment] = ACTIONS(52), - }, - [654] = { - [sym_file_redirect] = STATE(353), - [sym_heredoc_redirect] = STATE(353), - [aux_sym_command_repeat2] = STATE(654), - [sym_file_descriptor] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_PIPE_AMP] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1925), - [anon_sym_PIPE_PIPE] = ACTIONS(1925), - [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(1933), - [anon_sym_LT_LT_DASH] = ACTIONS(1936), - [anon_sym_BQUOTE] = ACTIONS(1925), - [sym_comment] = ACTIONS(52), - }, - [655] = { - [sym_file_redirect] = STATE(353), - [sym_heredoc_redirect] = STATE(353), - [sym_concatenation] = STATE(354), - [sym_string] = STATE(370), - [sym_simple_expansion] = STATE(370), - [sym_expansion] = STATE(370), - [sym_command_substitution] = STATE(370), - [sym_process_substitution] = STATE(370), - [aux_sym_for_statement_repeat1] = STATE(652), - [aux_sym_command_repeat2] = STATE(955), - [sym_file_descriptor] = ACTIONS(588), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1918), - [anon_sym_AMP_AMP] = ACTIONS(1918), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(590), - [anon_sym_GT] = ACTIONS(590), - [anon_sym_GT_GT] = ACTIONS(592), - [anon_sym_AMP_GT] = ACTIONS(590), - [anon_sym_AMP_GT_GT] = ACTIONS(592), - [anon_sym_LT_AMP] = ACTIONS(592), - [anon_sym_GT_AMP] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_LT_LT_DASH] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(202), - [sym_raw_string] = ACTIONS(594), - [anon_sym_DOLLAR] = ACTIONS(206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(210), - [anon_sym_BQUOTE] = ACTIONS(1918), - [anon_sym_LT_LPAREN] = ACTIONS(214), - [anon_sym_GT_LPAREN] = ACTIONS(214), - [sym_word] = ACTIONS(596), - [sym_comment] = ACTIONS(52), - }, - [656] = { - [sym_file_redirect] = STATE(956), - [sym_file_descriptor] = ACTIONS(843), - [anon_sym_PIPE] = ACTIONS(1555), - [anon_sym_SEMI_SEMI] = ACTIONS(1555), - [anon_sym_PIPE_AMP] = ACTIONS(1555), - [anon_sym_AMP_AMP] = ACTIONS(1555), - [anon_sym_PIPE_PIPE] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(847), - [anon_sym_GT] = ACTIONS(847), - [anon_sym_GT_GT] = ACTIONS(847), - [anon_sym_AMP_GT] = ACTIONS(847), - [anon_sym_AMP_GT_GT] = ACTIONS(847), - [anon_sym_LT_AMP] = ACTIONS(847), - [anon_sym_GT_AMP] = ACTIONS(847), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1555), - [anon_sym_LF] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(1555), - }, - [657] = { - [aux_sym_concatenation_repeat1] = STATE(662), - [sym_file_descriptor] = ACTIONS(725), - [sym__concat] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1973), - [anon_sym_SEMI_SEMI] = ACTIONS(1973), - [anon_sym_PIPE_AMP] = ACTIONS(1973), - [anon_sym_AMP_AMP] = ACTIONS(1973), - [anon_sym_PIPE_PIPE] = ACTIONS(1973), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_GT] = ACTIONS(1973), - [anon_sym_GT_GT] = ACTIONS(1973), - [anon_sym_AMP_GT] = ACTIONS(1973), - [anon_sym_AMP_GT_GT] = ACTIONS(1973), - [anon_sym_LT_AMP] = ACTIONS(1973), - [anon_sym_GT_AMP] = ACTIONS(1973), - [anon_sym_LT_LT] = ACTIONS(1973), - [anon_sym_LT_LT_DASH] = ACTIONS(1973), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_LF] = ACTIONS(1973), - [anon_sym_AMP] = ACTIONS(1973), - }, - [658] = { - [sym_file_descriptor] = ACTIONS(725), - [anon_sym_PIPE] = ACTIONS(1973), - [anon_sym_RPAREN] = ACTIONS(1973), - [anon_sym_SEMI_SEMI] = ACTIONS(1973), - [anon_sym_PIPE_AMP] = ACTIONS(1973), - [anon_sym_AMP_AMP] = ACTIONS(1973), - [anon_sym_PIPE_PIPE] = ACTIONS(1973), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_GT] = ACTIONS(1973), - [anon_sym_GT_GT] = ACTIONS(1973), - [anon_sym_AMP_GT] = ACTIONS(1973), - [anon_sym_AMP_GT_GT] = ACTIONS(1973), - [anon_sym_LT_AMP] = ACTIONS(1973), - [anon_sym_GT_AMP] = ACTIONS(1973), - [anon_sym_LT_LT] = ACTIONS(1973), - [anon_sym_LT_LT_DASH] = ACTIONS(1973), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_LF] = ACTIONS(1973), - [anon_sym_AMP] = ACTIONS(1973), - }, - [659] = { - [sym_file_descriptor] = ACTIONS(450), - [sym__concat] = ACTIONS(450), - [anon_sym_PIPE] = ACTIONS(452), - [anon_sym_RPAREN] = ACTIONS(452), - [anon_sym_SEMI_SEMI] = ACTIONS(452), - [anon_sym_PIPE_AMP] = ACTIONS(452), - [anon_sym_AMP_AMP] = ACTIONS(452), - [anon_sym_PIPE_PIPE] = ACTIONS(452), - [anon_sym_LT] = ACTIONS(452), - [anon_sym_GT] = ACTIONS(452), - [anon_sym_GT_GT] = ACTIONS(452), - [anon_sym_AMP_GT] = ACTIONS(452), - [anon_sym_AMP_GT_GT] = ACTIONS(452), - [anon_sym_LT_AMP] = ACTIONS(452), - [anon_sym_GT_AMP] = ACTIONS(452), - [anon_sym_LT_LT] = ACTIONS(452), - [anon_sym_LT_LT_DASH] = ACTIONS(452), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(452), - [anon_sym_LF] = ACTIONS(452), - [anon_sym_AMP] = ACTIONS(452), - }, - [660] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(298), - [anon_sym_DQUOTE] = ACTIONS(1975), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), + [548] = { + [anon_sym_DQUOTE] = ACTIONS(1164), + [sym__string_content] = ACTIONS(1562), + [anon_sym_DOLLAR] = ACTIONS(1164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1164), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1164), + [anon_sym_BQUOTE] = ACTIONS(1164), [sym_comment] = ACTIONS(64), }, - [661] = { - [sym_string] = STATE(958), - [sym_simple_expansion] = STATE(958), - [sym_expansion] = STATE(958), - [sym_command_substitution] = STATE(958), - [sym_process_substitution] = STATE(958), - [anon_sym_DQUOTE] = ACTIONS(616), - [sym_raw_string] = ACTIONS(1977), - [anon_sym_DOLLAR] = ACTIONS(620), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(622), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), - [anon_sym_BQUOTE] = ACTIONS(626), - [anon_sym_LT_LPAREN] = ACTIONS(628), - [anon_sym_GT_LPAREN] = ACTIONS(628), - [sym_word] = ACTIONS(1979), - [sym_comment] = ACTIONS(52), - }, - [662] = { - [aux_sym_concatenation_repeat1] = STATE(959), - [sym_file_descriptor] = ACTIONS(474), - [sym__concat] = ACTIONS(1288), - [anon_sym_PIPE] = 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), + [549] = { + [sym_file_descriptor] = ACTIONS(1629), + [sym_word] = ACTIONS(1629), + [sym__concat] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_RPAREN] = ACTIONS(1631), + [anon_sym_SEMI_SEMI] = ACTIONS(1631), + [anon_sym_PIPE_AMP] = ACTIONS(1631), + [anon_sym_AMP_AMP] = ACTIONS(1631), + [anon_sym_PIPE_PIPE] = ACTIONS(1631), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_GT_GT] = ACTIONS(1631), + [anon_sym_AMP_GT] = ACTIONS(1631), + [anon_sym_AMP_GT_GT] = ACTIONS(1631), + [anon_sym_LT_AMP] = ACTIONS(1631), + [anon_sym_GT_AMP] = ACTIONS(1631), + [anon_sym_LT_LT] = ACTIONS(1631), + [anon_sym_LT_LT_DASH] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [sym_raw_string] = ACTIONS(1631), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1631), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1631), + [anon_sym_LT_LPAREN] = ACTIONS(1631), + [anon_sym_GT_LPAREN] = ACTIONS(1631), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_LF] = ACTIONS(476), - [anon_sym_AMP] = ACTIONS(476), + [sym_identifier] = ACTIONS(1631), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_LF] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1631), }, - [663] = { - [sym_file_descriptor] = ACTIONS(322), - [sym__concat] = ACTIONS(322), - [anon_sym_PIPE] = ACTIONS(478), - [anon_sym_RPAREN] = ACTIONS(478), - [anon_sym_SEMI_SEMI] = ACTIONS(478), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(478), - [anon_sym_PIPE_PIPE] = ACTIONS(478), - [anon_sym_LT] = ACTIONS(478), - [anon_sym_GT] = ACTIONS(478), - [anon_sym_GT_GT] = ACTIONS(478), - [anon_sym_AMP_GT] = ACTIONS(478), - [anon_sym_AMP_GT_GT] = ACTIONS(478), - [anon_sym_LT_AMP] = ACTIONS(478), - [anon_sym_GT_AMP] = ACTIONS(478), - [anon_sym_LT_LT] = ACTIONS(478), - [anon_sym_LT_LT_DASH] = ACTIONS(478), + [550] = { + [anon_sym_AT] = ACTIONS(1633), + [sym_comment] = ACTIONS(50), + }, + [551] = { + [sym_file_descriptor] = ACTIONS(1635), + [sym_word] = ACTIONS(1635), + [sym__concat] = ACTIONS(1635), + [anon_sym_PIPE] = ACTIONS(1637), + [anon_sym_RPAREN] = ACTIONS(1637), + [anon_sym_SEMI_SEMI] = ACTIONS(1637), + [anon_sym_PIPE_AMP] = ACTIONS(1637), + [anon_sym_AMP_AMP] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1637), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_GT_GT] = ACTIONS(1637), + [anon_sym_AMP_GT] = ACTIONS(1637), + [anon_sym_AMP_GT_GT] = ACTIONS(1637), + [anon_sym_LT_AMP] = ACTIONS(1637), + [anon_sym_GT_AMP] = ACTIONS(1637), + [anon_sym_LT_LT] = ACTIONS(1637), + [anon_sym_LT_LT_DASH] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1637), + [sym_raw_string] = ACTIONS(1637), + [anon_sym_DOLLAR] = ACTIONS(1637), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1637), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1637), + [anon_sym_BQUOTE] = ACTIONS(1637), + [anon_sym_LT_LPAREN] = ACTIONS(1637), + [anon_sym_GT_LPAREN] = ACTIONS(1637), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_LF] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(478), + [sym_identifier] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1637), + [anon_sym_LF] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1637), }, - [664] = { - [sym_file_descriptor] = ACTIONS(480), - [sym__concat] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(482), - [anon_sym_RPAREN] = ACTIONS(482), - [anon_sym_SEMI_SEMI] = ACTIONS(482), - [anon_sym_PIPE_AMP] = ACTIONS(482), - [anon_sym_AMP_AMP] = ACTIONS(482), - [anon_sym_PIPE_PIPE] = ACTIONS(482), - [anon_sym_LT] = ACTIONS(482), - [anon_sym_GT] = ACTIONS(482), - [anon_sym_GT_GT] = ACTIONS(482), - [anon_sym_AMP_GT] = ACTIONS(482), - [anon_sym_AMP_GT_GT] = ACTIONS(482), - [anon_sym_LT_AMP] = ACTIONS(482), - [anon_sym_GT_AMP] = ACTIONS(482), - [anon_sym_LT_LT] = ACTIONS(482), - [anon_sym_LT_LT_DASH] = ACTIONS(482), + [552] = { + [anon_sym_AT] = ACTIONS(1639), + [sym_comment] = ACTIONS(50), + }, + [553] = { + [anon_sym_RBRACK] = ACTIONS(1641), + [sym_comment] = ACTIONS(50), + }, + [554] = { + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1645), + [sym_comment] = ACTIONS(50), + }, + [555] = { + [sym_file_descriptor] = ACTIONS(1647), + [sym_word] = ACTIONS(1647), + [sym__concat] = ACTIONS(1647), + [anon_sym_PIPE] = ACTIONS(1649), + [anon_sym_RPAREN] = ACTIONS(1649), + [anon_sym_SEMI_SEMI] = ACTIONS(1649), + [anon_sym_PIPE_AMP] = ACTIONS(1649), + [anon_sym_AMP_AMP] = ACTIONS(1649), + [anon_sym_PIPE_PIPE] = ACTIONS(1649), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_GT_GT] = ACTIONS(1649), + [anon_sym_AMP_GT] = ACTIONS(1649), + [anon_sym_AMP_GT_GT] = ACTIONS(1649), + [anon_sym_LT_AMP] = ACTIONS(1649), + [anon_sym_GT_AMP] = ACTIONS(1649), + [anon_sym_LT_LT] = ACTIONS(1649), + [anon_sym_LT_LT_DASH] = ACTIONS(1649), + [anon_sym_DQUOTE] = ACTIONS(1649), + [sym_raw_string] = ACTIONS(1649), + [anon_sym_DOLLAR] = ACTIONS(1649), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1649), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1649), + [anon_sym_LT_LPAREN] = ACTIONS(1649), + [anon_sym_GT_LPAREN] = ACTIONS(1649), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(482), - [anon_sym_LF] = ACTIONS(482), - [anon_sym_AMP] = ACTIONS(482), - }, - [665] = { - [sym_file_descriptor] = ACTIONS(484), - [sym__concat] = ACTIONS(484), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_RPAREN] = ACTIONS(486), - [anon_sym_SEMI_SEMI] = ACTIONS(486), - [anon_sym_PIPE_AMP] = ACTIONS(486), - [anon_sym_AMP_AMP] = ACTIONS(486), - [anon_sym_PIPE_PIPE] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(486), - [anon_sym_GT_GT] = ACTIONS(486), - [anon_sym_AMP_GT] = ACTIONS(486), - [anon_sym_AMP_GT_GT] = ACTIONS(486), - [anon_sym_LT_AMP] = ACTIONS(486), - [anon_sym_GT_AMP] = ACTIONS(486), - [anon_sym_LT_LT] = ACTIONS(486), - [anon_sym_LT_LT_DASH] = ACTIONS(486), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(486), - [anon_sym_LF] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(486), - }, - [666] = { - [sym_special_variable_name] = STATE(961), - [anon_sym_RBRACE] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(62), - [anon_sym_AT] = ACTIONS(62), - [anon_sym_COLON] = ACTIONS(324), - [anon_sym_COLON_QMARK] = ACTIONS(322), - [anon_sym_COLON_DASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1981), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), - }, - [667] = { - [anon_sym_RBRACE] = ACTIONS(1983), - [anon_sym_LBRACK] = ACTIONS(1985), - [anon_sym_EQ] = ACTIONS(1987), - [anon_sym_COLON] = ACTIONS(1989), - [anon_sym_COLON_QMARK] = ACTIONS(1987), - [anon_sym_COLON_DASH] = ACTIONS(1987), - [anon_sym_PERCENT] = ACTIONS(1987), - [anon_sym_SLASH] = ACTIONS(1987), - [sym_comment] = ACTIONS(52), - }, - [668] = { - [anon_sym_RBRACE] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_EQ] = ACTIONS(1995), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_COLON_QMARK] = ACTIONS(1995), - [anon_sym_COLON_DASH] = ACTIONS(1995), - [anon_sym_PERCENT] = ACTIONS(1995), - [anon_sym_SLASH] = ACTIONS(1995), - [sym_comment] = ACTIONS(52), - }, - [669] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(1999), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), - }, - [670] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(1999), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [671] = { - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_comment] = ACTIONS(52), - }, - [672] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(1999), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [673] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2001), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), - }, - [674] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2001), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [675] = { - [sym__heredoc_middle] = ACTIONS(2003), - [sym__heredoc_end] = ACTIONS(2003), - [anon_sym_DOLLAR] = ACTIONS(2005), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2003), - [sym_comment] = ACTIONS(52), - }, - [676] = { - [sym_file_descriptor] = ACTIONS(2007), - [anon_sym_PIPE] = ACTIONS(2009), - [anon_sym_RPAREN] = ACTIONS(2009), - [anon_sym_SEMI_SEMI] = ACTIONS(2009), - [anon_sym_PIPE_AMP] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2009), - [anon_sym_PIPE_PIPE] = ACTIONS(2009), - [anon_sym_LT] = ACTIONS(2009), - [anon_sym_GT] = ACTIONS(2009), - [anon_sym_GT_GT] = ACTIONS(2009), - [anon_sym_AMP_GT] = ACTIONS(2009), - [anon_sym_AMP_GT_GT] = ACTIONS(2009), - [anon_sym_LT_AMP] = ACTIONS(2009), - [anon_sym_GT_AMP] = ACTIONS(2009), - [anon_sym_LT_LT] = ACTIONS(2009), - [anon_sym_LT_LT_DASH] = ACTIONS(2009), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_LF] = ACTIONS(2009), - [anon_sym_AMP] = ACTIONS(2009), - }, - [677] = { - [sym_special_variable_name] = STATE(972), - [anon_sym_DASH] = ACTIONS(2011), - [anon_sym_DOLLAR] = ACTIONS(2011), - [anon_sym_POUND] = ACTIONS(2011), - [anon_sym_AT] = ACTIONS(2011), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(2011), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_0] = ACTIONS(2015), - [anon_sym__] = ACTIONS(2015), - }, - [678] = { - [sym_special_variable_name] = STATE(975), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(2017), - [anon_sym_AT] = ACTIONS(62), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), - }, - [679] = { - [sym_simple_expansion] = STATE(675), - [sym_expansion] = STATE(675), - [aux_sym_heredoc_repeat1] = STATE(977), - [sym__heredoc_middle] = ACTIONS(1306), - [sym__heredoc_end] = ACTIONS(2021), - [anon_sym_DOLLAR] = ACTIONS(1310), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1312), - [sym_comment] = ACTIONS(52), - }, - [680] = { - [sym_file_descriptor] = ACTIONS(745), - [sym_variable_name] = ACTIONS(745), - [anon_sym_LT] = ACTIONS(1736), - [anon_sym_GT] = ACTIONS(1736), - [anon_sym_GT_GT] = ACTIONS(745), - [anon_sym_AMP_GT] = ACTIONS(1736), - [anon_sym_AMP_GT_GT] = ACTIONS(745), - [anon_sym_LT_AMP] = ACTIONS(745), - [anon_sym_GT_AMP] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [sym_raw_string] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(1736), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(745), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(745), - [anon_sym_BQUOTE] = ACTIONS(745), - [anon_sym_LT_LPAREN] = ACTIONS(745), - [anon_sym_GT_LPAREN] = ACTIONS(745), - [sym_word] = ACTIONS(1736), - [sym_comment] = ACTIONS(52), - }, - [681] = { - [sym_concatenation] = STATE(423), - [sym_string] = STATE(417), - [sym_simple_expansion] = STATE(417), - [sym_expansion] = STATE(417), - [sym_command_substitution] = STATE(417), - [sym_process_substitution] = STATE(417), - [aux_sym_for_statement_repeat1] = STATE(979), - [anon_sym_RPAREN] = ACTIONS(2023), - [anon_sym_DQUOTE] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(755), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(759), - [anon_sym_BQUOTE] = ACTIONS(761), - [anon_sym_LT_LPAREN] = ACTIONS(763), - [anon_sym_GT_LPAREN] = ACTIONS(763), - [sym_word] = ACTIONS(765), - [sym_comment] = ACTIONS(52), - }, - [682] = { - [aux_sym_concatenation_repeat1] = STATE(274), - [sym_file_descriptor] = ACTIONS(745), - [sym__concat] = ACTIONS(436), - [sym_variable_name] = ACTIONS(745), - [anon_sym_LT] = ACTIONS(1736), - [anon_sym_GT] = ACTIONS(1736), - [anon_sym_GT_GT] = ACTIONS(745), - [anon_sym_AMP_GT] = ACTIONS(1736), - [anon_sym_AMP_GT_GT] = ACTIONS(745), - [anon_sym_LT_AMP] = ACTIONS(745), - [anon_sym_GT_AMP] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [sym_raw_string] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(1736), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(745), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(745), - [anon_sym_BQUOTE] = ACTIONS(745), - [anon_sym_LT_LPAREN] = ACTIONS(745), - [anon_sym_GT_LPAREN] = ACTIONS(745), - [sym_word] = ACTIONS(1736), - [sym_comment] = ACTIONS(52), - }, - [683] = { - [sym_file_redirect] = STATE(154), - [sym_heredoc_redirect] = STATE(154), - [aux_sym_command_repeat2] = STATE(394), - [sym_file_descriptor] = ACTIONS(244), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_SEMI_SEMI] = ACTIONS(2025), - [anon_sym_PIPE_AMP] = ACTIONS(2025), - [anon_sym_AMP_AMP] = ACTIONS(2025), - [anon_sym_PIPE_PIPE] = ACTIONS(2025), - [anon_sym_LT] = ACTIONS(248), - [anon_sym_GT] = ACTIONS(248), - [anon_sym_GT_GT] = ACTIONS(248), - [anon_sym_AMP_GT] = ACTIONS(248), - [anon_sym_AMP_GT_GT] = ACTIONS(248), - [anon_sym_LT_AMP] = ACTIONS(248), - [anon_sym_GT_AMP] = ACTIONS(248), - [anon_sym_LT_LT] = ACTIONS(250), - [anon_sym_LT_LT_DASH] = ACTIONS(250), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2025), - [anon_sym_LF] = ACTIONS(2025), - [anon_sym_AMP] = ACTIONS(2025), - }, - [684] = { - [sym__concat] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_RPAREN] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(1080), - [sym_comment] = ACTIONS(52), - }, - [685] = { - [sym__concat] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(1101), - [anon_sym_RBRACK] = ACTIONS(1101), - [sym_comment] = ACTIONS(52), - }, - [686] = { - [aux_sym_concatenation_repeat1] = STATE(686), - [sym__concat] = ACTIONS(2027), - [anon_sym_RBRACK] = ACTIONS(1101), - [sym_comment] = ACTIONS(52), - }, - [687] = { - [anon_sym_RBRACE] = ACTIONS(2030), - [anon_sym_LBRACK] = ACTIONS(2032), - [sym_comment] = ACTIONS(52), - }, - [688] = { - [anon_sym_RBRACE] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [sym_comment] = ACTIONS(52), - }, - [689] = { - [sym__concat] = ACTIONS(1116), - [anon_sym_PIPE] = ACTIONS(1116), - [anon_sym_RPAREN] = ACTIONS(1116), - [anon_sym_RBRACK] = ACTIONS(1116), - [sym_comment] = ACTIONS(52), - }, - [690] = { - [anon_sym_AT] = ACTIONS(2038), - [sym_comment] = ACTIONS(52), - }, - [691] = { - [sym_concatenation] = STATE(987), - [sym_string] = STATE(986), - [sym_simple_expansion] = STATE(986), - [sym_expansion] = STATE(986), - [sym_command_substitution] = STATE(986), - [sym_process_substitution] = STATE(986), - [anon_sym_RBRACE] = ACTIONS(2040), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(2042), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(2044), - [sym_comment] = ACTIONS(52), - }, - [692] = { - [sym__concat] = ACTIONS(1128), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_RPAREN] = ACTIONS(1128), - [anon_sym_RBRACK] = ACTIONS(1128), - [sym_comment] = ACTIONS(52), - }, - [693] = { - [anon_sym_AT] = ACTIONS(2046), - [sym_comment] = ACTIONS(52), - }, - [694] = { - [sym_concatenation] = STATE(990), - [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_RBRACE] = ACTIONS(2034), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(2048), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(2050), - [sym_comment] = ACTIONS(52), - }, - [695] = { - [sym__concat] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1222), - [anon_sym_RPAREN] = ACTIONS(1222), - [anon_sym_RBRACK] = ACTIONS(1222), - [sym_comment] = ACTIONS(52), - }, - [696] = { - [sym__concat] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1274), - [anon_sym_RPAREN] = ACTIONS(1274), - [anon_sym_RBRACK] = ACTIONS(1274), - [sym_comment] = ACTIONS(52), - }, - [697] = { - [sym__concat] = ACTIONS(450), - [anon_sym_RPAREN] = ACTIONS(450), - [anon_sym_DQUOTE] = ACTIONS(450), - [sym_raw_string] = ACTIONS(450), - [anon_sym_DOLLAR] = ACTIONS(875), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(450), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(450), - [anon_sym_BQUOTE] = ACTIONS(450), - [anon_sym_LT_LPAREN] = ACTIONS(450), - [anon_sym_GT_LPAREN] = ACTIONS(450), - [sym_word] = ACTIONS(875), - [sym_comment] = ACTIONS(52), - }, - [698] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(298), - [anon_sym_DQUOTE] = ACTIONS(2052), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), - }, - [699] = { - [sym_string] = STATE(992), - [sym_simple_expansion] = STATE(992), - [sym_expansion] = STATE(992), - [sym_command_substitution] = STATE(992), - [sym_process_substitution] = STATE(992), - [anon_sym_DQUOTE] = ACTIONS(751), - [sym_raw_string] = ACTIONS(2054), - [anon_sym_DOLLAR] = ACTIONS(755), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(759), - [anon_sym_BQUOTE] = ACTIONS(761), - [anon_sym_LT_LPAREN] = ACTIONS(763), - [anon_sym_GT_LPAREN] = ACTIONS(763), - [sym_word] = ACTIONS(2056), - [sym_comment] = ACTIONS(52), - }, - [700] = { - [aux_sym_concatenation_repeat1] = STATE(993), - [sym__concat] = ACTIONS(1400), - [anon_sym_RPAREN] = ACTIONS(474), - [anon_sym_DQUOTE] = ACTIONS(474), - [sym_raw_string] = ACTIONS(474), - [anon_sym_DOLLAR] = ACTIONS(883), - [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(883), - [sym_comment] = ACTIONS(52), - }, - [701] = { - [sym__concat] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(322), - [anon_sym_DQUOTE] = ACTIONS(322), - [sym_raw_string] = ACTIONS(322), - [anon_sym_DOLLAR] = ACTIONS(324), - [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(324), - [sym_comment] = ACTIONS(52), - }, - [702] = { - [sym__concat] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(480), - [anon_sym_DQUOTE] = ACTIONS(480), - [sym_raw_string] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(885), - [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(885), - [sym_comment] = ACTIONS(52), - }, - [703] = { - [sym__concat] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(484), - [anon_sym_DQUOTE] = ACTIONS(484), - [sym_raw_string] = ACTIONS(484), - [anon_sym_DOLLAR] = ACTIONS(887), - [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(887), - [sym_comment] = ACTIONS(52), - }, - [704] = { - [sym_special_variable_name] = STATE(995), - [anon_sym_RBRACE] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(62), - [anon_sym_AT] = ACTIONS(62), - [anon_sym_COLON] = ACTIONS(324), - [anon_sym_COLON_QMARK] = ACTIONS(322), - [anon_sym_COLON_DASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), - }, - [705] = { - [anon_sym_RBRACE] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2062), - [anon_sym_EQ] = ACTIONS(2064), - [anon_sym_COLON] = ACTIONS(2066), - [anon_sym_COLON_QMARK] = ACTIONS(2064), - [anon_sym_COLON_DASH] = ACTIONS(2064), - [anon_sym_PERCENT] = ACTIONS(2064), - [anon_sym_SLASH] = ACTIONS(2064), - [sym_comment] = ACTIONS(52), - }, - [706] = { - [anon_sym_RBRACE] = ACTIONS(2068), - [anon_sym_LBRACK] = ACTIONS(2070), - [anon_sym_EQ] = ACTIONS(2072), - [anon_sym_COLON] = ACTIONS(2074), - [anon_sym_COLON_QMARK] = ACTIONS(2072), - [anon_sym_COLON_DASH] = ACTIONS(2072), - [anon_sym_PERCENT] = ACTIONS(2072), - [anon_sym_SLASH] = ACTIONS(2072), - [sym_comment] = ACTIONS(52), - }, - [707] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2076), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), - }, - [708] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2076), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [709] = { - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_BQUOTE] = ACTIONS(2076), - [sym_comment] = ACTIONS(52), - }, - [710] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(2076), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [711] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2078), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), - }, - [712] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2078), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [713] = { - [sym_file_descriptor] = ACTIONS(2080), - [sym_variable_name] = ACTIONS(2080), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_SEMI_SEMI] = ACTIONS(2082), - [anon_sym_PIPE_AMP] = ACTIONS(2082), - [anon_sym_AMP_AMP] = ACTIONS(2082), - [anon_sym_PIPE_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_GT_GT] = ACTIONS(2082), - [anon_sym_AMP_GT] = ACTIONS(2082), - [anon_sym_AMP_GT_GT] = ACTIONS(2082), - [anon_sym_LT_AMP] = ACTIONS(2082), - [anon_sym_GT_AMP] = ACTIONS(2082), - [anon_sym_DQUOTE] = ACTIONS(2082), - [sym_raw_string] = ACTIONS(2082), - [anon_sym_DOLLAR] = ACTIONS(2082), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2082), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2082), - [anon_sym_BQUOTE] = ACTIONS(2082), - [anon_sym_LT_LPAREN] = ACTIONS(2082), - [anon_sym_GT_LPAREN] = ACTIONS(2082), - [sym_word] = ACTIONS(2082), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_LF] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - }, - [714] = { - [sym_concatenation] = STATE(423), - [sym_string] = STATE(417), - [sym_simple_expansion] = STATE(417), - [sym_expansion] = STATE(417), - [sym_command_substitution] = STATE(417), - [sym_process_substitution] = STATE(417), - [aux_sym_for_statement_repeat1] = STATE(714), - [anon_sym_RPAREN] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(2084), - [sym_raw_string] = ACTIONS(2087), - [anon_sym_DOLLAR] = ACTIONS(2090), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2093), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2096), - [anon_sym_BQUOTE] = ACTIONS(2099), - [anon_sym_LT_LPAREN] = ACTIONS(2102), - [anon_sym_GT_LPAREN] = ACTIONS(2102), - [sym_word] = ACTIONS(2105), - [sym_comment] = ACTIONS(52), - }, - [715] = { - [sym_file_descriptor] = ACTIONS(1080), - [sym__concat] = ACTIONS(1080), - [sym_variable_name] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1082), - [anon_sym_RPAREN] = ACTIONS(1082), - [anon_sym_SEMI_SEMI] = ACTIONS(1082), - [anon_sym_PIPE_AMP] = ACTIONS(1082), - [anon_sym_AMP_AMP] = ACTIONS(1082), - [anon_sym_PIPE_PIPE] = ACTIONS(1082), - [anon_sym_LT] = ACTIONS(1082), - [anon_sym_GT] = ACTIONS(1082), - [anon_sym_GT_GT] = ACTIONS(1082), - [anon_sym_AMP_GT] = ACTIONS(1082), - [anon_sym_AMP_GT_GT] = ACTIONS(1082), - [anon_sym_LT_AMP] = ACTIONS(1082), - [anon_sym_GT_AMP] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(1082), - [anon_sym_DOLLAR] = ACTIONS(1082), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1082), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1082), - [anon_sym_BQUOTE] = ACTIONS(1082), - [anon_sym_LT_LPAREN] = ACTIONS(1082), - [anon_sym_GT_LPAREN] = ACTIONS(1082), - [sym_word] = ACTIONS(1082), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_LF] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - }, - [716] = { - [sym_file_descriptor] = ACTIONS(1101), - [sym__concat] = ACTIONS(1101), - [sym_variable_name] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1103), - [anon_sym_SEMI_SEMI] = ACTIONS(1103), - [anon_sym_PIPE_AMP] = ACTIONS(1103), - [anon_sym_AMP_AMP] = ACTIONS(1103), - [anon_sym_PIPE_PIPE] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1103), - [anon_sym_GT] = ACTIONS(1103), - [anon_sym_GT_GT] = ACTIONS(1103), - [anon_sym_AMP_GT] = ACTIONS(1103), - [anon_sym_AMP_GT_GT] = ACTIONS(1103), - [anon_sym_LT_AMP] = ACTIONS(1103), - [anon_sym_GT_AMP] = ACTIONS(1103), - [anon_sym_DQUOTE] = ACTIONS(1103), - [sym_raw_string] = ACTIONS(1103), - [anon_sym_DOLLAR] = ACTIONS(1103), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1103), - [anon_sym_BQUOTE] = ACTIONS(1103), - [anon_sym_LT_LPAREN] = ACTIONS(1103), - [anon_sym_GT_LPAREN] = ACTIONS(1103), - [sym_word] = ACTIONS(1103), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_LF] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1103), - }, - [717] = { - [aux_sym_concatenation_repeat1] = STATE(717), - [sym_file_descriptor] = ACTIONS(1101), - [sym__concat] = ACTIONS(2108), - [sym_variable_name] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_SEMI_SEMI] = ACTIONS(1103), - [anon_sym_PIPE_AMP] = ACTIONS(1103), - [anon_sym_AMP_AMP] = ACTIONS(1103), - [anon_sym_PIPE_PIPE] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1103), - [anon_sym_GT] = ACTIONS(1103), - [anon_sym_GT_GT] = ACTIONS(1103), - [anon_sym_AMP_GT] = ACTIONS(1103), - [anon_sym_AMP_GT_GT] = ACTIONS(1103), - [anon_sym_LT_AMP] = ACTIONS(1103), - [anon_sym_GT_AMP] = ACTIONS(1103), - [anon_sym_DQUOTE] = ACTIONS(1103), - [sym_raw_string] = ACTIONS(1103), - [anon_sym_DOLLAR] = ACTIONS(1103), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1103), - [anon_sym_BQUOTE] = ACTIONS(1103), - [anon_sym_LT_LPAREN] = ACTIONS(1103), - [anon_sym_GT_LPAREN] = ACTIONS(1103), - [sym_word] = ACTIONS(1103), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_LF] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1103), - }, - [718] = { - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [sym_comment] = ACTIONS(52), - }, - [719] = { - [anon_sym_RBRACE] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(2117), - [sym_comment] = ACTIONS(52), - }, - [720] = { - [sym_file_descriptor] = ACTIONS(1116), - [sym__concat] = ACTIONS(1116), - [sym_variable_name] = ACTIONS(1116), - [anon_sym_PIPE] = ACTIONS(1118), - [anon_sym_RPAREN] = ACTIONS(1118), - [anon_sym_SEMI_SEMI] = ACTIONS(1118), - [anon_sym_PIPE_AMP] = ACTIONS(1118), - [anon_sym_AMP_AMP] = ACTIONS(1118), - [anon_sym_PIPE_PIPE] = ACTIONS(1118), - [anon_sym_LT] = ACTIONS(1118), - [anon_sym_GT] = ACTIONS(1118), - [anon_sym_GT_GT] = ACTIONS(1118), - [anon_sym_AMP_GT] = ACTIONS(1118), - [anon_sym_AMP_GT_GT] = ACTIONS(1118), - [anon_sym_LT_AMP] = ACTIONS(1118), - [anon_sym_GT_AMP] = ACTIONS(1118), - [anon_sym_DQUOTE] = ACTIONS(1118), - [sym_raw_string] = ACTIONS(1118), - [anon_sym_DOLLAR] = ACTIONS(1118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1118), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1118), - [anon_sym_BQUOTE] = ACTIONS(1118), - [anon_sym_LT_LPAREN] = ACTIONS(1118), - [anon_sym_GT_LPAREN] = ACTIONS(1118), - [sym_word] = ACTIONS(1118), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_LF] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - }, - [721] = { - [anon_sym_AT] = ACTIONS(2119), - [sym_comment] = ACTIONS(52), - }, - [722] = { - [sym_concatenation] = STATE(1011), - [sym_string] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [anon_sym_RBRACE] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(2123), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(2125), - [sym_comment] = ACTIONS(52), - }, - [723] = { - [sym_file_descriptor] = ACTIONS(1128), - [sym__concat] = ACTIONS(1128), - [sym_variable_name] = ACTIONS(1128), - [anon_sym_PIPE] = ACTIONS(1130), - [anon_sym_RPAREN] = ACTIONS(1130), - [anon_sym_SEMI_SEMI] = ACTIONS(1130), - [anon_sym_PIPE_AMP] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1130), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_LT] = ACTIONS(1130), - [anon_sym_GT] = ACTIONS(1130), - [anon_sym_GT_GT] = ACTIONS(1130), - [anon_sym_AMP_GT] = ACTIONS(1130), - [anon_sym_AMP_GT_GT] = ACTIONS(1130), - [anon_sym_LT_AMP] = ACTIONS(1130), - [anon_sym_GT_AMP] = ACTIONS(1130), - [anon_sym_DQUOTE] = ACTIONS(1130), - [sym_raw_string] = ACTIONS(1130), - [anon_sym_DOLLAR] = ACTIONS(1130), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1130), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1130), - [anon_sym_BQUOTE] = ACTIONS(1130), - [anon_sym_LT_LPAREN] = ACTIONS(1130), - [anon_sym_GT_LPAREN] = ACTIONS(1130), - [sym_word] = ACTIONS(1130), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1130), - [anon_sym_LF] = ACTIONS(1130), - [anon_sym_AMP] = ACTIONS(1130), - }, - [724] = { - [anon_sym_AT] = ACTIONS(2127), - [sym_comment] = ACTIONS(52), - }, - [725] = { - [sym_concatenation] = STATE(1014), - [sym_string] = STATE(1013), - [sym_simple_expansion] = STATE(1013), - [sym_expansion] = STATE(1013), - [sym_command_substitution] = STATE(1013), - [sym_process_substitution] = STATE(1013), - [anon_sym_RBRACE] = ACTIONS(2115), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(2129), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(2131), - [sym_comment] = ACTIONS(52), - }, - [726] = { - [sym_file_descriptor] = ACTIONS(1222), - [sym__concat] = ACTIONS(1222), - [sym_variable_name] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1224), - [anon_sym_SEMI_SEMI] = ACTIONS(1224), - [anon_sym_PIPE_AMP] = ACTIONS(1224), - [anon_sym_AMP_AMP] = ACTIONS(1224), - [anon_sym_PIPE_PIPE] = ACTIONS(1224), - [anon_sym_LT] = ACTIONS(1224), - [anon_sym_GT] = ACTIONS(1224), - [anon_sym_GT_GT] = ACTIONS(1224), - [anon_sym_AMP_GT] = ACTIONS(1224), - [anon_sym_AMP_GT_GT] = ACTIONS(1224), - [anon_sym_LT_AMP] = ACTIONS(1224), - [anon_sym_GT_AMP] = ACTIONS(1224), - [anon_sym_DQUOTE] = ACTIONS(1224), - [sym_raw_string] = ACTIONS(1224), - [anon_sym_DOLLAR] = ACTIONS(1224), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1224), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1224), - [anon_sym_BQUOTE] = ACTIONS(1224), - [anon_sym_LT_LPAREN] = ACTIONS(1224), - [anon_sym_GT_LPAREN] = ACTIONS(1224), - [sym_word] = ACTIONS(1224), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym_LF] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - }, - [727] = { - [sym_file_descriptor] = ACTIONS(1274), - [sym__concat] = ACTIONS(1274), - [sym_variable_name] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_RPAREN] = ACTIONS(1276), - [anon_sym_SEMI_SEMI] = ACTIONS(1276), - [anon_sym_PIPE_AMP] = ACTIONS(1276), - [anon_sym_AMP_AMP] = ACTIONS(1276), - [anon_sym_PIPE_PIPE] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1276), - [anon_sym_GT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_AMP_GT] = ACTIONS(1276), - [anon_sym_AMP_GT_GT] = ACTIONS(1276), - [anon_sym_LT_AMP] = ACTIONS(1276), - [anon_sym_GT_AMP] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_raw_string] = ACTIONS(1276), - [anon_sym_DOLLAR] = ACTIONS(1276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), - [anon_sym_BQUOTE] = ACTIONS(1276), - [anon_sym_LT_LPAREN] = ACTIONS(1276), - [anon_sym_GT_LPAREN] = ACTIONS(1276), - [sym_word] = ACTIONS(1276), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_LF] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - }, - [728] = { - [sym__concat] = ACTIONS(450), - [anon_sym_SEMI_SEMI] = ACTIONS(452), - [anon_sym_DQUOTE] = ACTIONS(452), - [sym_raw_string] = ACTIONS(452), - [anon_sym_DOLLAR] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(452), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(452), - [anon_sym_BQUOTE] = ACTIONS(452), - [anon_sym_LT_LPAREN] = ACTIONS(452), - [anon_sym_GT_LPAREN] = ACTIONS(452), - [sym_word] = ACTIONS(452), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(452), - [anon_sym_LF] = ACTIONS(452), - [anon_sym_AMP] = ACTIONS(452), - }, - [729] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(298), - [anon_sym_DQUOTE] = ACTIONS(2133), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), - }, - [730] = { - [sym_string] = STATE(1016), - [sym_simple_expansion] = STATE(1016), - [sym_expansion] = STATE(1016), - [sym_command_substitution] = STATE(1016), - [sym_process_substitution] = STATE(1016), - [anon_sym_DQUOTE] = ACTIONS(781), - [sym_raw_string] = ACTIONS(2135), - [anon_sym_DOLLAR] = ACTIONS(785), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(787), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(789), - [anon_sym_BQUOTE] = ACTIONS(791), - [anon_sym_LT_LPAREN] = ACTIONS(793), - [anon_sym_GT_LPAREN] = ACTIONS(793), - [sym_word] = ACTIONS(2137), - [sym_comment] = ACTIONS(52), - }, - [731] = { - [aux_sym_concatenation_repeat1] = STATE(1017), - [sym__concat] = ACTIONS(1444), - [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(64), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_LF] = ACTIONS(476), - [anon_sym_AMP] = ACTIONS(476), - }, - [732] = { - [sym__concat] = ACTIONS(322), - [anon_sym_SEMI_SEMI] = ACTIONS(478), - [anon_sym_DQUOTE] = ACTIONS(478), - [sym_raw_string] = ACTIONS(478), - [anon_sym_DOLLAR] = ACTIONS(478), - [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(478), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_LF] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(478), - }, - [733] = { - [sym__concat] = ACTIONS(480), - [anon_sym_SEMI_SEMI] = ACTIONS(482), - [anon_sym_DQUOTE] = ACTIONS(482), - [sym_raw_string] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(482), - [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(482), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(482), - [anon_sym_LF] = ACTIONS(482), - [anon_sym_AMP] = ACTIONS(482), - }, - [734] = { - [sym__concat] = ACTIONS(484), - [anon_sym_SEMI_SEMI] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(486), - [sym_raw_string] = ACTIONS(486), - [anon_sym_DOLLAR] = ACTIONS(486), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(486), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(486), - [anon_sym_BQUOTE] = ACTIONS(486), - [anon_sym_LT_LPAREN] = ACTIONS(486), - [anon_sym_GT_LPAREN] = ACTIONS(486), - [sym_word] = ACTIONS(486), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(486), - [anon_sym_LF] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(486), - }, - [735] = { - [sym_special_variable_name] = STATE(1019), - [anon_sym_RBRACE] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(62), - [anon_sym_AT] = ACTIONS(62), - [anon_sym_COLON] = ACTIONS(324), - [anon_sym_COLON_QMARK] = ACTIONS(322), - [anon_sym_COLON_DASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(2139), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), - }, - [736] = { - [anon_sym_RBRACE] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2143), - [anon_sym_EQ] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(2147), - [anon_sym_COLON_QMARK] = ACTIONS(2145), - [anon_sym_COLON_DASH] = ACTIONS(2145), - [anon_sym_PERCENT] = ACTIONS(2145), - [anon_sym_SLASH] = ACTIONS(2145), - [sym_comment] = ACTIONS(52), - }, - [737] = { - [anon_sym_RBRACE] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_EQ] = ACTIONS(2153), - [anon_sym_COLON] = ACTIONS(2155), - [anon_sym_COLON_QMARK] = ACTIONS(2153), - [anon_sym_COLON_DASH] = ACTIONS(2153), - [anon_sym_PERCENT] = ACTIONS(2153), - [anon_sym_SLASH] = ACTIONS(2153), - [sym_comment] = ACTIONS(52), - }, - [738] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2157), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), - }, - [739] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2157), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [740] = { - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_BQUOTE] = ACTIONS(2157), - [sym_comment] = ACTIONS(52), - }, - [741] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(2157), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [742] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2159), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), - }, - [743] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2159), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [744] = { - [sym_do_group] = STATE(1028), - [anon_sym_do] = ACTIONS(330), - [sym_comment] = ACTIONS(52), - }, - [745] = { - [sym_concatenation] = STATE(448), - [sym_string] = STATE(442), - [sym_simple_expansion] = STATE(442), - [sym_expansion] = STATE(442), - [sym_command_substitution] = STATE(442), - [sym_process_substitution] = STATE(442), - [aux_sym_for_statement_repeat1] = STATE(745), - [anon_sym_SEMI_SEMI] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(2161), - [sym_raw_string] = ACTIONS(2164), - [anon_sym_DOLLAR] = ACTIONS(2167), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2170), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2173), - [anon_sym_BQUOTE] = ACTIONS(2176), - [anon_sym_LT_LPAREN] = ACTIONS(2179), - [anon_sym_GT_LPAREN] = ACTIONS(2179), - [sym_word] = ACTIONS(2164), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym_LF] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - }, - [746] = { - [sym_do_group] = STATE(1029), - [anon_sym_do] = ACTIONS(330), - [sym_comment] = ACTIONS(52), - }, - [747] = { - [sym_file_descriptor] = ACTIONS(606), - [sym_variable_name] = ACTIONS(606), - [anon_sym_for] = ACTIONS(608), - [anon_sym_while] = ACTIONS(608), - [anon_sym_done] = ACTIONS(608), - [anon_sym_if] = ACTIONS(608), - [anon_sym_case] = ACTIONS(608), - [anon_sym_function] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(606), - [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_LBRACK_LBRACK] = ACTIONS(608), - [anon_sym_declare] = ACTIONS(608), - [anon_sym_typeset] = ACTIONS(608), - [anon_sym_export] = ACTIONS(608), - [anon_sym_readonly] = ACTIONS(608), - [anon_sym_local] = ACTIONS(608), - [anon_sym_LT] = ACTIONS(608), - [anon_sym_GT] = ACTIONS(608), - [anon_sym_GT_GT] = ACTIONS(606), - [anon_sym_AMP_GT] = ACTIONS(608), - [anon_sym_AMP_GT_GT] = ACTIONS(606), - [anon_sym_LT_AMP] = ACTIONS(606), - [anon_sym_GT_AMP] = ACTIONS(606), - [anon_sym_DQUOTE] = ACTIONS(606), - [sym_raw_string] = ACTIONS(606), - [anon_sym_DOLLAR] = ACTIONS(608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(606), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), - [anon_sym_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(606), - [anon_sym_GT_LPAREN] = ACTIONS(606), - [sym_word] = ACTIONS(610), - [sym_comment] = ACTIONS(52), - }, - [748] = { - [anon_sym_PIPE] = ACTIONS(2182), - [anon_sym_RPAREN] = ACTIONS(2182), - [anon_sym_SEMI_SEMI] = ACTIONS(2182), - [anon_sym_PIPE_AMP] = ACTIONS(2182), - [anon_sym_AMP_AMP] = ACTIONS(2182), - [anon_sym_PIPE_PIPE] = ACTIONS(2182), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2182), - [anon_sym_LF] = ACTIONS(2182), - [anon_sym_AMP] = ACTIONS(2182), - }, - [749] = { - [sym__terminated_statement] = STATE(452), - [sym_for_statement] = STATE(453), - [sym_while_statement] = STATE(453), - [sym_if_statement] = STATE(453), - [sym_case_statement] = STATE(453), - [sym_function_definition] = STATE(453), - [sym_subshell] = STATE(453), - [sym_pipeline] = STATE(453), - [sym_list] = STATE(453), - [sym_bracket_command] = STATE(453), - [sym_command] = STATE(453), + [sym_identifier] = ACTIONS(1649), + [anon_sym_SEMI] = ACTIONS(1649), + [anon_sym_LF] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + }, + [556] = { + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(1651), + [anon_sym_RBRACE] = ACTIONS(1653), + [sym_comment] = ACTIONS(50), + }, + [557] = { + [sym__concat] = ACTIONS(1641), + [anon_sym_RBRACE] = ACTIONS(1645), + [sym_comment] = ACTIONS(50), + }, + [558] = { + [anon_sym_RBRACK] = ACTIONS(1655), + [sym_comment] = ACTIONS(50), + }, + [559] = { + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(1657), + [anon_sym_RBRACE] = ACTIONS(1659), + [sym_comment] = ACTIONS(50), + }, + [560] = { + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1663), + [sym_comment] = ACTIONS(50), + }, + [561] = { + [sym__concat] = ACTIONS(1655), + [anon_sym_RBRACE] = ACTIONS(1659), + [sym_comment] = ACTIONS(50), + }, + [562] = { + [sym_file_descriptor] = ACTIONS(731), + [sym_word] = ACTIONS(731), + [sym__concat] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(1527), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_LT_LT_DASH] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(1527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1527), + }, + [563] = { + [sym_file_descriptor] = ACTIONS(735), + [sym_word] = ACTIONS(735), + [sym__concat] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(1529), + [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(1529), + [anon_sym_GT] = ACTIONS(1529), + [anon_sym_GT_GT] = ACTIONS(735), + [anon_sym_AMP_GT] = ACTIONS(1529), + [anon_sym_AMP_GT_GT] = ACTIONS(735), + [anon_sym_LT_AMP] = ACTIONS(735), + [anon_sym_GT_AMP] = ACTIONS(735), + [anon_sym_LT_LT] = ACTIONS(1529), + [anon_sym_LT_LT_DASH] = ACTIONS(735), + [anon_sym_DQUOTE] = ACTIONS(735), + [sym_raw_string] = ACTIONS(735), + [anon_sym_DOLLAR] = ACTIONS(1529), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1529), + }, + [564] = { + [aux_sym_concatenation_repeat1] = STATE(564), + [sym_file_descriptor] = ACTIONS(731), + [sym_word] = ACTIONS(731), + [sym__concat] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(1527), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_LT_LT_DASH] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(1527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1527), + }, + [565] = { + [aux_sym_concatenation_repeat1] = STATE(855), + [sym_file_descriptor] = ACTIONS(760), + [sym_word] = ACTIONS(760), + [sym__concat] = ACTIONS(426), + [sym_variable_name] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_PIPE_AMP] = ACTIONS(760), + [anon_sym_AMP_AMP] = ACTIONS(760), + [anon_sym_PIPE_PIPE] = ACTIONS(760), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1668), + [anon_sym_GT_GT] = ACTIONS(760), + [anon_sym_AMP_GT] = ACTIONS(1668), + [anon_sym_AMP_GT_GT] = ACTIONS(760), + [anon_sym_LT_AMP] = ACTIONS(760), + [anon_sym_GT_AMP] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(760), + [sym_raw_string] = ACTIONS(760), + [anon_sym_DOLLAR] = ACTIONS(1668), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(760), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(760), + [anon_sym_BQUOTE] = ACTIONS(760), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1668), + }, + [566] = { + [sym_file_descriptor] = ACTIONS(760), + [sym_word] = ACTIONS(760), + [sym_variable_name] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_PIPE_AMP] = ACTIONS(760), + [anon_sym_AMP_AMP] = ACTIONS(760), + [anon_sym_PIPE_PIPE] = ACTIONS(760), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1668), + [anon_sym_GT_GT] = ACTIONS(760), + [anon_sym_AMP_GT] = ACTIONS(1668), + [anon_sym_AMP_GT_GT] = ACTIONS(760), + [anon_sym_LT_AMP] = ACTIONS(760), + [anon_sym_GT_AMP] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(760), + [sym_raw_string] = ACTIONS(760), + [anon_sym_DOLLAR] = ACTIONS(1668), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(760), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(760), + [anon_sym_BQUOTE] = ACTIONS(760), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1668), + }, + [567] = { + [sym_concatenation] = STATE(72), + [sym_string] = STATE(414), + [sym_simple_expansion] = STATE(414), + [sym_expansion] = STATE(414), + [sym_command_substitution] = STATE(414), + [sym_process_substitution] = STATE(414), + [aux_sym_for_statement_repeat1] = STATE(857), + [sym_word] = ACTIONS(766), + [anon_sym_RPAREN] = ACTIONS(1670), + [anon_sym_DQUOTE] = ACTIONS(102), + [sym_raw_string] = ACTIONS(766), + [anon_sym_DOLLAR] = ACTIONS(104), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(108), + [anon_sym_BQUOTE] = ACTIONS(110), + [anon_sym_LT_LPAREN] = ACTIONS(112), + [anon_sym_GT_LPAREN] = ACTIONS(112), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(770), + }, + [568] = { + [aux_sym_concatenation_repeat1] = STATE(858), + [sym_file_descriptor] = ACTIONS(784), + [sym_word] = ACTIONS(784), + [sym__concat] = ACTIONS(426), + [sym_variable_name] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_RPAREN] = ACTIONS(784), + [anon_sym_PIPE_AMP] = ACTIONS(784), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_GT] = ACTIONS(1672), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_AMP_GT] = ACTIONS(1672), + [anon_sym_AMP_GT_GT] = ACTIONS(784), + [anon_sym_LT_AMP] = ACTIONS(784), + [anon_sym_GT_AMP] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(784), + [sym_raw_string] = ACTIONS(784), + [anon_sym_DOLLAR] = ACTIONS(1672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(784), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(784), + [anon_sym_BQUOTE] = ACTIONS(784), + [anon_sym_LT_LPAREN] = ACTIONS(784), + [anon_sym_GT_LPAREN] = ACTIONS(784), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1672), + }, + [569] = { + [sym_concatenation] = STATE(441), + [sym_string] = STATE(433), + [sym_simple_expansion] = STATE(433), + [sym_expansion] = STATE(433), + [sym_command_substitution] = STATE(433), + [sym_process_substitution] = STATE(433), + [aux_sym_for_statement_repeat1] = STATE(859), + [sym_word] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(790), + [sym_raw_string] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), + [anon_sym_BQUOTE] = ACTIONS(798), + [anon_sym_LT_LPAREN] = ACTIONS(800), + [anon_sym_GT_LPAREN] = ACTIONS(800), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(802), + }, + [570] = { + [sym__terminated_statement] = STATE(444), + [sym_for_statement] = STATE(445), + [sym_while_statement] = STATE(445), + [sym_if_statement] = STATE(445), + [sym_case_statement] = STATE(445), + [sym_function_definition] = STATE(445), + [sym_subshell] = STATE(445), + [sym_pipeline] = STATE(445), + [sym_list] = STATE(445), + [sym_bracket_command] = STATE(445), + [sym_command] = STATE(445), [sym_command_name] = STATE(25), - [sym_variable_assignment] = STATE(454), - [sym_declaration_command] = STATE(453), + [sym_variable_assignment] = STATE(446), + [sym_declaration_command] = STATE(445), [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(749), - [aux_sym_command_repeat1] = STATE(31), - [sym_file_descriptor] = ACTIONS(642), - [sym_variable_name] = ACTIONS(645), - [anon_sym_for] = ACTIONS(650), - [anon_sym_while] = ACTIONS(653), - [anon_sym_done] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(656), - [anon_sym_case] = ACTIONS(659), - [anon_sym_function] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_LBRACK_LBRACK] = ACTIONS(671), - [anon_sym_declare] = ACTIONS(674), - [anon_sym_typeset] = ACTIONS(674), - [anon_sym_export] = ACTIONS(674), - [anon_sym_readonly] = ACTIONS(674), - [anon_sym_local] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(677), - [anon_sym_GT_GT] = ACTIONS(680), - [anon_sym_AMP_GT] = ACTIONS(677), - [anon_sym_AMP_GT_GT] = ACTIONS(680), - [anon_sym_LT_AMP] = ACTIONS(680), - [anon_sym_GT_AMP] = ACTIONS(680), - [anon_sym_DQUOTE] = ACTIONS(683), - [sym_raw_string] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(692), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), - [anon_sym_BQUOTE] = ACTIONS(698), - [anon_sym_LT_LPAREN] = ACTIONS(701), - [anon_sym_GT_LPAREN] = ACTIONS(701), - [sym_word] = ACTIONS(704), - [sym_comment] = ACTIONS(52), - }, - [750] = { - [anon_sym_then] = ACTIONS(2186), - [sym_comment] = ACTIONS(52), - }, - [751] = { - [sym_file_descriptor] = ACTIONS(232), - [sym_variable_name] = ACTIONS(232), - [anon_sym_for] = ACTIONS(234), - [anon_sym_while] = ACTIONS(234), - [anon_sym_if] = ACTIONS(234), - [anon_sym_fi] = ACTIONS(234), - [anon_sym_case] = ACTIONS(234), - [anon_sym_function] = ACTIONS(234), - [anon_sym_LPAREN] = ACTIONS(232), - [anon_sym_LBRACK] = ACTIONS(234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(234), - [anon_sym_declare] = ACTIONS(234), - [anon_sym_typeset] = ACTIONS(234), - [anon_sym_export] = ACTIONS(234), - [anon_sym_readonly] = ACTIONS(234), - [anon_sym_local] = ACTIONS(234), - [anon_sym_LT] = ACTIONS(234), - [anon_sym_GT] = ACTIONS(234), - [anon_sym_GT_GT] = ACTIONS(232), - [anon_sym_AMP_GT] = ACTIONS(234), - [anon_sym_AMP_GT_GT] = ACTIONS(232), - [anon_sym_LT_AMP] = ACTIONS(232), - [anon_sym_GT_AMP] = ACTIONS(232), - [anon_sym_DQUOTE] = ACTIONS(232), - [sym_raw_string] = ACTIONS(232), - [anon_sym_DOLLAR] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(232), - [anon_sym_BQUOTE] = ACTIONS(232), - [anon_sym_LT_LPAREN] = ACTIONS(232), - [anon_sym_GT_LPAREN] = ACTIONS(232), - [sym_word] = ACTIONS(236), - [sym_comment] = ACTIONS(52), - }, - [752] = { - [anon_sym_PIPE] = ACTIONS(238), - [anon_sym_SEMI_SEMI] = ACTIONS(2188), - [anon_sym_PIPE_AMP] = ACTIONS(238), - [anon_sym_AMP_AMP] = ACTIONS(242), - [anon_sym_PIPE_PIPE] = ACTIONS(242), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2188), - [anon_sym_LF] = ACTIONS(2188), - [anon_sym_AMP] = ACTIONS(2188), - }, - [753] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(238), - [anon_sym_SEMI_SEMI] = ACTIONS(2188), - [anon_sym_PIPE_AMP] = ACTIONS(238), - [anon_sym_AMP_AMP] = ACTIONS(242), - [anon_sym_PIPE_PIPE] = ACTIONS(242), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_AMP_GT] = ACTIONS(268), - [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(268), - [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(268), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2188), - [anon_sym_LF] = ACTIONS(2188), - [anon_sym_AMP] = ACTIONS(2188), - }, - [754] = { - [sym__terminated_statement] = STATE(751), - [sym_for_statement] = STATE(752), - [sym_while_statement] = STATE(752), - [sym_if_statement] = STATE(752), - [sym_case_statement] = STATE(752), - [sym_function_definition] = STATE(752), - [sym_subshell] = STATE(752), - [sym_pipeline] = STATE(752), - [sym_list] = STATE(752), - [sym_bracket_command] = STATE(752), - [sym_command] = STATE(752), - [sym_command_name] = STATE(25), - [sym_variable_assignment] = STATE(753), - [sym_declaration_command] = STATE(752), - [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(1032), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(861), [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(2190), - [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), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_done] = ACTIONS(1674), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), [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), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), }, - [755] = { - [sym_file_descriptor] = ACTIONS(606), - [sym_variable_name] = ACTIONS(606), - [anon_sym_for] = ACTIONS(608), - [anon_sym_while] = ACTIONS(608), - [anon_sym_if] = ACTIONS(608), - [anon_sym_fi] = ACTIONS(608), - [anon_sym_elif] = ACTIONS(608), - [anon_sym_else] = ACTIONS(608), - [anon_sym_case] = ACTIONS(608), - [anon_sym_function] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(606), - [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_LBRACK_LBRACK] = ACTIONS(608), - [anon_sym_declare] = ACTIONS(608), - [anon_sym_typeset] = ACTIONS(608), - [anon_sym_export] = ACTIONS(608), - [anon_sym_readonly] = ACTIONS(608), - [anon_sym_local] = ACTIONS(608), - [anon_sym_LT] = ACTIONS(608), - [anon_sym_GT] = ACTIONS(608), - [anon_sym_GT_GT] = ACTIONS(606), - [anon_sym_AMP_GT] = ACTIONS(608), - [anon_sym_AMP_GT_GT] = ACTIONS(606), - [anon_sym_LT_AMP] = ACTIONS(606), - [anon_sym_GT_AMP] = ACTIONS(606), - [anon_sym_DQUOTE] = ACTIONS(606), - [sym_raw_string] = ACTIONS(606), - [anon_sym_DOLLAR] = ACTIONS(608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(606), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), - [anon_sym_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(606), - [anon_sym_GT_LPAREN] = ACTIONS(606), - [sym_word] = ACTIONS(610), - [sym_comment] = ACTIONS(52), + [571] = { + [anon_sym_PIPE] = ACTIONS(1676), + [anon_sym_RPAREN] = ACTIONS(1678), + [anon_sym_PIPE_AMP] = ACTIONS(1678), + [anon_sym_AMP_AMP] = ACTIONS(1678), + [anon_sym_PIPE_PIPE] = ACTIONS(1678), + [anon_sym_BQUOTE] = ACTIONS(1678), + [sym_comment] = ACTIONS(50), }, - [756] = { - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_RPAREN] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2192), - }, - [757] = { - [anon_sym_fi] = ACTIONS(2194), - [sym_comment] = ACTIONS(52), - }, - [758] = { - [sym__terminated_statement] = STATE(459), - [sym_for_statement] = STATE(460), - [sym_while_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_case_statement] = STATE(460), - [sym_function_definition] = STATE(460), - [sym_subshell] = STATE(460), - [sym_pipeline] = STATE(460), - [sym_list] = STATE(460), - [sym_bracket_command] = STATE(460), - [sym_command] = STATE(460), + [572] = { + [sym__terminated_statement] = STATE(451), + [sym_for_statement] = STATE(452), + [sym_while_statement] = STATE(452), + [sym_if_statement] = STATE(452), + [sym_elif_clause] = STATE(453), + [sym_else_clause] = STATE(863), + [sym_case_statement] = STATE(452), + [sym_function_definition] = STATE(452), + [sym_subshell] = STATE(452), + [sym_pipeline] = STATE(452), + [sym_list] = STATE(452), + [sym_bracket_command] = STATE(452), + [sym_command] = STATE(452), [sym_command_name] = STATE(25), - [sym_variable_assignment] = STATE(463), - [sym_declaration_command] = STATE(460), + [sym_variable_assignment] = STATE(455), + [sym_declaration_command] = STATE(452), [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(758), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(864), + [aux_sym_if_statement_repeat1] = STATE(865), [aux_sym_command_repeat1] = STATE(31), - [sym_file_descriptor] = ACTIONS(642), - [sym_variable_name] = ACTIONS(645), - [anon_sym_for] = ACTIONS(650), - [anon_sym_while] = ACTIONS(653), - [anon_sym_if] = ACTIONS(656), - [anon_sym_fi] = ACTIONS(2184), - [anon_sym_elif] = ACTIONS(2184), - [anon_sym_else] = ACTIONS(2184), - [anon_sym_case] = ACTIONS(659), - [anon_sym_function] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_LBRACK_LBRACK] = ACTIONS(671), - [anon_sym_declare] = ACTIONS(674), - [anon_sym_typeset] = ACTIONS(674), - [anon_sym_export] = ACTIONS(674), - [anon_sym_readonly] = ACTIONS(674), - [anon_sym_local] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(677), - [anon_sym_GT_GT] = ACTIONS(680), - [anon_sym_AMP_GT] = ACTIONS(677), - [anon_sym_AMP_GT_GT] = ACTIONS(680), - [anon_sym_LT_AMP] = ACTIONS(680), - [anon_sym_GT_AMP] = ACTIONS(680), - [anon_sym_DQUOTE] = ACTIONS(683), - [sym_raw_string] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(692), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), - [anon_sym_BQUOTE] = ACTIONS(698), - [anon_sym_LT_LPAREN] = ACTIONS(701), - [anon_sym_GT_LPAREN] = ACTIONS(701), - [sym_word] = ACTIONS(704), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_fi] = ACTIONS(1680), + [anon_sym_elif] = ACTIONS(810), + [anon_sym_else] = ACTIONS(812), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), }, - [759] = { - [sym_elif_clause] = STATE(461), - [sym_else_clause] = STATE(1034), - [aux_sym_if_statement_repeat1] = STATE(760), - [anon_sym_fi] = ACTIONS(2194), - [anon_sym_elif] = ACTIONS(1492), - [anon_sym_else] = ACTIONS(1494), - [sym_comment] = ACTIONS(52), - }, - [760] = { - [sym_elif_clause] = STATE(461), - [aux_sym_if_statement_repeat1] = STATE(760), - [anon_sym_fi] = ACTIONS(2196), - [anon_sym_elif] = ACTIONS(2198), - [anon_sym_else] = ACTIONS(2196), - [sym_comment] = ACTIONS(52), - }, - [761] = { - [anon_sym_PIPE] = ACTIONS(2201), - [anon_sym_RPAREN] = ACTIONS(2201), - [anon_sym_SEMI_SEMI] = ACTIONS(2201), - [anon_sym_PIPE_AMP] = ACTIONS(2201), - [anon_sym_AMP_AMP] = ACTIONS(2201), - [anon_sym_PIPE_PIPE] = ACTIONS(2201), + [573] = { + [anon_sym_SEMI_SEMI] = ACTIONS(1682), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2201), - [anon_sym_LF] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), + [anon_sym_SEMI] = ACTIONS(1682), + [anon_sym_LF] = ACTIONS(1682), + [anon_sym_AMP] = ACTIONS(1682), }, - [762] = { - [aux_sym_case_item_repeat1] = STATE(1037), - [aux_sym_concatenation_repeat1] = STATE(1038), - [sym__concat] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2205), - [sym_comment] = ACTIONS(52), + [574] = { + [anon_sym_in] = ACTIONS(1684), + [sym_comment] = ACTIONS(50), }, - [763] = { - [anon_sym_esac] = ACTIONS(2207), - [anon_sym_DQUOTE] = ACTIONS(2209), - [sym_raw_string] = ACTIONS(2209), - [anon_sym_DOLLAR] = ACTIONS(2207), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2209), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2209), - [anon_sym_BQUOTE] = ACTIONS(2209), - [anon_sym_LT_LPAREN] = ACTIONS(2209), - [anon_sym_GT_LPAREN] = ACTIONS(2209), - [sym_word] = ACTIONS(2211), - [sym_comment] = ACTIONS(52), - }, - [764] = { - [aux_sym_case_item_repeat1] = STATE(1037), - [anon_sym_PIPE] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2205), - [sym_comment] = ACTIONS(52), - }, - [765] = { - [sym_case_item] = STATE(763), - [sym_concatenation] = STATE(764), - [sym_string] = STATE(762), - [sym_simple_expansion] = STATE(762), - [sym_expansion] = STATE(762), - [sym_command_substitution] = STATE(762), - [sym_process_substitution] = STATE(762), - [aux_sym_case_statement_repeat1] = STATE(1040), - [anon_sym_esac] = ACTIONS(2213), - [anon_sym_DQUOTE] = ACTIONS(282), - [sym_raw_string] = ACTIONS(1498), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_word] = ACTIONS(1500), - [sym_comment] = ACTIONS(52), - }, - [766] = { - [sym_case_item] = STATE(763), - [sym_concatenation] = STATE(764), - [sym_string] = STATE(762), - [sym_simple_expansion] = STATE(762), - [sym_expansion] = STATE(762), - [sym_command_substitution] = STATE(762), - [sym_process_substitution] = STATE(762), - [aux_sym_case_statement_repeat1] = STATE(1041), - [anon_sym_esac] = ACTIONS(2213), - [anon_sym_DQUOTE] = ACTIONS(282), - [sym_raw_string] = ACTIONS(1498), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_word] = ACTIONS(1500), - [sym_comment] = ACTIONS(52), - }, - [767] = { - [sym__concat] = ACTIONS(1712), - [anon_sym_in] = ACTIONS(1714), - [anon_sym_SEMI_SEMI] = ACTIONS(1714), + [575] = { + [anon_sym_SEMI_SEMI] = ACTIONS(1686), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_LF] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1686), + [anon_sym_LF] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(1686), }, - [768] = { - [anon_sym_AT] = ACTIONS(2215), - [sym_comment] = ACTIONS(52), + [576] = { + [anon_sym_in] = ACTIONS(1688), + [sym_comment] = ACTIONS(50), }, - [769] = { - [sym__concat] = ACTIONS(1718), - [anon_sym_in] = ACTIONS(1720), - [anon_sym_SEMI_SEMI] = ACTIONS(1720), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_LF] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1720), + [577] = { + [anon_sym_RPAREN] = ACTIONS(1690), + [sym_comment] = ACTIONS(50), }, - [770] = { - [anon_sym_AT] = ACTIONS(2217), - [sym_comment] = ACTIONS(52), - }, - [771] = { - [anon_sym_RBRACK] = ACTIONS(2219), - [sym_comment] = ACTIONS(52), - }, - [772] = { - [sym__concat] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1728), - [anon_sym_SEMI_SEMI] = ACTIONS(1728), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_LF] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - }, - [773] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(2221), - [sym_comment] = ACTIONS(52), - }, - [774] = { - [anon_sym_RBRACE] = ACTIONS(2221), - [sym_comment] = ACTIONS(52), - }, - [775] = { - [anon_sym_RBRACK] = ACTIONS(2223), - [sym_comment] = ACTIONS(52), - }, - [776] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(2225), - [sym_comment] = ACTIONS(52), - }, - [777] = { - [anon_sym_RBRACE] = ACTIONS(2225), - [sym_comment] = ACTIONS(52), - }, - [778] = { - [sym_file_redirect] = STATE(1048), - [sym_file_descriptor] = ACTIONS(843), - [anon_sym_PIPE] = ACTIONS(2227), - [anon_sym_SEMI_SEMI] = ACTIONS(2227), - [anon_sym_PIPE_AMP] = ACTIONS(2227), - [anon_sym_AMP_AMP] = ACTIONS(2227), - [anon_sym_PIPE_PIPE] = ACTIONS(2227), - [anon_sym_LT] = ACTIONS(847), - [anon_sym_GT] = ACTIONS(847), - [anon_sym_GT_GT] = ACTIONS(847), - [anon_sym_AMP_GT] = ACTIONS(847), - [anon_sym_AMP_GT_GT] = ACTIONS(847), - [anon_sym_LT_AMP] = ACTIONS(847), - [anon_sym_GT_AMP] = ACTIONS(847), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2227), - [anon_sym_LF] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(2227), - }, - [779] = { - [sym_file_descriptor] = ACTIONS(2229), - [anon_sym_PIPE] = ACTIONS(2231), - [anon_sym_RPAREN] = ACTIONS(2231), - [anon_sym_SEMI_SEMI] = ACTIONS(2231), - [anon_sym_PIPE_AMP] = ACTIONS(2231), - [anon_sym_AMP_AMP] = ACTIONS(2231), - [anon_sym_PIPE_PIPE] = ACTIONS(2231), - [anon_sym_LT] = ACTIONS(2231), - [anon_sym_GT] = ACTIONS(2231), - [anon_sym_GT_GT] = ACTIONS(2231), - [anon_sym_AMP_GT] = ACTIONS(2231), - [anon_sym_AMP_GT_GT] = ACTIONS(2231), - [anon_sym_LT_AMP] = ACTIONS(2231), - [anon_sym_GT_AMP] = ACTIONS(2231), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2231), - [anon_sym_LF] = ACTIONS(2231), - [anon_sym_AMP] = ACTIONS(2231), - }, - [780] = { + [578] = { [sym__terminated_statement] = STATE(23), [sym_for_statement] = STATE(24), [sym_while_statement] = STATE(24), @@ -23086,1788 +18772,3349 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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(780), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(872), [aux_sym_command_repeat1] = STATE(31), - [sym_file_descriptor] = ACTIONS(642), - [sym_variable_name] = ACTIONS(645), - [anon_sym_for] = ACTIONS(650), - [anon_sym_while] = ACTIONS(653), - [anon_sym_if] = ACTIONS(656), - [anon_sym_case] = ACTIONS(659), - [anon_sym_function] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RBRACE] = ACTIONS(648), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_LBRACK_LBRACK] = ACTIONS(671), - [anon_sym_declare] = ACTIONS(674), - [anon_sym_typeset] = ACTIONS(674), - [anon_sym_export] = ACTIONS(674), - [anon_sym_readonly] = ACTIONS(674), - [anon_sym_local] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(677), - [anon_sym_GT_GT] = ACTIONS(680), - [anon_sym_AMP_GT] = ACTIONS(677), - [anon_sym_AMP_GT_GT] = ACTIONS(680), - [anon_sym_LT_AMP] = ACTIONS(680), - [anon_sym_GT_AMP] = ACTIONS(680), - [anon_sym_DQUOTE] = ACTIONS(683), - [sym_raw_string] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(692), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), - [anon_sym_BQUOTE] = ACTIONS(698), - [anon_sym_LT_LPAREN] = ACTIONS(701), - [anon_sym_GT_LPAREN] = ACTIONS(701), - [sym_word] = ACTIONS(704), - [sym_comment] = ACTIONS(52), - }, - [781] = { - [sym_concatenation] = STATE(1050), - [sym_string] = STATE(1049), - [sym_simple_expansion] = STATE(1049), - [sym_expansion] = STATE(1049), - [sym_command_substitution] = STATE(1049), - [sym_process_substitution] = STATE(1049), - [anon_sym_DQUOTE] = ACTIONS(1539), - [sym_raw_string] = ACTIONS(2233), - [anon_sym_DOLLAR] = ACTIONS(1543), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1547), - [anon_sym_BQUOTE] = ACTIONS(1549), - [anon_sym_LT_LPAREN] = ACTIONS(1551), - [anon_sym_GT_LPAREN] = ACTIONS(1551), - [sym_word] = ACTIONS(2235), - [sym_comment] = ACTIONS(52), - }, - [782] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(1052), - [anon_sym_DQUOTE] = ACTIONS(2237), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), - }, - [783] = { - [aux_sym_concatenation_repeat1] = STATE(1054), - [sym__concat] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_SEMI_SEMI] = ACTIONS(1290), - [anon_sym_PIPE_AMP] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - }, - [784] = { - [sym_special_variable_name] = STATE(1057), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_DOLLAR] = ACTIONS(2241), - [anon_sym_POUND] = ACTIONS(2241), - [anon_sym_AT] = ACTIONS(2241), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(2243), - [anon_sym_STAR] = ACTIONS(2241), - [anon_sym_QMARK] = ACTIONS(2241), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_0] = ACTIONS(2245), - [anon_sym__] = ACTIONS(2245), - }, - [785] = { - [sym_special_variable_name] = STATE(1060), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(2247), - [anon_sym_AT] = ACTIONS(62), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), - }, - [786] = { - [sym_for_statement] = STATE(1061), - [sym_while_statement] = STATE(1061), - [sym_if_statement] = STATE(1061), - [sym_case_statement] = STATE(1061), - [sym_function_definition] = STATE(1061), - [sym_subshell] = STATE(1061), - [sym_pipeline] = STATE(1061), - [sym_list] = STATE(1061), - [sym_bracket_command] = STATE(1061), - [sym_command] = STATE(1061), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(1062), - [sym_declaration_command] = STATE(1061), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), [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), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), }, - [787] = { - [sym_for_statement] = STATE(1063), - [sym_while_statement] = STATE(1063), - [sym_if_statement] = STATE(1063), - [sym_case_statement] = STATE(1063), - [sym_function_definition] = STATE(1063), - [sym_subshell] = STATE(1063), - [sym_pipeline] = STATE(1063), - [sym_list] = STATE(1063), - [sym_bracket_command] = STATE(1063), - [sym_command] = STATE(1063), - [sym_command_name] = STATE(140), - [sym_variable_assignment] = STATE(1064), - [sym_declaration_command] = STATE(1063), - [sym_subscript] = STATE(142), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(137), - [sym_simple_expansion] = STATE(137), - [sym_expansion] = STATE(137), - [sym_command_substitution] = STATE(137), - [sym_process_substitution] = STATE(137), - [aux_sym_command_repeat1] = STATE(143), - [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), + [579] = { + [sym_file_redirect] = STATE(875), + [sym_file_descriptor] = ACTIONS(1694), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1698), + [anon_sym_PIPE_AMP] = ACTIONS(1698), + [anon_sym_AMP_AMP] = ACTIONS(1698), + [anon_sym_PIPE_PIPE] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1700), + [anon_sym_GT_GT] = ACTIONS(1702), + [anon_sym_AMP_GT] = ACTIONS(1700), + [anon_sym_AMP_GT_GT] = ACTIONS(1702), + [anon_sym_LT_AMP] = ACTIONS(1702), + [anon_sym_GT_AMP] = ACTIONS(1702), + [sym_comment] = ACTIONS(50), }, - [788] = { - [sym_for_statement] = STATE(1065), - [sym_while_statement] = STATE(1065), - [sym_if_statement] = STATE(1065), - [sym_case_statement] = STATE(1065), - [sym_function_definition] = STATE(1065), - [sym_subshell] = STATE(1065), - [sym_pipeline] = STATE(1065), - [sym_list] = STATE(1065), - [sym_bracket_command] = STATE(1065), - [sym_command] = STATE(1065), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(1066), - [sym_declaration_command] = STATE(1065), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), + [580] = { + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_RPAREN] = ACTIONS(1706), + [anon_sym_PIPE_AMP] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(1706), + [anon_sym_PIPE_PIPE] = ACTIONS(1706), + [anon_sym_BQUOTE] = ACTIONS(1706), + [sym_comment] = ACTIONS(50), }, - [789] = { - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_RPAREN] = ACTIONS(1290), - [anon_sym_SEMI_SEMI] = ACTIONS(1290), - [anon_sym_PIPE_AMP] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), + [581] = { + [sym_file_descriptor] = ACTIONS(600), + [sym_word] = ACTIONS(600), + [sym_variable_name] = ACTIONS(600), + [anon_sym_for] = ACTIONS(602), + [anon_sym_while] = ACTIONS(602), + [anon_sym_if] = ACTIONS(602), + [anon_sym_case] = ACTIONS(602), + [anon_sym_RPAREN] = ACTIONS(1708), + [anon_sym_function] = ACTIONS(602), + [anon_sym_LPAREN] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(602), + [anon_sym_typeset] = ACTIONS(602), + [anon_sym_export] = ACTIONS(602), + [anon_sym_readonly] = ACTIONS(602), + [anon_sym_local] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_GT_GT] = ACTIONS(600), + [anon_sym_AMP_GT] = ACTIONS(602), + [anon_sym_AMP_GT_GT] = ACTIONS(600), + [anon_sym_LT_AMP] = ACTIONS(600), + [anon_sym_GT_AMP] = ACTIONS(600), + [anon_sym_DQUOTE] = ACTIONS(600), + [sym_raw_string] = ACTIONS(600), + [anon_sym_DOLLAR] = ACTIONS(602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(600), + [anon_sym_LT_LPAREN] = ACTIONS(600), + [anon_sym_GT_LPAREN] = ACTIONS(600), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(604), + }, + [582] = { + [anon_sym_PIPE] = ACTIONS(368), + [anon_sym_RPAREN] = ACTIONS(1710), + [anon_sym_SEMI_SEMI] = ACTIONS(1712), + [anon_sym_PIPE_AMP] = ACTIONS(368), + [anon_sym_AMP_AMP] = ACTIONS(374), + [anon_sym_PIPE_PIPE] = ACTIONS(374), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1712), + [anon_sym_LF] = ACTIONS(1712), + [anon_sym_AMP] = ACTIONS(1712), }, - [790] = { - [aux_sym_concatenation_repeat1] = STATE(1067), - [sym_file_descriptor] = ACTIONS(474), - [sym__concat] = ACTIONS(769), - [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), + [583] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(368), + [anon_sym_RPAREN] = ACTIONS(1710), + [anon_sym_SEMI_SEMI] = ACTIONS(1712), + [anon_sym_PIPE_AMP] = ACTIONS(368), + [anon_sym_AMP_AMP] = ACTIONS(374), + [anon_sym_PIPE_PIPE] = ACTIONS(374), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_GT_GT] = ACTIONS(264), + [anon_sym_AMP_GT] = ACTIONS(264), + [anon_sym_AMP_GT_GT] = ACTIONS(264), + [anon_sym_LT_AMP] = ACTIONS(264), + [anon_sym_GT_AMP] = ACTIONS(264), + [anon_sym_DQUOTE] = ACTIONS(264), + [sym_raw_string] = ACTIONS(264), + [anon_sym_DOLLAR] = ACTIONS(264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(264), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(264), + [anon_sym_BQUOTE] = ACTIONS(264), + [anon_sym_LT_LPAREN] = ACTIONS(264), + [anon_sym_GT_LPAREN] = ACTIONS(264), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_LF] = ACTIONS(476), - [anon_sym_AMP] = ACTIONS(476), + [sym_identifier] = ACTIONS(264), + [anon_sym_SEMI] = ACTIONS(1712), + [anon_sym_LF] = ACTIONS(1712), + [anon_sym_AMP] = ACTIONS(1712), }, - [791] = { - [sym_compound_statement] = STATE(1068), - [anon_sym_LBRACE] = ACTIONS(356), - [sym_comment] = ACTIONS(52), + [584] = { + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_PIPE_AMP] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_BQUOTE] = ACTIONS(1716), + [sym_comment] = ACTIONS(50), }, - [792] = { - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_GT] = ACTIONS(2251), - [anon_sym_GT_GT] = ACTIONS(2253), - [anon_sym_AMP_GT] = ACTIONS(2251), - [anon_sym_AMP_GT_GT] = ACTIONS(2253), - [anon_sym_LT_AMP] = ACTIONS(2253), - [anon_sym_GT_AMP] = ACTIONS(2253), - [sym_comment] = ACTIONS(52), - }, - [793] = { - [sym_concatenation] = STATE(789), - [sym_string] = STATE(1070), - [sym_simple_expansion] = STATE(1070), - [sym_expansion] = STATE(1070), - [sym_command_substitution] = STATE(1070), - [sym_process_substitution] = STATE(1070), - [anon_sym_DQUOTE] = ACTIONS(1539), - [sym_raw_string] = ACTIONS(2255), - [anon_sym_DOLLAR] = ACTIONS(1543), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1547), - [anon_sym_BQUOTE] = ACTIONS(1549), - [anon_sym_LT_LPAREN] = ACTIONS(1551), - [anon_sym_GT_LPAREN] = ACTIONS(1551), - [sym_word] = ACTIONS(2257), - [sym_comment] = ACTIONS(52), - }, - [794] = { - [aux_sym_concatenation_repeat1] = STATE(1071), - [sym__concat] = ACTIONS(1653), - [sym_variable_name] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_SEMI_SEMI] = ACTIONS(747), - [anon_sym_PIPE_AMP] = ACTIONS(747), - [anon_sym_AMP_AMP] = ACTIONS(747), - [anon_sym_PIPE_PIPE] = ACTIONS(747), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_LF] = ACTIONS(747), - [anon_sym_AMP] = ACTIONS(747), - }, - [795] = { - [sym_file_redirect] = STATE(956), - [sym_file_descriptor] = ACTIONS(1559), - [anon_sym_PIPE] = ACTIONS(1555), - [anon_sym_RPAREN] = ACTIONS(1555), - [anon_sym_SEMI_SEMI] = ACTIONS(1555), - [anon_sym_PIPE_AMP] = ACTIONS(1555), - [anon_sym_AMP_AMP] = ACTIONS(1555), - [anon_sym_PIPE_PIPE] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1561), - [anon_sym_GT] = ACTIONS(1561), - [anon_sym_GT_GT] = ACTIONS(1561), - [anon_sym_AMP_GT] = ACTIONS(1561), - [anon_sym_AMP_GT_GT] = ACTIONS(1561), - [anon_sym_LT_AMP] = ACTIONS(1561), - [anon_sym_GT_AMP] = ACTIONS(1561), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1555), - [anon_sym_LF] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(1555), - }, - [796] = { - [aux_sym_concatenation_repeat1] = STATE(797), - [sym_file_descriptor] = ACTIONS(725), - [sym__concat] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1973), - [anon_sym_RPAREN] = ACTIONS(1973), - [anon_sym_SEMI_SEMI] = ACTIONS(1973), - [anon_sym_PIPE_AMP] = ACTIONS(1973), - [anon_sym_AMP_AMP] = ACTIONS(1973), - [anon_sym_PIPE_PIPE] = ACTIONS(1973), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_GT] = ACTIONS(1973), - [anon_sym_GT_GT] = ACTIONS(1973), - [anon_sym_AMP_GT] = ACTIONS(1973), - [anon_sym_AMP_GT_GT] = ACTIONS(1973), - [anon_sym_LT_AMP] = ACTIONS(1973), - [anon_sym_GT_AMP] = ACTIONS(1973), - [anon_sym_LT_LT] = ACTIONS(1973), - [anon_sym_LT_LT_DASH] = ACTIONS(1973), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_LF] = ACTIONS(1973), - [anon_sym_AMP] = ACTIONS(1973), - }, - [797] = { - [aux_sym_concatenation_repeat1] = STATE(1072), - [sym_file_descriptor] = ACTIONS(474), - [sym__concat] = ACTIONS(1288), - [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(64), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_LF] = ACTIONS(476), - [anon_sym_AMP] = ACTIONS(476), - }, - [798] = { - [anon_sym_PIPE] = ACTIONS(2259), - [anon_sym_RPAREN] = ACTIONS(2259), - [anon_sym_SEMI_SEMI] = ACTIONS(2259), - [anon_sym_PIPE_AMP] = ACTIONS(2259), - [anon_sym_AMP_AMP] = ACTIONS(2259), - [anon_sym_PIPE_PIPE] = ACTIONS(2259), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_LF] = ACTIONS(2259), - [anon_sym_AMP] = ACTIONS(2259), - }, - [799] = { - [sym_file_redirect] = STATE(154), - [sym_heredoc_redirect] = STATE(154), - [aux_sym_command_repeat2] = STATE(503), - [sym_file_descriptor] = ACTIONS(374), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_RPAREN] = ACTIONS(2025), - [anon_sym_SEMI_SEMI] = ACTIONS(2025), - [anon_sym_PIPE_AMP] = ACTIONS(2025), - [anon_sym_AMP_AMP] = ACTIONS(2025), - [anon_sym_PIPE_PIPE] = ACTIONS(2025), - [anon_sym_LT] = ACTIONS(376), - [anon_sym_GT] = ACTIONS(376), - [anon_sym_GT_GT] = ACTIONS(376), - [anon_sym_AMP_GT] = ACTIONS(376), - [anon_sym_AMP_GT_GT] = ACTIONS(376), - [anon_sym_LT_AMP] = ACTIONS(376), - [anon_sym_GT_AMP] = ACTIONS(376), - [anon_sym_LT_LT] = ACTIONS(250), - [anon_sym_LT_LT_DASH] = ACTIONS(250), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2025), - [anon_sym_LF] = ACTIONS(2025), - [anon_sym_AMP] = ACTIONS(2025), - }, - [800] = { - [sym__concat] = ACTIONS(1712), - [anon_sym_RBRACE] = ACTIONS(1712), - [anon_sym_RBRACK] = ACTIONS(2261), - [anon_sym_DQUOTE] = ACTIONS(1712), - [sym_raw_string] = ACTIONS(1712), - [anon_sym_DOLLAR] = ACTIONS(2261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1712), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1712), - [anon_sym_BQUOTE] = ACTIONS(1712), - [anon_sym_LT_LPAREN] = ACTIONS(1712), - [anon_sym_GT_LPAREN] = ACTIONS(1712), - [sym_word] = ACTIONS(1714), - [sym_comment] = ACTIONS(52), - }, - [801] = { - [anon_sym_AT] = ACTIONS(2263), - [sym_comment] = ACTIONS(52), - }, - [802] = { - [sym__concat] = ACTIONS(1718), - [anon_sym_RBRACE] = ACTIONS(1718), - [anon_sym_RBRACK] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(1718), + [585] = { + [sym_concatenation] = STATE(879), + [sym_string] = STATE(878), + [sym_array] = STATE(879), + [sym_simple_expansion] = STATE(878), + [sym_expansion] = STATE(878), + [sym_command_substitution] = STATE(878), + [sym_process_substitution] = STATE(878), + [sym_word] = ACTIONS(1718), + [sym__empty_value] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DQUOTE] = ACTIONS(1724), [sym_raw_string] = ACTIONS(1718), - [anon_sym_DOLLAR] = ACTIONS(2265), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1718), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), - [anon_sym_BQUOTE] = ACTIONS(1718), - [anon_sym_LT_LPAREN] = ACTIONS(1718), - [anon_sym_GT_LPAREN] = ACTIONS(1718), - [sym_word] = ACTIONS(1720), - [sym_comment] = ACTIONS(52), - }, - [803] = { - [anon_sym_AT] = ACTIONS(2267), - [sym_comment] = ACTIONS(52), - }, - [804] = { - [anon_sym_RBRACK] = ACTIONS(2269), - [sym_comment] = ACTIONS(52), - }, - [805] = { - [sym__concat] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_RBRACK] = ACTIONS(2271), - [anon_sym_DQUOTE] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1726), - [anon_sym_DOLLAR] = ACTIONS(2271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), - [anon_sym_BQUOTE] = ACTIONS(1726), - [anon_sym_LT_LPAREN] = ACTIONS(1726), - [anon_sym_GT_LPAREN] = ACTIONS(1726), - [sym_word] = ACTIONS(1728), - [sym_comment] = ACTIONS(52), - }, - [806] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(2273), - [sym_comment] = ACTIONS(52), - }, - [807] = { - [anon_sym_RBRACE] = ACTIONS(2273), - [sym_comment] = ACTIONS(52), - }, - [808] = { - [anon_sym_RBRACK] = ACTIONS(2275), - [sym_comment] = ACTIONS(52), - }, - [809] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(2277), - [sym_comment] = ACTIONS(52), - }, - [810] = { - [anon_sym_RBRACE] = ACTIONS(2277), - [sym_comment] = ACTIONS(52), - }, - [811] = { - [sym__concat] = ACTIONS(1712), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2261), - [anon_sym_DQUOTE] = ACTIONS(1712), - [sym_raw_string] = ACTIONS(1712), - [anon_sym_DOLLAR] = ACTIONS(2261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1712), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1712), - [anon_sym_BQUOTE] = ACTIONS(1712), - [anon_sym_LT_LPAREN] = ACTIONS(1712), - [anon_sym_GT_LPAREN] = ACTIONS(1712), - [sym_word] = ACTIONS(1714), - [sym_comment] = ACTIONS(52), - }, - [812] = { - [anon_sym_AT] = ACTIONS(2279), - [sym_comment] = ACTIONS(52), - }, - [813] = { - [sym__concat] = ACTIONS(1718), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(1718), - [sym_raw_string] = ACTIONS(1718), - [anon_sym_DOLLAR] = ACTIONS(2265), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1718), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), - [anon_sym_BQUOTE] = ACTIONS(1718), - [anon_sym_LT_LPAREN] = ACTIONS(1718), - [anon_sym_GT_LPAREN] = ACTIONS(1718), - [sym_word] = ACTIONS(1720), - [sym_comment] = ACTIONS(52), - }, - [814] = { - [anon_sym_AT] = ACTIONS(2281), - [sym_comment] = ACTIONS(52), - }, - [815] = { - [anon_sym_RBRACK] = ACTIONS(2283), - [sym_comment] = ACTIONS(52), - }, - [816] = { - [sym__concat] = ACTIONS(1726), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2271), - [anon_sym_DQUOTE] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1726), - [anon_sym_DOLLAR] = ACTIONS(2271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), - [anon_sym_BQUOTE] = ACTIONS(1726), - [anon_sym_LT_LPAREN] = ACTIONS(1726), - [anon_sym_GT_LPAREN] = ACTIONS(1726), - [sym_word] = ACTIONS(1728), - [sym_comment] = ACTIONS(52), - }, - [817] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(2285), - [sym_comment] = ACTIONS(52), - }, - [818] = { - [anon_sym_RBRACE] = ACTIONS(2285), - [sym_comment] = ACTIONS(52), - }, - [819] = { - [anon_sym_RBRACK] = ACTIONS(2287), - [sym_comment] = ACTIONS(52), - }, - [820] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(2289), - [sym_comment] = ACTIONS(52), - }, - [821] = { - [anon_sym_RBRACE] = ACTIONS(2289), - [sym_comment] = ACTIONS(52), - }, - [822] = { - [sym_variable_name] = ACTIONS(1394), - [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), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_LF] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - }, - [823] = { - [sym_concatenation] = STATE(423), - [sym_string] = STATE(417), - [sym_simple_expansion] = STATE(417), - [sym_expansion] = STATE(417), - [sym_command_substitution] = STATE(417), - [sym_process_substitution] = STATE(417), - [aux_sym_for_statement_repeat1] = STATE(714), - [anon_sym_RPAREN] = ACTIONS(2291), - [anon_sym_DQUOTE] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(755), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(759), - [anon_sym_BQUOTE] = ACTIONS(761), - [anon_sym_LT_LPAREN] = ACTIONS(763), - [anon_sym_GT_LPAREN] = ACTIONS(763), - [sym_word] = ACTIONS(765), - [sym_comment] = ACTIONS(52), - }, - [824] = { - [sym__concat] = ACTIONS(450), - [sym_variable_name] = ACTIONS(450), - [anon_sym_PIPE] = ACTIONS(452), - [anon_sym_RPAREN] = ACTIONS(452), - [anon_sym_SEMI_SEMI] = ACTIONS(452), - [anon_sym_PIPE_AMP] = ACTIONS(452), - [anon_sym_AMP_AMP] = ACTIONS(452), - [anon_sym_PIPE_PIPE] = ACTIONS(452), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(452), - [anon_sym_SEMI] = ACTIONS(452), - [anon_sym_LF] = ACTIONS(452), - [anon_sym_AMP] = ACTIONS(452), - }, - [825] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(298), - [anon_sym_DQUOTE] = ACTIONS(2293), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), - }, - [826] = { - [sym_string] = STATE(1087), - [sym_simple_expansion] = STATE(1087), - [sym_expansion] = STATE(1087), - [sym_command_substitution] = STATE(1087), - [sym_process_substitution] = STATE(1087), - [anon_sym_DQUOTE] = ACTIONS(995), - [sym_raw_string] = ACTIONS(2295), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1001), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1003), - [anon_sym_BQUOTE] = ACTIONS(1005), - [anon_sym_LT_LPAREN] = ACTIONS(1007), - [anon_sym_GT_LPAREN] = ACTIONS(1007), - [sym_word] = ACTIONS(2297), - [sym_comment] = ACTIONS(52), - }, - [827] = { - [aux_sym_concatenation_repeat1] = STATE(1088), - [sym__concat] = ACTIONS(1653), - [sym_variable_name] = ACTIONS(474), - [anon_sym_PIPE] = 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(64), - [sym_simple_variable_name] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_LF] = ACTIONS(476), - [anon_sym_AMP] = ACTIONS(476), - }, - [828] = { - [sym__concat] = ACTIONS(322), - [sym_variable_name] = ACTIONS(322), - [anon_sym_PIPE] = ACTIONS(478), - [anon_sym_RPAREN] = ACTIONS(478), - [anon_sym_SEMI_SEMI] = ACTIONS(478), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(478), - [anon_sym_PIPE_PIPE] = ACTIONS(478), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(478), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_LF] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(478), - }, - [829] = { - [sym__concat] = ACTIONS(480), - [sym_variable_name] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(482), - [anon_sym_RPAREN] = ACTIONS(482), - [anon_sym_SEMI_SEMI] = ACTIONS(482), - [anon_sym_PIPE_AMP] = ACTIONS(482), - [anon_sym_AMP_AMP] = ACTIONS(482), - [anon_sym_PIPE_PIPE] = ACTIONS(482), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(482), - [anon_sym_SEMI] = ACTIONS(482), - [anon_sym_LF] = ACTIONS(482), - [anon_sym_AMP] = ACTIONS(482), - }, - [830] = { - [sym__concat] = ACTIONS(484), - [sym_variable_name] = ACTIONS(484), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_RPAREN] = ACTIONS(486), - [anon_sym_SEMI_SEMI] = ACTIONS(486), - [anon_sym_PIPE_AMP] = ACTIONS(486), - [anon_sym_AMP_AMP] = ACTIONS(486), - [anon_sym_PIPE_PIPE] = ACTIONS(486), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(486), - [anon_sym_SEMI] = ACTIONS(486), - [anon_sym_LF] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(486), - }, - [831] = { - [sym_special_variable_name] = STATE(1090), - [anon_sym_RBRACE] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(62), - [anon_sym_AT] = ACTIONS(62), - [anon_sym_COLON] = ACTIONS(324), - [anon_sym_COLON_QMARK] = ACTIONS(322), - [anon_sym_COLON_DASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), - }, - [832] = { - [anon_sym_RBRACE] = ACTIONS(2301), - [anon_sym_LBRACK] = ACTIONS(2303), - [anon_sym_EQ] = ACTIONS(2305), - [anon_sym_COLON] = ACTIONS(2307), - [anon_sym_COLON_QMARK] = ACTIONS(2305), - [anon_sym_COLON_DASH] = ACTIONS(2305), - [anon_sym_PERCENT] = ACTIONS(2305), - [anon_sym_SLASH] = ACTIONS(2305), - [sym_comment] = ACTIONS(52), - }, - [833] = { - [anon_sym_RBRACE] = ACTIONS(2309), - [anon_sym_LBRACK] = ACTIONS(2311), - [anon_sym_EQ] = ACTIONS(2313), - [anon_sym_COLON] = ACTIONS(2315), - [anon_sym_COLON_QMARK] = ACTIONS(2313), - [anon_sym_COLON_DASH] = ACTIONS(2313), - [anon_sym_PERCENT] = ACTIONS(2313), - [anon_sym_SLASH] = ACTIONS(2313), - [sym_comment] = ACTIONS(52), - }, - [834] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2317), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), - }, - [835] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2317), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [836] = { - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_BQUOTE] = ACTIONS(2317), - [sym_comment] = ACTIONS(52), - }, - [837] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(2317), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [838] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2319), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), - }, - [839] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2319), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [840] = { - [sym_file_descriptor] = ACTIONS(1712), - [sym__concat] = ACTIONS(1712), - [sym_variable_name] = ACTIONS(1712), - [anon_sym_LT] = ACTIONS(2261), - [anon_sym_GT] = ACTIONS(2261), - [anon_sym_GT_GT] = ACTIONS(1712), - [anon_sym_AMP_GT] = ACTIONS(2261), - [anon_sym_AMP_GT_GT] = ACTIONS(1712), - [anon_sym_LT_AMP] = ACTIONS(1712), - [anon_sym_GT_AMP] = ACTIONS(1712), - [anon_sym_DQUOTE] = ACTIONS(1712), - [sym_raw_string] = ACTIONS(1712), - [anon_sym_DOLLAR] = ACTIONS(2261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1712), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1712), - [anon_sym_BQUOTE] = ACTIONS(1712), - [anon_sym_LT_LPAREN] = ACTIONS(1712), - [anon_sym_GT_LPAREN] = ACTIONS(1712), - [sym_word] = ACTIONS(2261), - [sym_comment] = ACTIONS(52), - }, - [841] = { - [anon_sym_AT] = ACTIONS(2321), - [sym_comment] = ACTIONS(52), - }, - [842] = { - [sym_file_descriptor] = ACTIONS(1718), - [sym__concat] = ACTIONS(1718), - [sym_variable_name] = ACTIONS(1718), - [anon_sym_LT] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(2265), - [anon_sym_GT_GT] = ACTIONS(1718), - [anon_sym_AMP_GT] = ACTIONS(2265), - [anon_sym_AMP_GT_GT] = ACTIONS(1718), - [anon_sym_LT_AMP] = ACTIONS(1718), - [anon_sym_GT_AMP] = ACTIONS(1718), - [anon_sym_DQUOTE] = ACTIONS(1718), - [sym_raw_string] = ACTIONS(1718), - [anon_sym_DOLLAR] = ACTIONS(2265), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1718), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), - [anon_sym_BQUOTE] = ACTIONS(1718), - [anon_sym_LT_LPAREN] = ACTIONS(1718), - [anon_sym_GT_LPAREN] = ACTIONS(1718), - [sym_word] = ACTIONS(2265), - [sym_comment] = ACTIONS(52), - }, - [843] = { - [anon_sym_AT] = ACTIONS(2323), - [sym_comment] = ACTIONS(52), - }, - [844] = { - [anon_sym_RBRACK] = ACTIONS(2325), - [sym_comment] = ACTIONS(52), - }, - [845] = { - [sym_file_descriptor] = ACTIONS(1726), - [sym__concat] = ACTIONS(1726), - [sym_variable_name] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(2271), - [anon_sym_GT] = ACTIONS(2271), - [anon_sym_GT_GT] = ACTIONS(1726), - [anon_sym_AMP_GT] = ACTIONS(2271), - [anon_sym_AMP_GT_GT] = ACTIONS(1726), - [anon_sym_LT_AMP] = ACTIONS(1726), - [anon_sym_GT_AMP] = ACTIONS(1726), - [anon_sym_DQUOTE] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1726), - [anon_sym_DOLLAR] = ACTIONS(2271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), - [anon_sym_BQUOTE] = ACTIONS(1726), - [anon_sym_LT_LPAREN] = ACTIONS(1726), - [anon_sym_GT_LPAREN] = ACTIONS(1726), - [sym_word] = ACTIONS(2271), - [sym_comment] = ACTIONS(52), - }, - [846] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(2327), - [sym_comment] = ACTIONS(52), - }, - [847] = { - [anon_sym_RBRACE] = ACTIONS(2327), - [sym_comment] = ACTIONS(52), - }, - [848] = { - [anon_sym_RBRACK] = ACTIONS(2329), - [sym_comment] = ACTIONS(52), - }, - [849] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(2331), - [sym_comment] = ACTIONS(52), - }, - [850] = { - [anon_sym_RBRACE] = ACTIONS(2331), - [sym_comment] = ACTIONS(52), - }, - [851] = { - [anon_sym_DQUOTE] = ACTIONS(1714), - [sym__string_content] = ACTIONS(2261), - [anon_sym_DOLLAR] = ACTIONS(1714), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1714), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1714), - [anon_sym_BQUOTE] = ACTIONS(1714), - [sym_comment] = ACTIONS(64), - }, - [852] = { - [anon_sym_AT] = ACTIONS(2333), - [sym_comment] = ACTIONS(52), - }, - [853] = { - [anon_sym_DQUOTE] = ACTIONS(1720), - [sym__string_content] = ACTIONS(2265), - [anon_sym_DOLLAR] = ACTIONS(1720), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1720), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1720), - [anon_sym_BQUOTE] = ACTIONS(1720), - [sym_comment] = ACTIONS(64), - }, - [854] = { - [anon_sym_AT] = ACTIONS(2335), - [sym_comment] = ACTIONS(52), - }, - [855] = { - [anon_sym_RBRACK] = ACTIONS(2337), - [sym_comment] = ACTIONS(52), - }, - [856] = { - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym__string_content] = ACTIONS(2271), - [anon_sym_DOLLAR] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1726), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1728), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1728), - [anon_sym_BQUOTE] = ACTIONS(1728), - [sym_comment] = ACTIONS(64), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), + [anon_sym_BQUOTE] = ACTIONS(1732), + [anon_sym_LT_LPAREN] = ACTIONS(1734), + [anon_sym_GT_LPAREN] = ACTIONS(1734), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1736), }, - [857] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(2339), - [sym_comment] = ACTIONS(52), - }, - [858] = { - [anon_sym_RBRACE] = ACTIONS(2339), - [sym_comment] = ACTIONS(52), - }, - [859] = { - [anon_sym_RBRACK] = ACTIONS(2341), - [sym_comment] = ACTIONS(52), - }, - [860] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(2343), - [sym_comment] = ACTIONS(52), - }, - [861] = { - [anon_sym_RBRACE] = ACTIONS(2343), - [sym_comment] = ACTIONS(52), - }, - [862] = { - [anon_sym_RBRACK] = ACTIONS(2345), - [sym_comment] = ACTIONS(52), - }, - [863] = { - [anon_sym_RBRACK] = ACTIONS(2347), - [sym_comment] = ACTIONS(52), - }, - [864] = { - [anon_sym_RBRACE] = ACTIONS(2349), - [sym_comment] = ACTIONS(52), - }, - [865] = { - [sym_file_descriptor] = ACTIONS(2351), - [sym__concat] = ACTIONS(2351), - [anon_sym_PIPE] = ACTIONS(2353), - [anon_sym_RPAREN] = ACTIONS(2353), - [anon_sym_SEMI_SEMI] = ACTIONS(2353), - [anon_sym_PIPE_AMP] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2353), - [anon_sym_GT] = ACTIONS(2353), - [anon_sym_GT_GT] = ACTIONS(2353), - [anon_sym_AMP_GT] = ACTIONS(2353), - [anon_sym_AMP_GT_GT] = ACTIONS(2353), - [anon_sym_LT_AMP] = ACTIONS(2353), - [anon_sym_GT_AMP] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_LT_LT_DASH] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2353), - [sym_raw_string] = ACTIONS(2353), - [anon_sym_DOLLAR] = ACTIONS(2353), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2353), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2353), - [anon_sym_BQUOTE] = ACTIONS(2353), - [anon_sym_LT_LPAREN] = ACTIONS(2353), - [anon_sym_GT_LPAREN] = ACTIONS(2353), - [sym_word] = ACTIONS(2353), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_LF] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2353), - }, - [866] = { - [aux_sym_concatenation_repeat1] = STATE(1114), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(474), - [sym_comment] = ACTIONS(52), - }, - [867] = { - [anon_sym_RBRACE] = ACTIONS(2355), - [sym_comment] = ACTIONS(52), - }, - [868] = { - [sym_file_descriptor] = ACTIONS(2357), - [sym__concat] = ACTIONS(2357), - [anon_sym_PIPE] = ACTIONS(2359), - [anon_sym_RPAREN] = ACTIONS(2359), - [anon_sym_SEMI_SEMI] = ACTIONS(2359), - [anon_sym_PIPE_AMP] = ACTIONS(2359), - [anon_sym_AMP_AMP] = ACTIONS(2359), - [anon_sym_PIPE_PIPE] = ACTIONS(2359), - [anon_sym_LT] = ACTIONS(2359), - [anon_sym_GT] = ACTIONS(2359), - [anon_sym_GT_GT] = ACTIONS(2359), - [anon_sym_AMP_GT] = ACTIONS(2359), - [anon_sym_AMP_GT_GT] = ACTIONS(2359), - [anon_sym_LT_AMP] = ACTIONS(2359), - [anon_sym_GT_AMP] = ACTIONS(2359), - [anon_sym_LT_LT] = ACTIONS(2359), - [anon_sym_LT_LT_DASH] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [sym_raw_string] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(2359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2359), - [anon_sym_BQUOTE] = ACTIONS(2359), - [anon_sym_LT_LPAREN] = ACTIONS(2359), - [anon_sym_GT_LPAREN] = ACTIONS(2359), - [sym_word] = ACTIONS(2359), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2359), - [anon_sym_LF] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - }, - [869] = { - [sym_file_descriptor] = ACTIONS(1394), - [sym_variable_name] = ACTIONS(1394), - [anon_sym_PIPE] = ACTIONS(2361), - [anon_sym_RPAREN] = ACTIONS(1394), - [anon_sym_PIPE_AMP] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1394), - [anon_sym_PIPE_PIPE] = ACTIONS(2361), - [anon_sym_LT] = ACTIONS(2361), - [anon_sym_GT] = ACTIONS(2361), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_AMP_GT] = ACTIONS(2361), - [anon_sym_AMP_GT_GT] = ACTIONS(1394), - [anon_sym_LT_AMP] = ACTIONS(1394), - [anon_sym_GT_AMP] = ACTIONS(1394), - [anon_sym_DQUOTE] = ACTIONS(1394), - [sym_raw_string] = ACTIONS(1394), - [anon_sym_DOLLAR] = ACTIONS(2361), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1394), - [anon_sym_BQUOTE] = ACTIONS(1394), - [anon_sym_LT_LPAREN] = ACTIONS(1394), - [anon_sym_GT_LPAREN] = ACTIONS(1394), - [sym_word] = ACTIONS(1396), - [sym_comment] = ACTIONS(52), - }, - [870] = { - [sym_concatenation] = STATE(423), - [sym_string] = STATE(417), - [sym_simple_expansion] = STATE(417), - [sym_expansion] = STATE(417), - [sym_command_substitution] = STATE(417), - [sym_process_substitution] = STATE(417), - [aux_sym_for_statement_repeat1] = STATE(714), - [anon_sym_RPAREN] = ACTIONS(2363), - [anon_sym_DQUOTE] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(755), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(759), - [anon_sym_BQUOTE] = ACTIONS(761), - [anon_sym_LT_LPAREN] = ACTIONS(763), - [anon_sym_GT_LPAREN] = ACTIONS(763), - [sym_word] = ACTIONS(765), - [sym_comment] = ACTIONS(52), - }, - [871] = { - [sym_file_descriptor] = ACTIONS(450), - [sym__concat] = ACTIONS(450), - [sym_variable_name] = ACTIONS(450), - [anon_sym_PIPE] = ACTIONS(875), - [anon_sym_RPAREN] = ACTIONS(450), - [anon_sym_PIPE_AMP] = ACTIONS(450), - [anon_sym_AMP_AMP] = ACTIONS(450), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(875), - [anon_sym_GT] = ACTIONS(875), - [anon_sym_GT_GT] = ACTIONS(450), - [anon_sym_AMP_GT] = ACTIONS(875), - [anon_sym_AMP_GT_GT] = ACTIONS(450), - [anon_sym_LT_AMP] = ACTIONS(450), - [anon_sym_GT_AMP] = ACTIONS(450), - [anon_sym_DQUOTE] = ACTIONS(450), - [sym_raw_string] = ACTIONS(450), - [anon_sym_DOLLAR] = ACTIONS(875), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(450), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(450), - [anon_sym_BQUOTE] = ACTIONS(450), - [anon_sym_LT_LPAREN] = ACTIONS(450), - [anon_sym_GT_LPAREN] = ACTIONS(450), - [sym_word] = ACTIONS(452), - [sym_comment] = ACTIONS(52), - }, - [872] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(298), - [anon_sym_DQUOTE] = ACTIONS(2365), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), - }, - [873] = { - [sym_string] = STATE(1118), - [sym_simple_expansion] = STATE(1118), - [sym_expansion] = STATE(1118), - [sym_command_substitution] = STATE(1118), - [sym_process_substitution] = STATE(1118), - [anon_sym_DQUOTE] = ACTIONS(1142), - [sym_raw_string] = ACTIONS(2367), - [anon_sym_DOLLAR] = ACTIONS(1146), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1148), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1150), - [anon_sym_BQUOTE] = ACTIONS(1152), - [anon_sym_LT_LPAREN] = ACTIONS(1154), - [anon_sym_GT_LPAREN] = ACTIONS(1154), - [sym_word] = ACTIONS(2369), - [sym_comment] = ACTIONS(52), - }, - [874] = { - [aux_sym_concatenation_repeat1] = STATE(1119), - [sym_file_descriptor] = ACTIONS(474), - [sym__concat] = ACTIONS(1742), - [sym_variable_name] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(883), - [anon_sym_RPAREN] = ACTIONS(474), - [anon_sym_PIPE_AMP] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(883), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_GT_GT] = ACTIONS(474), - [anon_sym_AMP_GT] = ACTIONS(883), - [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(883), - [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), - }, - [875] = { - [sym_file_descriptor] = ACTIONS(322), - [sym__concat] = ACTIONS(322), + [586] = { + [sym_word] = ACTIONS(322), [sym_variable_name] = ACTIONS(322), - [anon_sym_PIPE] = ACTIONS(324), + [anon_sym_PIPE] = ACTIONS(1100), [anon_sym_RPAREN] = ACTIONS(322), [anon_sym_PIPE_AMP] = ACTIONS(322), [anon_sym_AMP_AMP] = ACTIONS(322), - [anon_sym_PIPE_PIPE] = ACTIONS(324), - [anon_sym_LT] = ACTIONS(324), - [anon_sym_GT] = ACTIONS(324), - [anon_sym_GT_GT] = ACTIONS(322), - [anon_sym_AMP_GT] = ACTIONS(324), - [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(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(322), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(322), + [anon_sym_PIPE_PIPE] = ACTIONS(322), [anon_sym_BQUOTE] = ACTIONS(322), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_word] = ACTIONS(478), - [sym_comment] = ACTIONS(52), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1100), }, - [876] = { - [sym_file_descriptor] = ACTIONS(480), - [sym__concat] = ACTIONS(480), - [sym_variable_name] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(480), - [anon_sym_PIPE_AMP] = ACTIONS(480), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_GT_GT] = ACTIONS(480), - [anon_sym_AMP_GT] = ACTIONS(885), - [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(885), - [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(482), - [sym_comment] = ACTIONS(52), + [587] = { + [sym_variable_assignment] = STATE(316), + [sym_subscript] = STATE(319), + [aux_sym_declaration_command_repeat1] = STATE(587), + [sym_word] = ACTIONS(1738), + [sym_variable_name] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1744), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_PIPE_AMP] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1748), }, - [877] = { - [sym_file_descriptor] = ACTIONS(484), - [sym__concat] = ACTIONS(484), - [sym_variable_name] = ACTIONS(484), - [anon_sym_PIPE] = ACTIONS(887), - [anon_sym_RPAREN] = ACTIONS(484), - [anon_sym_PIPE_AMP] = ACTIONS(484), - [anon_sym_AMP_AMP] = ACTIONS(484), - [anon_sym_PIPE_PIPE] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(887), - [anon_sym_GT] = ACTIONS(887), - [anon_sym_GT_GT] = ACTIONS(484), - [anon_sym_AMP_GT] = ACTIONS(887), - [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(887), - [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(486), - [sym_comment] = ACTIONS(52), + [588] = { + [sym_file_descriptor] = ACTIONS(1037), + [sym_word] = ACTIONS(1037), + [sym__concat] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1534), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_PIPE_AMP] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1037), + [anon_sym_PIPE_PIPE] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1534), + [anon_sym_GT] = ACTIONS(1534), + [anon_sym_GT_GT] = ACTIONS(1037), + [anon_sym_AMP_GT] = ACTIONS(1534), + [anon_sym_AMP_GT_GT] = ACTIONS(1037), + [anon_sym_LT_AMP] = ACTIONS(1037), + [anon_sym_GT_AMP] = ACTIONS(1037), + [anon_sym_LT_LT] = ACTIONS(1534), + [anon_sym_LT_LT_DASH] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym_raw_string] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1534), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), + [anon_sym_BQUOTE] = ACTIONS(1037), + [anon_sym_LT_LPAREN] = ACTIONS(1037), + [anon_sym_GT_LPAREN] = ACTIONS(1037), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1534), }, - [878] = { - [sym_special_variable_name] = STATE(1121), - [anon_sym_RBRACE] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(62), - [anon_sym_AT] = ACTIONS(62), - [anon_sym_COLON] = ACTIONS(324), - [anon_sym_COLON_QMARK] = ACTIONS(322), - [anon_sym_COLON_DASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), + [589] = { + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1753), + [sym_comment] = ACTIONS(50), + }, + [590] = { + [anon_sym_RBRACE] = ACTIONS(1755), + [anon_sym_LBRACK] = ACTIONS(1757), + [sym_comment] = ACTIONS(50), + }, + [591] = { + [sym_file_descriptor] = ACTIONS(1066), + [sym_word] = ACTIONS(1066), + [sym__concat] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_RPAREN] = ACTIONS(1066), + [anon_sym_PIPE_AMP] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_GT_GT] = ACTIONS(1066), + [anon_sym_AMP_GT] = ACTIONS(1544), + [anon_sym_AMP_GT_GT] = ACTIONS(1066), + [anon_sym_LT_AMP] = ACTIONS(1066), + [anon_sym_GT_AMP] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1544), + [anon_sym_LT_LT_DASH] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_raw_string] = ACTIONS(1066), + [anon_sym_DOLLAR] = ACTIONS(1544), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1066), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1066), + [anon_sym_BQUOTE] = ACTIONS(1066), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1544), + }, + [592] = { + [anon_sym_AT] = ACTIONS(1759), + [sym_comment] = ACTIONS(50), + }, + [593] = { + [sym_concatenation] = STATE(896), + [sym_string] = STATE(893), + [sym_simple_expansion] = STATE(893), + [sym_expansion] = STATE(893), + [sym_command_substitution] = STATE(893), + [sym_process_substitution] = STATE(893), + [sym_word] = ACTIONS(1761), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1761), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1765), + }, + [594] = { + [sym_file_descriptor] = ACTIONS(1078), + [sym_word] = ACTIONS(1078), + [sym__concat] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1554), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_PIPE_AMP] = ACTIONS(1078), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_AMP_GT] = ACTIONS(1554), + [anon_sym_AMP_GT_GT] = ACTIONS(1078), + [anon_sym_LT_AMP] = ACTIONS(1078), + [anon_sym_GT_AMP] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1554), + [anon_sym_LT_LT_DASH] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym_raw_string] = ACTIONS(1078), + [anon_sym_DOLLAR] = ACTIONS(1554), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1078), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1078), + [anon_sym_BQUOTE] = ACTIONS(1078), + [anon_sym_LT_LPAREN] = ACTIONS(1078), + [anon_sym_GT_LPAREN] = ACTIONS(1078), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1554), + }, + [595] = { + [anon_sym_AT] = ACTIONS(1767), + [sym_comment] = ACTIONS(50), + }, + [596] = { + [sym_concatenation] = STATE(900), + [sym_string] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [sym_word] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1755), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1771), + }, + [597] = { + [sym_file_descriptor] = ACTIONS(1162), + [sym_word] = ACTIONS(1162), + [sym__concat] = ACTIONS(1162), + [anon_sym_PIPE] = ACTIONS(1562), + [anon_sym_RPAREN] = ACTIONS(1162), + [anon_sym_PIPE_AMP] = ACTIONS(1162), + [anon_sym_AMP_AMP] = ACTIONS(1162), + [anon_sym_PIPE_PIPE] = ACTIONS(1162), + [anon_sym_LT] = ACTIONS(1562), + [anon_sym_GT] = ACTIONS(1562), + [anon_sym_GT_GT] = ACTIONS(1162), + [anon_sym_AMP_GT] = ACTIONS(1562), + [anon_sym_AMP_GT_GT] = ACTIONS(1162), + [anon_sym_LT_AMP] = ACTIONS(1162), + [anon_sym_GT_AMP] = ACTIONS(1162), + [anon_sym_LT_LT] = ACTIONS(1562), + [anon_sym_LT_LT_DASH] = ACTIONS(1162), + [anon_sym_DQUOTE] = ACTIONS(1162), + [sym_raw_string] = ACTIONS(1162), + [anon_sym_DOLLAR] = ACTIONS(1562), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1162), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1162), + [anon_sym_BQUOTE] = ACTIONS(1162), + [anon_sym_LT_LPAREN] = ACTIONS(1162), + [anon_sym_GT_LPAREN] = ACTIONS(1162), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1562), + }, + [598] = { + [sym_file_descriptor] = ACTIONS(1214), + [sym_word] = ACTIONS(1214), + [sym__concat] = ACTIONS(1214), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_RPAREN] = ACTIONS(1214), + [anon_sym_PIPE_AMP] = ACTIONS(1214), + [anon_sym_AMP_AMP] = ACTIONS(1214), + [anon_sym_PIPE_PIPE] = ACTIONS(1214), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(1564), + [anon_sym_GT_GT] = ACTIONS(1214), + [anon_sym_AMP_GT] = ACTIONS(1564), + [anon_sym_AMP_GT_GT] = ACTIONS(1214), + [anon_sym_LT_AMP] = ACTIONS(1214), + [anon_sym_GT_AMP] = ACTIONS(1214), + [anon_sym_LT_LT] = ACTIONS(1564), + [anon_sym_LT_LT_DASH] = ACTIONS(1214), + [anon_sym_DQUOTE] = ACTIONS(1214), + [sym_raw_string] = ACTIONS(1214), + [anon_sym_DOLLAR] = ACTIONS(1564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1214), + [anon_sym_BQUOTE] = ACTIONS(1214), + [anon_sym_LT_LPAREN] = ACTIONS(1214), + [anon_sym_GT_LPAREN] = ACTIONS(1214), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1564), + }, + [599] = { + [sym_compound_statement] = STATE(901), + [anon_sym_LBRACE] = ACTIONS(1118), + [sym_comment] = ACTIONS(50), + }, + [600] = { + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_RPAREN] = ACTIONS(1775), + [anon_sym_PIPE_AMP] = ACTIONS(1775), + [anon_sym_AMP_AMP] = ACTIONS(1775), + [anon_sym_PIPE_PIPE] = ACTIONS(1775), + [anon_sym_BQUOTE] = ACTIONS(1775), + [sym_comment] = ACTIONS(50), + }, + [601] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_RPAREN] = ACTIONS(1775), + [anon_sym_PIPE_AMP] = ACTIONS(1775), + [anon_sym_AMP_AMP] = ACTIONS(1775), + [anon_sym_PIPE_PIPE] = ACTIONS(1775), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [602] = { + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(1777), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(1777), + [anon_sym_PIPE_PIPE] = ACTIONS(1777), + [sym_comment] = ACTIONS(50), + }, + [603] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(1777), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(1777), + [anon_sym_PIPE_PIPE] = ACTIONS(1777), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [604] = { + [sym_concatenation] = STATE(904), + [sym_string] = STATE(902), + [sym_simple_expansion] = STATE(902), + [sym_expansion] = STATE(902), + [sym_command_substitution] = STATE(902), + [sym_process_substitution] = STATE(902), + [sym_word] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1172), + [sym_raw_string] = ACTIONS(1779), + [anon_sym_DOLLAR] = ACTIONS(1174), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1178), + [anon_sym_BQUOTE] = ACTIONS(1180), + [anon_sym_LT_LPAREN] = ACTIONS(1182), + [anon_sym_GT_LPAREN] = ACTIONS(1182), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1781), + }, + [605] = { + [aux_sym_concatenation_repeat1] = STATE(906), + [sym_file_descriptor] = ACTIONS(424), + [sym__concat] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(428), + [anon_sym_RPAREN] = ACTIONS(424), + [anon_sym_PIPE_AMP] = ACTIONS(424), + [anon_sym_AMP_AMP] = ACTIONS(424), + [anon_sym_PIPE_PIPE] = ACTIONS(424), + [anon_sym_LT] = ACTIONS(428), + [anon_sym_GT] = ACTIONS(428), + [anon_sym_GT_GT] = ACTIONS(424), + [anon_sym_AMP_GT] = ACTIONS(428), + [anon_sym_AMP_GT_GT] = ACTIONS(424), + [anon_sym_LT_AMP] = ACTIONS(424), + [anon_sym_GT_AMP] = ACTIONS(424), + [anon_sym_LT_LT] = ACTIONS(428), + [anon_sym_LT_LT_DASH] = ACTIONS(424), + [sym_comment] = ACTIONS(50), + }, + [606] = { + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(908), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(2371), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), }, - [879] = { - [anon_sym_RBRACE] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(2375), - [anon_sym_EQ] = ACTIONS(2377), - [anon_sym_COLON] = ACTIONS(2379), - [anon_sym_COLON_QMARK] = ACTIONS(2377), - [anon_sym_COLON_DASH] = ACTIONS(2377), - [anon_sym_PERCENT] = ACTIONS(2377), - [anon_sym_SLASH] = ACTIONS(2377), - [sym_comment] = ACTIONS(52), + [607] = { + [sym_special_variable_name] = STATE(911), + [anon_sym_DOLLAR] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(1787), + [anon_sym_AT] = ACTIONS(1787), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1789), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_QMARK] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_0] = ACTIONS(1791), + [anon_sym__] = ACTIONS(1791), }, - [880] = { - [anon_sym_RBRACE] = ACTIONS(2381), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_EQ] = ACTIONS(2385), - [anon_sym_COLON] = ACTIONS(2387), - [anon_sym_COLON_QMARK] = ACTIONS(2385), - [anon_sym_COLON_DASH] = ACTIONS(2385), - [anon_sym_PERCENT] = ACTIONS(2385), - [anon_sym_SLASH] = ACTIONS(2385), - [sym_comment] = ACTIONS(52), + [608] = { + [sym_special_variable_name] = STATE(914), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(1793), + [anon_sym_AT] = ACTIONS(162), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1795), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), }, - [881] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2389), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), + [609] = { + [sym_for_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_case_statement] = STATE(915), + [sym_function_definition] = STATE(915), + [sym_subshell] = STATE(915), + [sym_pipeline] = STATE(915), + [sym_list] = STATE(915), + [sym_bracket_command] = STATE(915), + [sym_command] = STATE(915), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(916), + [sym_declaration_command] = STATE(915), + [sym_subscript] = STATE(126), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), }, - [882] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2389), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), + [610] = { + [sym_for_statement] = STATE(917), + [sym_while_statement] = STATE(917), + [sym_if_statement] = STATE(917), + [sym_case_statement] = STATE(917), + [sym_function_definition] = STATE(917), + [sym_subshell] = STATE(917), + [sym_pipeline] = STATE(917), + [sym_list] = STATE(917), + [sym_bracket_command] = STATE(917), + [sym_command] = STATE(917), + [sym_command_name] = STATE(135), + [sym_variable_assignment] = STATE(918), + [sym_declaration_command] = STATE(917), + [sym_subscript] = STATE(137), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(129), + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [sym_process_substitution] = STATE(129), + [aux_sym_command_repeat1] = STATE(138), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(206), + [sym_variable_name] = ACTIONS(208), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(212), + [anon_sym_typeset] = ACTIONS(212), + [anon_sym_export] = ACTIONS(212), + [anon_sym_readonly] = ACTIONS(212), + [anon_sym_local] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(206), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(214), }, - [883] = { - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_BQUOTE] = ACTIONS(2389), - [sym_comment] = ACTIONS(52), + [611] = { + [sym_for_statement] = STATE(919), + [sym_while_statement] = STATE(919), + [sym_if_statement] = STATE(919), + [sym_case_statement] = STATE(919), + [sym_function_definition] = STATE(919), + [sym_subshell] = STATE(919), + [sym_pipeline] = STATE(919), + [sym_list] = STATE(919), + [sym_bracket_command] = STATE(919), + [sym_command] = STATE(919), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(920), + [sym_declaration_command] = STATE(919), + [sym_subscript] = STATE(126), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), }, - [884] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), + [612] = { + [aux_sym_concatenation_repeat1] = STATE(921), + [sym_file_descriptor] = ACTIONS(442), + [sym__concat] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(444), + [anon_sym_RPAREN] = ACTIONS(442), + [anon_sym_PIPE_AMP] = ACTIONS(442), + [anon_sym_AMP_AMP] = ACTIONS(442), + [anon_sym_PIPE_PIPE] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_GT] = ACTIONS(444), + [anon_sym_GT_GT] = ACTIONS(442), + [anon_sym_AMP_GT] = ACTIONS(444), + [anon_sym_AMP_GT_GT] = ACTIONS(442), + [anon_sym_LT_AMP] = ACTIONS(442), + [anon_sym_GT_AMP] = ACTIONS(442), + [anon_sym_LT_LT] = ACTIONS(444), + [anon_sym_LT_LT_DASH] = ACTIONS(442), + [sym_comment] = ACTIONS(50), + }, + [613] = { + [sym_file_descriptor] = ACTIONS(424), + [anon_sym_PIPE] = ACTIONS(428), + [anon_sym_RPAREN] = ACTIONS(424), + [anon_sym_PIPE_AMP] = ACTIONS(424), + [anon_sym_AMP_AMP] = ACTIONS(424), + [anon_sym_PIPE_PIPE] = ACTIONS(424), + [anon_sym_LT] = ACTIONS(428), + [anon_sym_GT] = ACTIONS(428), + [anon_sym_GT_GT] = ACTIONS(424), + [anon_sym_AMP_GT] = ACTIONS(428), + [anon_sym_AMP_GT_GT] = ACTIONS(424), + [anon_sym_LT_AMP] = ACTIONS(424), + [anon_sym_GT_AMP] = ACTIONS(424), + [anon_sym_LT_LT] = ACTIONS(428), + [anon_sym_LT_LT_DASH] = ACTIONS(424), + [anon_sym_BQUOTE] = ACTIONS(424), + [sym_comment] = ACTIONS(50), + }, + [614] = { + [sym_file_descriptor] = ACTIONS(1244), + [anon_sym_PIPE] = ACTIONS(1797), + [anon_sym_RPAREN] = ACTIONS(1244), + [anon_sym_PIPE_AMP] = ACTIONS(1244), + [anon_sym_AMP_AMP] = ACTIONS(1244), + [anon_sym_PIPE_PIPE] = ACTIONS(1244), + [anon_sym_LT] = ACTIONS(1797), + [anon_sym_GT] = ACTIONS(1797), + [anon_sym_GT_GT] = ACTIONS(1244), + [anon_sym_AMP_GT] = ACTIONS(1797), + [anon_sym_AMP_GT_GT] = ACTIONS(1244), + [anon_sym_LT_AMP] = ACTIONS(1244), + [anon_sym_GT_AMP] = ACTIONS(1244), + [anon_sym_LT_LT] = ACTIONS(1797), + [anon_sym_LT_LT_DASH] = ACTIONS(1244), + [anon_sym_BQUOTE] = ACTIONS(1244), + [sym_comment] = ACTIONS(50), + }, + [615] = { + [sym_simple_expansion] = STATE(660), + [sym_expansion] = STATE(660), + [aux_sym_heredoc_repeat1] = STATE(923), + [sym__heredoc_middle] = ACTIONS(1248), + [sym__heredoc_end] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1254), + [sym_comment] = ACTIONS(50), + }, + [616] = { + [sym_file_descriptor] = ACTIONS(1256), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_RPAREN] = ACTIONS(1256), + [anon_sym_PIPE_AMP] = ACTIONS(1256), + [anon_sym_AMP_AMP] = ACTIONS(1256), + [anon_sym_PIPE_PIPE] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1801), + [anon_sym_GT] = ACTIONS(1801), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_AMP_GT] = ACTIONS(1801), + [anon_sym_AMP_GT_GT] = ACTIONS(1256), + [anon_sym_LT_AMP] = ACTIONS(1256), + [anon_sym_GT_AMP] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1801), + [anon_sym_LT_LT_DASH] = ACTIONS(1256), + [anon_sym_BQUOTE] = ACTIONS(1256), + [sym_comment] = ACTIONS(50), + }, + [617] = { + [sym_concatenation] = STATE(346), + [sym_string] = STATE(341), + [sym_simple_expansion] = STATE(341), + [sym_expansion] = STATE(341), + [sym_command_substitution] = STATE(341), + [sym_process_substitution] = STATE(341), + [aux_sym_for_statement_repeat1] = STATE(617), + [sym_file_descriptor] = ACTIONS(929), + [sym_word] = ACTIONS(1803), + [anon_sym_PIPE] = ACTIONS(1806), + [anon_sym_RPAREN] = ACTIONS(929), + [anon_sym_PIPE_AMP] = ACTIONS(929), + [anon_sym_AMP_AMP] = ACTIONS(929), + [anon_sym_PIPE_PIPE] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(1806), + [anon_sym_GT] = ACTIONS(1806), + [anon_sym_GT_GT] = ACTIONS(929), + [anon_sym_AMP_GT] = ACTIONS(1806), + [anon_sym_AMP_GT_GT] = ACTIONS(929), + [anon_sym_LT_AMP] = ACTIONS(929), + [anon_sym_GT_AMP] = ACTIONS(929), + [anon_sym_LT_LT] = ACTIONS(1806), + [anon_sym_LT_LT_DASH] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(1808), + [sym_raw_string] = ACTIONS(1803), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1817), + [anon_sym_BQUOTE] = ACTIONS(1820), + [anon_sym_LT_LPAREN] = ACTIONS(1823), + [anon_sym_GT_LPAREN] = ACTIONS(1823), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1826), + }, + [618] = { + [sym_file_redirect] = STATE(345), + [sym_heredoc_redirect] = STATE(345), + [aux_sym_command_repeat2] = STATE(619), + [sym_file_descriptor] = ACTIONS(546), + [anon_sym_PIPE] = ACTIONS(1829), + [anon_sym_RPAREN] = ACTIONS(1831), + [anon_sym_PIPE_AMP] = ACTIONS(1831), + [anon_sym_AMP_AMP] = ACTIONS(1831), + [anon_sym_PIPE_PIPE] = ACTIONS(1831), + [anon_sym_LT] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(556), + [anon_sym_AMP_GT] = ACTIONS(554), + [anon_sym_AMP_GT_GT] = ACTIONS(556), + [anon_sym_LT_AMP] = ACTIONS(556), + [anon_sym_GT_AMP] = ACTIONS(556), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_LT_LT_DASH] = ACTIONS(560), + [sym_comment] = ACTIONS(50), + }, + [619] = { + [sym_file_redirect] = STATE(345), + [sym_heredoc_redirect] = STATE(345), + [aux_sym_command_repeat2] = STATE(619), + [sym_file_descriptor] = ACTIONS(1833), + [anon_sym_PIPE] = ACTIONS(1836), + [anon_sym_RPAREN] = ACTIONS(1838), + [anon_sym_PIPE_AMP] = ACTIONS(1838), + [anon_sym_AMP_AMP] = ACTIONS(1838), + [anon_sym_PIPE_PIPE] = ACTIONS(1838), + [anon_sym_LT] = ACTIONS(1840), + [anon_sym_GT] = ACTIONS(1840), + [anon_sym_GT_GT] = ACTIONS(1843), + [anon_sym_AMP_GT] = ACTIONS(1840), + [anon_sym_AMP_GT_GT] = ACTIONS(1843), + [anon_sym_LT_AMP] = ACTIONS(1843), + [anon_sym_GT_AMP] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1846), + [anon_sym_LT_LT_DASH] = ACTIONS(1849), + [sym_comment] = ACTIONS(50), + }, + [620] = { + [sym_file_redirect] = STATE(345), + [sym_heredoc_redirect] = STATE(345), + [sym_concatenation] = STATE(346), + [sym_string] = STATE(341), + [sym_simple_expansion] = STATE(341), + [sym_expansion] = STATE(341), + [sym_command_substitution] = STATE(341), + [sym_process_substitution] = STATE(341), + [aux_sym_for_statement_repeat1] = STATE(617), + [aux_sym_command_repeat2] = STATE(924), + [sym_file_descriptor] = ACTIONS(546), + [sym_word] = ACTIONS(548), + [anon_sym_PIPE] = ACTIONS(1829), + [anon_sym_RPAREN] = ACTIONS(1831), + [anon_sym_PIPE_AMP] = ACTIONS(1831), + [anon_sym_AMP_AMP] = ACTIONS(1831), + [anon_sym_PIPE_PIPE] = ACTIONS(1831), + [anon_sym_LT] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(556), + [anon_sym_AMP_GT] = ACTIONS(554), + [anon_sym_AMP_GT_GT] = ACTIONS(556), + [anon_sym_LT_AMP] = ACTIONS(556), + [anon_sym_GT_AMP] = ACTIONS(556), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_LT_LT_DASH] = ACTIONS(560), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(548), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(562), + }, + [621] = { + [aux_sym_concatenation_repeat1] = STATE(621), + [sym_file_descriptor] = ACTIONS(731), + [sym_word] = ACTIONS(731), + [sym__concat] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(1527), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_LT_LT_DASH] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(1527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1527), + }, + [622] = { + [aux_sym_concatenation_repeat1] = STATE(925), + [sym_file_descriptor] = ACTIONS(760), + [sym_word] = ACTIONS(760), + [sym__concat] = ACTIONS(426), + [sym_variable_name] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_PIPE_AMP] = ACTIONS(760), + [anon_sym_AMP_AMP] = ACTIONS(760), + [anon_sym_PIPE_PIPE] = ACTIONS(760), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1668), + [anon_sym_GT_GT] = ACTIONS(760), + [anon_sym_AMP_GT] = ACTIONS(1668), + [anon_sym_AMP_GT_GT] = ACTIONS(760), + [anon_sym_LT_AMP] = ACTIONS(760), + [anon_sym_GT_AMP] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(760), + [sym_raw_string] = ACTIONS(760), + [anon_sym_DOLLAR] = ACTIONS(1668), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(760), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(760), + [anon_sym_BQUOTE] = ACTIONS(760), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1668), + }, + [623] = { + [aux_sym_concatenation_repeat1] = STATE(926), + [sym_file_descriptor] = ACTIONS(784), + [sym_word] = ACTIONS(784), + [sym__concat] = ACTIONS(426), + [sym_variable_name] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_PIPE_AMP] = ACTIONS(784), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_GT] = ACTIONS(1672), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_AMP_GT] = ACTIONS(1672), + [anon_sym_AMP_GT_GT] = ACTIONS(784), + [anon_sym_LT_AMP] = ACTIONS(784), + [anon_sym_GT_AMP] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(784), + [sym_raw_string] = ACTIONS(784), + [anon_sym_DOLLAR] = ACTIONS(1672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(784), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(784), + [anon_sym_BQUOTE] = ACTIONS(784), + [anon_sym_LT_LPAREN] = ACTIONS(784), + [anon_sym_GT_LPAREN] = ACTIONS(784), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1672), + }, + [624] = { + [anon_sym_RPAREN] = ACTIONS(1852), + [sym_comment] = ACTIONS(50), + }, + [625] = { + [sym_file_redirect] = STATE(875), + [sym_file_descriptor] = ACTIONS(1854), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_PIPE_AMP] = ACTIONS(1698), + [anon_sym_AMP_AMP] = ACTIONS(1698), + [anon_sym_PIPE_PIPE] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1856), + [anon_sym_GT] = ACTIONS(1856), + [anon_sym_GT_GT] = ACTIONS(1858), + [anon_sym_AMP_GT] = ACTIONS(1856), + [anon_sym_AMP_GT_GT] = ACTIONS(1858), + [anon_sym_LT_AMP] = ACTIONS(1858), + [anon_sym_GT_AMP] = ACTIONS(1858), + [anon_sym_BQUOTE] = ACTIONS(1698), + [sym_comment] = ACTIONS(50), + }, + [626] = { + [sym_concatenation] = STATE(879), + [sym_string] = STATE(930), + [sym_array] = STATE(879), + [sym_simple_expansion] = STATE(930), + [sym_expansion] = STATE(930), + [sym_command_substitution] = STATE(930), + [sym_process_substitution] = STATE(930), + [sym_word] = ACTIONS(1860), + [sym__empty_value] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DQUOTE] = ACTIONS(1724), + [sym_raw_string] = ACTIONS(1860), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), + [anon_sym_BQUOTE] = ACTIONS(1732), + [anon_sym_LT_LPAREN] = ACTIONS(1734), + [anon_sym_GT_LPAREN] = ACTIONS(1734), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1862), + }, + [627] = { + [sym_variable_assignment] = STATE(316), + [sym_subscript] = STATE(355), + [aux_sym_declaration_command_repeat1] = STATE(627), + [sym_word] = ACTIONS(1738), + [sym_variable_name] = ACTIONS(1864), + [anon_sym_PIPE] = ACTIONS(1744), + [anon_sym_PIPE_AMP] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_BQUOTE] = ACTIONS(1746), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1748), + }, + [628] = { + [sym_compound_statement] = STATE(932), + [anon_sym_LBRACE] = ACTIONS(1118), + [sym_comment] = ACTIONS(50), + }, + [629] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_PIPE_AMP] = ACTIONS(1775), + [anon_sym_AMP_AMP] = ACTIONS(1775), + [anon_sym_PIPE_PIPE] = ACTIONS(1775), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(1775), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [630] = { + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(1777), + [anon_sym_PIPE_PIPE] = ACTIONS(1777), + [anon_sym_BQUOTE] = ACTIONS(1777), + [sym_comment] = ACTIONS(50), + }, + [631] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(1777), + [anon_sym_PIPE_PIPE] = ACTIONS(1777), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [632] = { + [sym_concatenation] = STATE(904), + [sym_string] = STATE(933), + [sym_simple_expansion] = STATE(933), + [sym_expansion] = STATE(933), + [sym_command_substitution] = STATE(933), + [sym_process_substitution] = STATE(933), + [sym_word] = ACTIONS(1867), + [anon_sym_DQUOTE] = ACTIONS(1172), + [sym_raw_string] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1174), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1178), + [anon_sym_BQUOTE] = ACTIONS(1180), + [anon_sym_LT_LPAREN] = ACTIONS(1182), + [anon_sym_GT_LPAREN] = ACTIONS(1182), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1869), + }, + [633] = { + [aux_sym_concatenation_repeat1] = STATE(935), + [sym_file_descriptor] = ACTIONS(424), + [sym__concat] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(428), + [anon_sym_PIPE_AMP] = ACTIONS(424), + [anon_sym_AMP_AMP] = ACTIONS(424), + [anon_sym_PIPE_PIPE] = ACTIONS(424), + [anon_sym_LT] = ACTIONS(428), + [anon_sym_GT] = ACTIONS(428), + [anon_sym_GT_GT] = ACTIONS(424), + [anon_sym_AMP_GT] = ACTIONS(428), + [anon_sym_AMP_GT_GT] = ACTIONS(424), + [anon_sym_LT_AMP] = ACTIONS(424), + [anon_sym_GT_AMP] = ACTIONS(424), + [anon_sym_LT_LT] = ACTIONS(428), + [anon_sym_LT_LT_DASH] = ACTIONS(424), + [anon_sym_BQUOTE] = ACTIONS(424), + [sym_comment] = ACTIONS(50), + }, + [634] = { + [aux_sym_concatenation_repeat1] = STATE(936), + [sym_file_descriptor] = ACTIONS(442), + [sym__concat] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(444), + [anon_sym_PIPE_AMP] = ACTIONS(442), + [anon_sym_AMP_AMP] = ACTIONS(442), + [anon_sym_PIPE_PIPE] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_GT] = ACTIONS(444), + [anon_sym_GT_GT] = ACTIONS(442), + [anon_sym_AMP_GT] = ACTIONS(444), + [anon_sym_AMP_GT_GT] = ACTIONS(442), + [anon_sym_LT_AMP] = ACTIONS(442), + [anon_sym_GT_AMP] = ACTIONS(442), + [anon_sym_LT_LT] = ACTIONS(444), + [anon_sym_LT_LT_DASH] = ACTIONS(442), + [anon_sym_BQUOTE] = ACTIONS(442), + [sym_comment] = ACTIONS(50), + }, + [635] = { + [sym_concatenation] = STATE(346), + [sym_string] = STATE(362), + [sym_simple_expansion] = STATE(362), + [sym_expansion] = STATE(362), + [sym_command_substitution] = STATE(362), + [sym_process_substitution] = STATE(362), + [aux_sym_for_statement_repeat1] = STATE(635), + [sym_file_descriptor] = ACTIONS(929), + [sym_word] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1806), + [anon_sym_PIPE_AMP] = ACTIONS(929), + [anon_sym_AMP_AMP] = ACTIONS(929), + [anon_sym_PIPE_PIPE] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(1806), + [anon_sym_GT] = ACTIONS(1806), + [anon_sym_GT_GT] = ACTIONS(929), + [anon_sym_AMP_GT] = ACTIONS(1806), + [anon_sym_AMP_GT_GT] = ACTIONS(929), + [anon_sym_LT_AMP] = ACTIONS(929), + [anon_sym_GT_AMP] = ACTIONS(929), + [anon_sym_LT_LT] = ACTIONS(1806), + [anon_sym_LT_LT_DASH] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(1808), + [sym_raw_string] = ACTIONS(1871), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1817), + [anon_sym_BQUOTE] = ACTIONS(1820), + [anon_sym_LT_LPAREN] = ACTIONS(1823), + [anon_sym_GT_LPAREN] = ACTIONS(1823), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1874), + }, + [636] = { + [sym_file_redirect] = STATE(345), + [sym_heredoc_redirect] = STATE(345), + [aux_sym_command_repeat2] = STATE(637), + [sym_file_descriptor] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(1829), + [anon_sym_PIPE_AMP] = ACTIONS(1831), + [anon_sym_AMP_AMP] = ACTIONS(1831), + [anon_sym_PIPE_PIPE] = ACTIONS(1831), + [anon_sym_LT] = ACTIONS(584), + [anon_sym_GT] = ACTIONS(584), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_AMP_GT] = ACTIONS(584), + [anon_sym_AMP_GT_GT] = ACTIONS(586), + [anon_sym_LT_AMP] = ACTIONS(586), + [anon_sym_GT_AMP] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_LT_LT_DASH] = ACTIONS(560), + [anon_sym_BQUOTE] = ACTIONS(1831), + [sym_comment] = ACTIONS(50), + }, + [637] = { + [sym_file_redirect] = STATE(345), + [sym_heredoc_redirect] = STATE(345), + [aux_sym_command_repeat2] = STATE(637), + [sym_file_descriptor] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1836), + [anon_sym_PIPE_AMP] = ACTIONS(1838), + [anon_sym_AMP_AMP] = ACTIONS(1838), + [anon_sym_PIPE_PIPE] = ACTIONS(1838), + [anon_sym_LT] = ACTIONS(1880), + [anon_sym_GT] = ACTIONS(1880), + [anon_sym_GT_GT] = ACTIONS(1883), + [anon_sym_AMP_GT] = ACTIONS(1880), + [anon_sym_AMP_GT_GT] = ACTIONS(1883), + [anon_sym_LT_AMP] = ACTIONS(1883), + [anon_sym_GT_AMP] = ACTIONS(1883), + [anon_sym_LT_LT] = ACTIONS(1846), + [anon_sym_LT_LT_DASH] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1838), + [sym_comment] = ACTIONS(50), + }, + [638] = { + [sym_file_redirect] = STATE(345), + [sym_heredoc_redirect] = STATE(345), + [sym_concatenation] = STATE(346), + [sym_string] = STATE(362), + [sym_simple_expansion] = STATE(362), + [sym_expansion] = STATE(362), + [sym_command_substitution] = STATE(362), + [sym_process_substitution] = STATE(362), + [aux_sym_for_statement_repeat1] = STATE(635), + [aux_sym_command_repeat2] = STATE(937), + [sym_file_descriptor] = ACTIONS(580), + [sym_word] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(1829), + [anon_sym_PIPE_AMP] = ACTIONS(1831), + [anon_sym_AMP_AMP] = ACTIONS(1831), + [anon_sym_PIPE_PIPE] = ACTIONS(1831), + [anon_sym_LT] = ACTIONS(584), + [anon_sym_GT] = ACTIONS(584), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_AMP_GT] = ACTIONS(584), + [anon_sym_AMP_GT_GT] = ACTIONS(586), + [anon_sym_LT_AMP] = ACTIONS(586), + [anon_sym_GT_AMP] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_LT_LT_DASH] = ACTIONS(560), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(1831), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(588), + }, + [639] = { + [sym_file_redirect] = STATE(938), + [sym_file_descriptor] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(1886), + [anon_sym_SEMI_SEMI] = ACTIONS(1886), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_GT] = ACTIONS(858), + [anon_sym_GT_GT] = ACTIONS(858), + [anon_sym_AMP_GT] = ACTIONS(858), + [anon_sym_AMP_GT_GT] = ACTIONS(858), + [anon_sym_LT_AMP] = ACTIONS(858), + [anon_sym_GT_AMP] = ACTIONS(858), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_LF] = ACTIONS(1886), + [anon_sym_AMP] = ACTIONS(1886), + }, + [640] = { + [aux_sym_concatenation_repeat1] = STATE(644), + [sym_file_descriptor] = ACTIONS(723), + [sym__concat] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_GT_GT] = ACTIONS(1888), + [anon_sym_AMP_GT] = ACTIONS(1888), + [anon_sym_AMP_GT_GT] = ACTIONS(1888), + [anon_sym_LT_AMP] = ACTIONS(1888), + [anon_sym_GT_AMP] = ACTIONS(1888), + [anon_sym_LT_LT] = ACTIONS(1888), + [anon_sym_LT_LT_DASH] = ACTIONS(1888), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), + }, + [641] = { + [aux_sym_concatenation_repeat1] = STATE(659), + [sym_file_descriptor] = ACTIONS(727), + [sym__concat] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(1890), + [anon_sym_GT] = ACTIONS(1890), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(1890), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(1890), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + }, + [642] = { + [sym_file_descriptor] = ACTIONS(723), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_GT_GT] = ACTIONS(1888), + [anon_sym_AMP_GT] = ACTIONS(1888), + [anon_sym_AMP_GT_GT] = ACTIONS(1888), + [anon_sym_LT_AMP] = ACTIONS(1888), + [anon_sym_GT_AMP] = ACTIONS(1888), + [anon_sym_LT_LT] = ACTIONS(1888), + [anon_sym_LT_LT_DASH] = ACTIONS(1888), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), + }, + [643] = { + [sym_string] = STATE(939), + [sym_simple_expansion] = STATE(939), + [sym_expansion] = STATE(939), + [sym_command_substitution] = STATE(939), + [sym_process_substitution] = STATE(939), + [sym_word] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(614), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(616), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(618), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(620), + [anon_sym_BQUOTE] = ACTIONS(622), + [anon_sym_LT_LPAREN] = ACTIONS(624), + [anon_sym_GT_LPAREN] = ACTIONS(624), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1894), + }, + [644] = { + [aux_sym_concatenation_repeat1] = STATE(941), + [sym_file_descriptor] = ACTIONS(282), + [sym__concat] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_SEMI_SEMI] = ACTIONS(284), + [anon_sym_PIPE_AMP] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_AMP_GT] = ACTIONS(284), + [anon_sym_AMP_GT_GT] = ACTIONS(284), + [anon_sym_LT_AMP] = ACTIONS(284), + [anon_sym_GT_AMP] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_LT_LT_DASH] = ACTIONS(284), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_LF] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(284), + }, + [645] = { + [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(64), + [anon_sym_SEMI] = ACTIONS(448), + [anon_sym_LF] = ACTIONS(448), + [anon_sym_AMP] = ACTIONS(448), + }, + [646] = { + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(291), + [anon_sym_DQUOTE] = ACTIONS(1896), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_comment] = ACTIONS(64), + }, + [647] = { + [sym_file_descriptor] = ACTIONS(466), + [sym__concat] = ACTIONS(466), + [anon_sym_PIPE] = ACTIONS(468), + [anon_sym_RPAREN] = ACTIONS(468), + [anon_sym_SEMI_SEMI] = ACTIONS(468), + [anon_sym_PIPE_AMP] = ACTIONS(468), + [anon_sym_AMP_AMP] = ACTIONS(468), + [anon_sym_PIPE_PIPE] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(468), + [anon_sym_GT_GT] = ACTIONS(468), + [anon_sym_AMP_GT] = ACTIONS(468), + [anon_sym_AMP_GT_GT] = ACTIONS(468), + [anon_sym_LT_AMP] = ACTIONS(468), + [anon_sym_GT_AMP] = ACTIONS(468), + [anon_sym_LT_LT] = ACTIONS(468), + [anon_sym_LT_LT_DASH] = ACTIONS(468), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(468), + [anon_sym_LF] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(468), + }, + [648] = { + [sym_file_descriptor] = ACTIONS(470), + [sym__concat] = 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_LT_LT] = ACTIONS(472), + [anon_sym_LT_LT_DASH] = ACTIONS(472), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(472), + [anon_sym_LF] = ACTIONS(472), + [anon_sym_AMP] = ACTIONS(472), + }, + [649] = { + [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(64), + [anon_sym_SEMI] = ACTIONS(476), + [anon_sym_LF] = ACTIONS(476), + [anon_sym_AMP] = ACTIONS(476), + }, + [650] = { + [sym_special_variable_name] = STATE(944), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(466), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(478), + [anon_sym_COLON_QMARK] = ACTIONS(466), + [anon_sym_COLON_DASH] = ACTIONS(466), + [anon_sym_PERCENT] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(466), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1898), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + }, + [651] = { + [anon_sym_RBRACE] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(1902), + [anon_sym_EQ] = ACTIONS(1904), + [anon_sym_COLON] = ACTIONS(1906), + [anon_sym_COLON_QMARK] = ACTIONS(1904), + [anon_sym_COLON_DASH] = ACTIONS(1904), + [anon_sym_PERCENT] = ACTIONS(1904), + [anon_sym_SLASH] = ACTIONS(1904), + [sym_comment] = ACTIONS(50), + }, + [652] = { + [anon_sym_RBRACE] = ACTIONS(1908), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_EQ] = ACTIONS(1912), + [anon_sym_COLON] = ACTIONS(1914), + [anon_sym_COLON_QMARK] = ACTIONS(1912), + [anon_sym_COLON_DASH] = ACTIONS(1912), + [anon_sym_PERCENT] = ACTIONS(1912), + [anon_sym_SLASH] = ACTIONS(1912), + [sym_comment] = ACTIONS(50), + }, + [653] = { + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), + }, + [654] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [655] = { + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_BQUOTE] = ACTIONS(1916), + [sym_comment] = ACTIONS(50), + }, + [656] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(1916), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [657] = { + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(1918), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), + }, + [658] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(1918), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [659] = { + [aux_sym_concatenation_repeat1] = STATE(941), + [sym_file_descriptor] = ACTIONS(596), + [sym__concat] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(598), + [anon_sym_SEMI_SEMI] = ACTIONS(598), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(598), [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(2389), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [885] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2391), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), - }, - [886] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2391), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [887] = { - [sym_concatenation] = STATE(448), - [sym_string] = STATE(442), - [sym_simple_expansion] = STATE(442), - [sym_expansion] = STATE(442), - [sym_command_substitution] = STATE(442), - [sym_process_substitution] = STATE(442), - [aux_sym_for_statement_repeat1] = STATE(745), - [anon_sym_SEMI_SEMI] = ACTIONS(2393), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_raw_string] = ACTIONS(1460), - [anon_sym_DOLLAR] = ACTIONS(1462), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1464), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1468), - [anon_sym_LT_LPAREN] = ACTIONS(1470), - [anon_sym_GT_LPAREN] = ACTIONS(1470), - [sym_word] = ACTIONS(1460), + [anon_sym_LT] = ACTIONS(598), + [anon_sym_GT] = ACTIONS(598), + [anon_sym_GT_GT] = ACTIONS(598), + [anon_sym_AMP_GT] = ACTIONS(598), + [anon_sym_AMP_GT_GT] = ACTIONS(598), + [anon_sym_LT_AMP] = ACTIONS(598), + [anon_sym_GT_AMP] = ACTIONS(598), + [anon_sym_LT_LT] = ACTIONS(598), + [anon_sym_LT_LT_DASH] = ACTIONS(598), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2393), - [anon_sym_LF] = ACTIONS(2393), - [anon_sym_AMP] = ACTIONS(2393), + [anon_sym_SEMI] = ACTIONS(598), + [anon_sym_LF] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(598), }, - [888] = { - [sym_concatenation] = STATE(448), - [sym_string] = STATE(442), - [sym_simple_expansion] = STATE(442), - [sym_expansion] = STATE(442), - [sym_command_substitution] = STATE(442), - [sym_process_substitution] = STATE(442), - [aux_sym_for_statement_repeat1] = STATE(745), - [anon_sym_SEMI_SEMI] = ACTIONS(2395), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_raw_string] = ACTIONS(1460), - [anon_sym_DOLLAR] = ACTIONS(1462), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1464), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1468), - [anon_sym_LT_LPAREN] = ACTIONS(1470), - [anon_sym_GT_LPAREN] = ACTIONS(1470), - [sym_word] = ACTIONS(1460), + [660] = { + [sym__heredoc_middle] = ACTIONS(1920), + [sym__heredoc_end] = ACTIONS(1920), + [anon_sym_DOLLAR] = ACTIONS(1922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1920), + [sym_comment] = ACTIONS(50), + }, + [661] = { + [sym_file_descriptor] = ACTIONS(1924), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_RPAREN] = ACTIONS(1926), + [anon_sym_SEMI_SEMI] = ACTIONS(1926), + [anon_sym_PIPE_AMP] = ACTIONS(1926), + [anon_sym_AMP_AMP] = ACTIONS(1926), + [anon_sym_PIPE_PIPE] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1926), + [anon_sym_GT_GT] = ACTIONS(1926), + [anon_sym_AMP_GT] = ACTIONS(1926), + [anon_sym_AMP_GT_GT] = ACTIONS(1926), + [anon_sym_LT_AMP] = ACTIONS(1926), + [anon_sym_GT_AMP] = ACTIONS(1926), + [anon_sym_LT_LT] = ACTIONS(1926), + [anon_sym_LT_LT_DASH] = ACTIONS(1926), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2395), - [anon_sym_LF] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_LF] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1926), }, - [889] = { - [anon_sym_PIPE] = ACTIONS(2397), - [anon_sym_RPAREN] = ACTIONS(2399), - [anon_sym_PIPE_AMP] = ACTIONS(2399), - [anon_sym_AMP_AMP] = ACTIONS(2399), - [anon_sym_PIPE_PIPE] = ACTIONS(2399), - [anon_sym_BQUOTE] = ACTIONS(2399), - [sym_comment] = ACTIONS(52), + [662] = { + [sym_special_variable_name] = STATE(955), + [anon_sym_DOLLAR] = ACTIONS(1928), + [anon_sym_POUND] = ACTIONS(1928), + [anon_sym_AT] = ACTIONS(1928), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1930), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_QMARK] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_BANG] = ACTIONS(1928), + [anon_sym_0] = ACTIONS(1932), + [anon_sym__] = ACTIONS(1932), }, - [890] = { - [sym__terminated_statement] = STATE(452), - [sym_for_statement] = STATE(453), - [sym_while_statement] = STATE(453), - [sym_if_statement] = STATE(453), - [sym_case_statement] = STATE(453), - [sym_function_definition] = STATE(453), - [sym_subshell] = STATE(453), - [sym_pipeline] = STATE(453), - [sym_list] = STATE(453), - [sym_bracket_command] = STATE(453), - [sym_command] = STATE(453), - [sym_command_name] = STATE(25), - [sym_variable_assignment] = STATE(454), - [sym_declaration_command] = STATE(453), - [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(749), - [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(2401), - [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), + [663] = { + [sym_special_variable_name] = STATE(958), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(1934), + [anon_sym_AT] = ACTIONS(162), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), }, - [891] = { - [anon_sym_PIPE] = ACTIONS(2403), - [anon_sym_RPAREN] = ACTIONS(2405), - [anon_sym_PIPE_AMP] = ACTIONS(2405), - [anon_sym_AMP_AMP] = ACTIONS(2405), - [anon_sym_PIPE_PIPE] = ACTIONS(2405), - [anon_sym_BQUOTE] = ACTIONS(2405), - [sym_comment] = ACTIONS(52), + [664] = { + [sym_simple_expansion] = STATE(660), + [sym_expansion] = STATE(660), + [aux_sym_heredoc_repeat1] = STATE(960), + [sym__heredoc_middle] = ACTIONS(1248), + [sym__heredoc_end] = ACTIONS(1938), + [anon_sym_DOLLAR] = ACTIONS(1252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1254), + [sym_comment] = ACTIONS(50), }, - [892] = { - [anon_sym_fi] = ACTIONS(2407), - [sym_comment] = ACTIONS(52), + [665] = { + [aux_sym_concatenation_repeat1] = STATE(264), + [sym_file_descriptor] = ACTIONS(760), + [sym_word] = ACTIONS(760), + [sym__concat] = ACTIONS(426), + [sym_variable_name] = ACTIONS(760), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1668), + [anon_sym_GT_GT] = ACTIONS(760), + [anon_sym_AMP_GT] = ACTIONS(1668), + [anon_sym_AMP_GT_GT] = ACTIONS(760), + [anon_sym_LT_AMP] = ACTIONS(760), + [anon_sym_GT_AMP] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(760), + [sym_raw_string] = ACTIONS(760), + [anon_sym_DOLLAR] = ACTIONS(1668), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(760), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(760), + [anon_sym_BQUOTE] = ACTIONS(760), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1668), }, - [893] = { - [sym__terminated_statement] = STATE(459), - [sym_for_statement] = STATE(460), - [sym_while_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_elif_clause] = STATE(461), - [sym_else_clause] = STATE(1134), - [sym_case_statement] = STATE(460), - [sym_function_definition] = STATE(460), - [sym_subshell] = STATE(460), - [sym_pipeline] = STATE(460), - [sym_list] = STATE(460), - [sym_bracket_command] = STATE(460), - [sym_command] = STATE(460), - [sym_command_name] = STATE(25), - [sym_variable_assignment] = STATE(463), - [sym_declaration_command] = STATE(460), - [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(758), - [aux_sym_if_statement_repeat1] = STATE(1135), - [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(2409), - [anon_sym_elif] = ACTIONS(803), - [anon_sym_else] = ACTIONS(805), - [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), + [666] = { + [aux_sym_concatenation_repeat1] = STATE(279), + [sym_file_descriptor] = ACTIONS(784), + [sym_word] = ACTIONS(784), + [sym__concat] = ACTIONS(426), + [sym_variable_name] = ACTIONS(784), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_GT] = ACTIONS(1672), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_AMP_GT] = ACTIONS(1672), + [anon_sym_AMP_GT_GT] = ACTIONS(784), + [anon_sym_LT_AMP] = ACTIONS(784), + [anon_sym_GT_AMP] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(784), + [sym_raw_string] = ACTIONS(784), + [anon_sym_DOLLAR] = ACTIONS(1672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(784), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(784), + [anon_sym_BQUOTE] = ACTIONS(784), + [anon_sym_LT_LPAREN] = ACTIONS(784), + [anon_sym_GT_LPAREN] = ACTIONS(784), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1672), }, - [894] = { - [sym_elif_clause] = STATE(461), - [sym_else_clause] = STATE(1134), - [aux_sym_if_statement_repeat1] = STATE(760), - [anon_sym_fi] = ACTIONS(2407), - [anon_sym_elif] = ACTIONS(1492), - [anon_sym_else] = ACTIONS(1494), - [sym_comment] = ACTIONS(52), + [667] = { + [sym_file_redirect] = STATE(151), + [sym_heredoc_redirect] = STATE(151), + [aux_sym_command_repeat2] = STATE(390), + [sym_file_descriptor] = ACTIONS(236), + [anon_sym_PIPE] = ACTIONS(1940), + [anon_sym_SEMI_SEMI] = ACTIONS(1940), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(242), + [anon_sym_AMP_GT] = ACTIONS(242), + [anon_sym_AMP_GT_GT] = ACTIONS(242), + [anon_sym_LT_AMP] = ACTIONS(242), + [anon_sym_GT_AMP] = ACTIONS(242), + [anon_sym_LT_LT] = ACTIONS(244), + [anon_sym_LT_LT_DASH] = ACTIONS(244), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_LF] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1940), }, - [895] = { - [sym_case_item] = STATE(763), - [sym_concatenation] = STATE(764), - [sym_string] = STATE(762), - [sym_simple_expansion] = STATE(762), - [sym_expansion] = STATE(762), - [sym_command_substitution] = STATE(762), - [sym_process_substitution] = STATE(762), - [aux_sym_case_statement_repeat1] = STATE(1137), - [anon_sym_esac] = ACTIONS(2411), + [668] = { + [sym__concat] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(731), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_RBRACE] = ACTIONS(731), + [anon_sym_RBRACK] = ACTIONS(731), + [sym_comment] = ACTIONS(50), + }, + [669] = { + [sym__concat] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(735), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_RBRACE] = ACTIONS(735), + [anon_sym_RBRACK] = ACTIONS(735), + [sym_comment] = ACTIONS(50), + }, + [670] = { + [aux_sym_concatenation_repeat1] = STATE(670), + [sym__concat] = ACTIONS(1942), + [anon_sym_RBRACK] = ACTIONS(731), + [sym_comment] = ACTIONS(50), + }, + [671] = { + [sym__concat] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1037), + [anon_sym_RBRACK] = ACTIONS(1037), + [sym_comment] = ACTIONS(50), + }, + [672] = { + [anon_sym_RBRACE] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1947), + [sym_comment] = ACTIONS(50), + }, + [673] = { + [anon_sym_RBRACE] = ACTIONS(1949), + [anon_sym_LBRACK] = ACTIONS(1951), + [sym_comment] = ACTIONS(50), + }, + [674] = { + [sym__concat] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1066), + [anon_sym_RPAREN] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1066), + [anon_sym_RBRACK] = ACTIONS(1066), + [sym_comment] = ACTIONS(50), + }, + [675] = { + [anon_sym_AT] = ACTIONS(1953), + [sym_comment] = ACTIONS(50), + }, + [676] = { + [sym_concatenation] = STATE(969), + [sym_string] = STATE(966), + [sym_simple_expansion] = STATE(966), + [sym_expansion] = STATE(966), + [sym_command_substitution] = STATE(966), + [sym_process_substitution] = STATE(966), + [sym_word] = ACTIONS(1955), + [anon_sym_RBRACE] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1955), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1959), + }, + [677] = { + [sym__concat] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_RBRACK] = ACTIONS(1078), + [sym_comment] = ACTIONS(50), + }, + [678] = { + [anon_sym_AT] = ACTIONS(1961), + [sym_comment] = ACTIONS(50), + }, + [679] = { + [sym_concatenation] = STATE(973), + [sym_string] = STATE(971), + [sym_simple_expansion] = STATE(971), + [sym_expansion] = STATE(971), + [sym_command_substitution] = STATE(971), + [sym_process_substitution] = STATE(971), + [sym_word] = ACTIONS(1963), + [anon_sym_RBRACE] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1963), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1965), + }, + [680] = { + [sym__concat] = ACTIONS(1162), + [anon_sym_PIPE] = ACTIONS(1162), + [anon_sym_RPAREN] = ACTIONS(1162), + [anon_sym_RBRACE] = ACTIONS(1162), + [anon_sym_RBRACK] = ACTIONS(1162), + [sym_comment] = ACTIONS(50), + }, + [681] = { + [sym__concat] = ACTIONS(1214), + [anon_sym_PIPE] = ACTIONS(1214), + [anon_sym_RPAREN] = ACTIONS(1214), + [anon_sym_RBRACE] = ACTIONS(1214), + [anon_sym_RBRACK] = ACTIONS(1214), + [sym_comment] = ACTIONS(50), + }, + [682] = { + [sym_file_descriptor] = ACTIONS(731), + [sym_word] = ACTIONS(731), + [sym__concat] = ACTIONS(731), + [sym_variable_name] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(733), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(733), + [anon_sym_LT_AMP] = ACTIONS(733), + [anon_sym_GT_AMP] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [sym_raw_string] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(733), + [anon_sym_AMP] = ACTIONS(733), + }, + [683] = { + [sym_file_descriptor] = ACTIONS(735), + [sym_word] = ACTIONS(735), + [sym__concat] = ACTIONS(735), + [sym_variable_name] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_RPAREN] = ACTIONS(737), + [anon_sym_SEMI_SEMI] = ACTIONS(737), + [anon_sym_PIPE_AMP] = ACTIONS(737), + [anon_sym_AMP_AMP] = ACTIONS(737), + [anon_sym_PIPE_PIPE] = ACTIONS(737), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_GT] = ACTIONS(737), + [anon_sym_GT_GT] = ACTIONS(737), + [anon_sym_AMP_GT] = ACTIONS(737), + [anon_sym_AMP_GT_GT] = ACTIONS(737), + [anon_sym_LT_AMP] = ACTIONS(737), + [anon_sym_GT_AMP] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(737), + [sym_raw_string] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), + [anon_sym_BQUOTE] = ACTIONS(737), + [anon_sym_LT_LPAREN] = ACTIONS(737), + [anon_sym_GT_LPAREN] = ACTIONS(737), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(737), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(737), + [anon_sym_AMP] = ACTIONS(737), + }, + [684] = { + [aux_sym_concatenation_repeat1] = STATE(684), + [sym_file_descriptor] = ACTIONS(731), + [sym_word] = ACTIONS(731), + [sym__concat] = ACTIONS(1967), + [sym_variable_name] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(733), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(733), + [anon_sym_LT_AMP] = ACTIONS(733), + [anon_sym_GT_AMP] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [sym_raw_string] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(733), + [anon_sym_AMP] = ACTIONS(733), + }, + [685] = { + [aux_sym_concatenation_repeat1] = STATE(974), + [sym_word] = ACTIONS(282), + [sym__concat] = ACTIONS(390), + [anon_sym_RPAREN] = ACTIONS(282), [anon_sym_DQUOTE] = ACTIONS(282), - [sym_raw_string] = ACTIONS(1498), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_word] = ACTIONS(1500), - [sym_comment] = ACTIONS(52), + [sym_raw_string] = ACTIONS(282), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(282), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(282), + [anon_sym_LT_LPAREN] = ACTIONS(282), + [anon_sym_GT_LPAREN] = ACTIONS(282), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(890), }, - [896] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2413), + [686] = { + [aux_sym_concatenation_repeat1] = STATE(974), + [sym_word] = ACTIONS(596), + [sym__concat] = ACTIONS(390), + [anon_sym_RPAREN] = ACTIONS(596), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_raw_string] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(596), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(596), + [anon_sym_BQUOTE] = ACTIONS(596), + [anon_sym_LT_LPAREN] = ACTIONS(596), + [anon_sym_GT_LPAREN] = ACTIONS(596), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(922), + }, + [687] = { + [sym_file_descriptor] = ACTIONS(1970), + [sym_word] = ACTIONS(1970), + [sym_variable_name] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_RPAREN] = ACTIONS(1972), + [anon_sym_SEMI_SEMI] = ACTIONS(1972), + [anon_sym_PIPE_AMP] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1972), + [anon_sym_PIPE_PIPE] = ACTIONS(1972), + [anon_sym_LT] = ACTIONS(1972), + [anon_sym_GT] = ACTIONS(1972), + [anon_sym_GT_GT] = ACTIONS(1972), + [anon_sym_AMP_GT] = ACTIONS(1972), + [anon_sym_AMP_GT_GT] = ACTIONS(1972), + [anon_sym_LT_AMP] = ACTIONS(1972), + [anon_sym_GT_AMP] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1972), + [sym_raw_string] = ACTIONS(1972), + [anon_sym_DOLLAR] = ACTIONS(1972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), + [anon_sym_BQUOTE] = ACTIONS(1972), + [anon_sym_LT_LPAREN] = ACTIONS(1972), + [anon_sym_GT_LPAREN] = ACTIONS(1972), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2413), - [anon_sym_LF] = ACTIONS(2413), - [anon_sym_AMP] = ACTIONS(2413), + [sym_identifier] = ACTIONS(1972), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_LF] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(1972), }, - [897] = { - [sym_compound_statement] = STATE(1139), - [anon_sym_LBRACE] = ACTIONS(1174), - [sym_comment] = ACTIONS(52), + [688] = { + [sym_concatenation] = STATE(72), + [sym_string] = STATE(414), + [sym_simple_expansion] = STATE(414), + [sym_expansion] = STATE(414), + [sym_command_substitution] = STATE(414), + [sym_process_substitution] = STATE(414), + [aux_sym_for_statement_repeat1] = STATE(688), + [sym_word] = ACTIONS(1974), + [anon_sym_RPAREN] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(931), + [sym_raw_string] = ACTIONS(1974), + [anon_sym_DOLLAR] = ACTIONS(934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(937), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(940), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(946), + [anon_sym_GT_LPAREN] = ACTIONS(946), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1977), }, - [898] = { - [sym_file_descriptor] = ACTIONS(1529), - [anon_sym_PIPE] = ACTIONS(2415), - [anon_sym_RPAREN] = ACTIONS(1529), - [anon_sym_PIPE_AMP] = ACTIONS(1529), - [anon_sym_AMP_AMP] = ACTIONS(1529), - [anon_sym_PIPE_PIPE] = ACTIONS(1529), - [anon_sym_LT] = ACTIONS(2415), - [anon_sym_GT] = ACTIONS(2415), - [anon_sym_GT_GT] = ACTIONS(1529), - [anon_sym_AMP_GT] = ACTIONS(2415), - [anon_sym_AMP_GT_GT] = ACTIONS(1529), - [anon_sym_LT_AMP] = ACTIONS(1529), - [anon_sym_GT_AMP] = ACTIONS(1529), - [anon_sym_BQUOTE] = ACTIONS(1529), - [sym_comment] = ACTIONS(52), + [689] = { + [sym_file_descriptor] = ACTIONS(1037), + [sym_word] = ACTIONS(1037), + [sym__concat] = ACTIONS(1037), + [sym_variable_name] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1039), + [anon_sym_SEMI_SEMI] = ACTIONS(1039), + [anon_sym_PIPE_AMP] = ACTIONS(1039), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1039), + [anon_sym_GT_GT] = ACTIONS(1039), + [anon_sym_AMP_GT] = ACTIONS(1039), + [anon_sym_AMP_GT_GT] = ACTIONS(1039), + [anon_sym_LT_AMP] = ACTIONS(1039), + [anon_sym_GT_AMP] = ACTIONS(1039), + [anon_sym_DQUOTE] = ACTIONS(1039), + [sym_raw_string] = ACTIONS(1039), + [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1039), + [anon_sym_BQUOTE] = ACTIONS(1039), + [anon_sym_LT_LPAREN] = ACTIONS(1039), + [anon_sym_GT_LPAREN] = ACTIONS(1039), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_AMP] = ACTIONS(1039), }, - [899] = { + [690] = { + [anon_sym_RBRACE] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1982), + [sym_comment] = ACTIONS(50), + }, + [691] = { + [anon_sym_RBRACE] = ACTIONS(1984), + [anon_sym_LBRACK] = ACTIONS(1986), + [sym_comment] = ACTIONS(50), + }, + [692] = { + [sym_file_descriptor] = ACTIONS(1066), + [sym_word] = ACTIONS(1066), + [sym__concat] = ACTIONS(1066), + [sym_variable_name] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_RPAREN] = ACTIONS(1068), + [anon_sym_SEMI_SEMI] = ACTIONS(1068), + [anon_sym_PIPE_AMP] = ACTIONS(1068), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE_PIPE] = ACTIONS(1068), + [anon_sym_LT] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_GT_GT] = ACTIONS(1068), + [anon_sym_AMP_GT] = ACTIONS(1068), + [anon_sym_AMP_GT_GT] = ACTIONS(1068), + [anon_sym_LT_AMP] = ACTIONS(1068), + [anon_sym_GT_AMP] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym_raw_string] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1068), + [anon_sym_BQUOTE] = ACTIONS(1068), + [anon_sym_LT_LPAREN] = ACTIONS(1068), + [anon_sym_GT_LPAREN] = ACTIONS(1068), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_LF] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1068), + }, + [693] = { + [anon_sym_AT] = ACTIONS(1988), + [sym_comment] = ACTIONS(50), + }, + [694] = { + [sym_concatenation] = STATE(983), + [sym_string] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [sym_word] = ACTIONS(1990), + [anon_sym_RBRACE] = ACTIONS(1992), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1990), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1994), + }, + [695] = { + [sym_file_descriptor] = ACTIONS(1078), + [sym_word] = ACTIONS(1078), + [sym__concat] = ACTIONS(1078), + [sym_variable_name] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_RPAREN] = ACTIONS(1080), + [anon_sym_SEMI_SEMI] = ACTIONS(1080), + [anon_sym_PIPE_AMP] = ACTIONS(1080), + [anon_sym_AMP_AMP] = ACTIONS(1080), + [anon_sym_PIPE_PIPE] = ACTIONS(1080), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_AMP_GT] = ACTIONS(1080), + [anon_sym_AMP_GT_GT] = ACTIONS(1080), + [anon_sym_LT_AMP] = ACTIONS(1080), + [anon_sym_GT_AMP] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym_raw_string] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1080), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1080), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1080), + [anon_sym_BQUOTE] = ACTIONS(1080), + [anon_sym_LT_LPAREN] = ACTIONS(1080), + [anon_sym_GT_LPAREN] = ACTIONS(1080), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_LF] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + }, + [696] = { + [anon_sym_AT] = ACTIONS(1996), + [sym_comment] = ACTIONS(50), + }, + [697] = { + [sym_concatenation] = STATE(987), + [sym_string] = STATE(985), + [sym_simple_expansion] = STATE(985), + [sym_expansion] = STATE(985), + [sym_command_substitution] = STATE(985), + [sym_process_substitution] = STATE(985), + [sym_word] = ACTIONS(1998), + [anon_sym_RBRACE] = ACTIONS(1984), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1998), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2000), + }, + [698] = { + [sym_file_descriptor] = ACTIONS(1162), + [sym_word] = ACTIONS(1162), + [sym__concat] = ACTIONS(1162), + [sym_variable_name] = ACTIONS(1162), + [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_RPAREN] = ACTIONS(1164), + [anon_sym_SEMI_SEMI] = ACTIONS(1164), + [anon_sym_PIPE_AMP] = ACTIONS(1164), + [anon_sym_AMP_AMP] = ACTIONS(1164), + [anon_sym_PIPE_PIPE] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_GT] = ACTIONS(1164), + [anon_sym_AMP_GT] = ACTIONS(1164), + [anon_sym_AMP_GT_GT] = ACTIONS(1164), + [anon_sym_LT_AMP] = ACTIONS(1164), + [anon_sym_GT_AMP] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [sym_raw_string] = ACTIONS(1164), + [anon_sym_DOLLAR] = ACTIONS(1164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1164), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1164), + [anon_sym_BQUOTE] = ACTIONS(1164), + [anon_sym_LT_LPAREN] = ACTIONS(1164), + [anon_sym_GT_LPAREN] = ACTIONS(1164), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym_LF] = ACTIONS(1164), + [anon_sym_AMP] = ACTIONS(1164), + }, + [699] = { + [sym_file_descriptor] = ACTIONS(1214), + [sym_word] = ACTIONS(1214), + [sym__concat] = ACTIONS(1214), + [sym_variable_name] = ACTIONS(1214), + [anon_sym_PIPE] = ACTIONS(1216), + [anon_sym_RPAREN] = ACTIONS(1216), + [anon_sym_SEMI_SEMI] = ACTIONS(1216), + [anon_sym_PIPE_AMP] = ACTIONS(1216), + [anon_sym_AMP_AMP] = ACTIONS(1216), + [anon_sym_PIPE_PIPE] = ACTIONS(1216), + [anon_sym_LT] = ACTIONS(1216), + [anon_sym_GT] = ACTIONS(1216), + [anon_sym_GT_GT] = ACTIONS(1216), + [anon_sym_AMP_GT] = ACTIONS(1216), + [anon_sym_AMP_GT_GT] = ACTIONS(1216), + [anon_sym_LT_AMP] = ACTIONS(1216), + [anon_sym_GT_AMP] = ACTIONS(1216), + [anon_sym_DQUOTE] = ACTIONS(1216), + [sym_raw_string] = ACTIONS(1216), + [anon_sym_DOLLAR] = ACTIONS(1216), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1216), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1216), + [anon_sym_BQUOTE] = ACTIONS(1216), + [anon_sym_LT_LPAREN] = ACTIONS(1216), + [anon_sym_GT_LPAREN] = ACTIONS(1216), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1216), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym_LF] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(1216), + }, + [700] = { + [sym_string] = STATE(988), + [sym_simple_expansion] = STATE(988), + [sym_expansion] = STATE(988), + [sym_command_substitution] = STATE(988), + [sym_process_substitution] = STATE(988), + [sym_word] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(790), + [sym_raw_string] = ACTIONS(2002), + [anon_sym_DOLLAR] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), + [anon_sym_BQUOTE] = ACTIONS(798), + [anon_sym_LT_LPAREN] = ACTIONS(800), + [anon_sym_GT_LPAREN] = ACTIONS(800), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2004), + }, + [701] = { + [aux_sym_concatenation_repeat1] = STATE(990), + [sym_word] = ACTIONS(282), + [sym__concat] = ACTIONS(1372), + [anon_sym_SEMI_SEMI] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(284), + [sym_raw_string] = ACTIONS(284), + [anon_sym_DOLLAR] = ACTIONS(284), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(284), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(284), + [anon_sym_GT_LPAREN] = ACTIONS(284), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_LF] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(284), + }, + [702] = { + [sym_word] = ACTIONS(446), + [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_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(448), + [anon_sym_SEMI] = ACTIONS(448), + [anon_sym_LF] = ACTIONS(448), + [anon_sym_AMP] = ACTIONS(448), + }, + [703] = { + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(291), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_comment] = ACTIONS(64), + }, + [704] = { + [sym_word] = ACTIONS(466), + [sym__concat] = ACTIONS(466), + [anon_sym_SEMI_SEMI] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [sym_raw_string] = ACTIONS(468), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(468), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(468), + [anon_sym_BQUOTE] = ACTIONS(468), + [anon_sym_LT_LPAREN] = ACTIONS(468), + [anon_sym_GT_LPAREN] = ACTIONS(468), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(468), + [anon_sym_SEMI] = ACTIONS(468), + [anon_sym_LF] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(468), + }, + [705] = { + [sym_word] = ACTIONS(470), + [sym__concat] = ACTIONS(470), + [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_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(472), + [anon_sym_SEMI] = ACTIONS(472), + [anon_sym_LF] = ACTIONS(472), + [anon_sym_AMP] = ACTIONS(472), + }, + [706] = { + [sym_word] = ACTIONS(474), + [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_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(476), + [anon_sym_SEMI] = ACTIONS(476), + [anon_sym_LF] = ACTIONS(476), + [anon_sym_AMP] = ACTIONS(476), + }, + [707] = { + [sym_special_variable_name] = STATE(993), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(466), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(478), + [anon_sym_COLON_QMARK] = ACTIONS(466), + [anon_sym_COLON_DASH] = ACTIONS(466), + [anon_sym_PERCENT] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(466), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + }, + [708] = { + [anon_sym_RBRACE] = ACTIONS(2010), + [anon_sym_LBRACK] = ACTIONS(2012), + [anon_sym_EQ] = ACTIONS(2014), + [anon_sym_COLON] = ACTIONS(2016), + [anon_sym_COLON_QMARK] = ACTIONS(2014), + [anon_sym_COLON_DASH] = ACTIONS(2014), + [anon_sym_PERCENT] = ACTIONS(2014), + [anon_sym_SLASH] = ACTIONS(2014), + [sym_comment] = ACTIONS(50), + }, + [709] = { + [anon_sym_RBRACE] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(2022), + [anon_sym_COLON] = ACTIONS(2024), + [anon_sym_COLON_QMARK] = ACTIONS(2022), + [anon_sym_COLON_DASH] = ACTIONS(2022), + [anon_sym_PERCENT] = ACTIONS(2022), + [anon_sym_SLASH] = ACTIONS(2022), + [sym_comment] = ACTIONS(50), + }, + [710] = { + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), + }, + [711] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [712] = { + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_comment] = ACTIONS(50), + }, + [713] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(2026), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [714] = { + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(2028), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), + }, + [715] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(2028), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [716] = { + [aux_sym_concatenation_repeat1] = STATE(990), + [sym_word] = ACTIONS(596), + [sym__concat] = ACTIONS(1372), + [anon_sym_SEMI_SEMI] = ACTIONS(598), + [anon_sym_DQUOTE] = ACTIONS(598), + [sym_raw_string] = ACTIONS(598), + [anon_sym_DOLLAR] = ACTIONS(598), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(598), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(598), + [anon_sym_BQUOTE] = ACTIONS(598), + [anon_sym_LT_LPAREN] = ACTIONS(598), + [anon_sym_GT_LPAREN] = ACTIONS(598), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(598), + [anon_sym_SEMI] = ACTIONS(598), + [anon_sym_LF] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(598), + }, + [717] = { + [sym_do_group] = STATE(1002), + [anon_sym_do] = ACTIONS(328), + [sym_comment] = ACTIONS(50), + }, + [718] = { + [sym_concatenation] = STATE(441), + [sym_string] = STATE(433), + [sym_simple_expansion] = STATE(433), + [sym_expansion] = STATE(433), + [sym_command_substitution] = STATE(433), + [sym_process_substitution] = STATE(433), + [aux_sym_for_statement_repeat1] = STATE(718), + [sym_word] = ACTIONS(2030), + [anon_sym_SEMI_SEMI] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(2033), + [sym_raw_string] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2045), + [anon_sym_BQUOTE] = ACTIONS(2048), + [anon_sym_LT_LPAREN] = ACTIONS(2051), + [anon_sym_GT_LPAREN] = ACTIONS(2051), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2054), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_LF] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1263), + }, + [719] = { + [sym_file_descriptor] = ACTIONS(600), + [sym_word] = ACTIONS(600), + [sym_variable_name] = ACTIONS(600), + [anon_sym_for] = ACTIONS(602), + [anon_sym_while] = ACTIONS(602), + [anon_sym_done] = ACTIONS(602), + [anon_sym_if] = ACTIONS(602), + [anon_sym_case] = ACTIONS(602), + [anon_sym_function] = ACTIONS(602), + [anon_sym_LPAREN] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(602), + [anon_sym_typeset] = ACTIONS(602), + [anon_sym_export] = ACTIONS(602), + [anon_sym_readonly] = ACTIONS(602), + [anon_sym_local] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_GT_GT] = ACTIONS(600), + [anon_sym_AMP_GT] = ACTIONS(602), + [anon_sym_AMP_GT_GT] = ACTIONS(600), + [anon_sym_LT_AMP] = ACTIONS(600), + [anon_sym_GT_AMP] = ACTIONS(600), + [anon_sym_DQUOTE] = ACTIONS(600), + [sym_raw_string] = ACTIONS(600), + [anon_sym_DOLLAR] = ACTIONS(602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(600), + [anon_sym_LT_LPAREN] = ACTIONS(600), + [anon_sym_GT_LPAREN] = ACTIONS(600), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(604), + }, + [720] = { + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_RPAREN] = ACTIONS(2057), + [anon_sym_SEMI_SEMI] = ACTIONS(2057), + [anon_sym_PIPE_AMP] = ACTIONS(2057), + [anon_sym_AMP_AMP] = ACTIONS(2057), + [anon_sym_PIPE_PIPE] = ACTIONS(2057), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_LF] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2057), + }, + [721] = { + [sym__terminated_statement] = STATE(444), + [sym_for_statement] = STATE(445), + [sym_while_statement] = STATE(445), + [sym_if_statement] = STATE(445), + [sym_case_statement] = STATE(445), + [sym_function_definition] = STATE(445), + [sym_subshell] = STATE(445), + [sym_pipeline] = STATE(445), + [sym_list] = STATE(445), + [sym_bracket_command] = STATE(445), + [sym_command] = STATE(445), + [sym_command_name] = STATE(25), + [sym_variable_assignment] = STATE(446), + [sym_declaration_command] = STATE(445), + [sym_subscript] = STATE(27), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(721), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(640), + [sym_word] = ACTIONS(643), + [sym_variable_name] = ACTIONS(646), + [anon_sym_for] = ACTIONS(651), + [anon_sym_while] = ACTIONS(654), + [anon_sym_done] = ACTIONS(2059), + [anon_sym_if] = ACTIONS(657), + [anon_sym_case] = ACTIONS(660), + [anon_sym_function] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACK_LBRACK] = ACTIONS(672), + [anon_sym_declare] = ACTIONS(675), + [anon_sym_typeset] = ACTIONS(675), + [anon_sym_export] = ACTIONS(675), + [anon_sym_readonly] = ACTIONS(675), + [anon_sym_local] = ACTIONS(675), + [anon_sym_LT] = ACTIONS(678), + [anon_sym_GT] = ACTIONS(678), + [anon_sym_GT_GT] = ACTIONS(681), + [anon_sym_AMP_GT] = ACTIONS(678), + [anon_sym_AMP_GT_GT] = ACTIONS(681), + [anon_sym_LT_AMP] = ACTIONS(681), + [anon_sym_GT_AMP] = ACTIONS(681), + [anon_sym_DQUOTE] = ACTIONS(684), + [sym_raw_string] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(696), + [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(702), + }, + [722] = { + [anon_sym_then] = ACTIONS(2061), + [sym_comment] = ACTIONS(50), + }, + [723] = { + [sym_file_descriptor] = ACTIONS(224), + [sym_word] = ACTIONS(224), + [sym_variable_name] = ACTIONS(224), + [anon_sym_for] = ACTIONS(226), + [anon_sym_while] = ACTIONS(226), + [anon_sym_if] = ACTIONS(226), + [anon_sym_fi] = ACTIONS(226), + [anon_sym_case] = ACTIONS(226), + [anon_sym_function] = ACTIONS(226), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LBRACK] = ACTIONS(226), + [anon_sym_LBRACK_LBRACK] = ACTIONS(224), + [anon_sym_declare] = ACTIONS(226), + [anon_sym_typeset] = ACTIONS(226), + [anon_sym_export] = ACTIONS(226), + [anon_sym_readonly] = ACTIONS(226), + [anon_sym_local] = ACTIONS(226), + [anon_sym_LT] = ACTIONS(226), + [anon_sym_GT] = ACTIONS(226), + [anon_sym_GT_GT] = ACTIONS(224), + [anon_sym_AMP_GT] = ACTIONS(226), + [anon_sym_AMP_GT_GT] = ACTIONS(224), + [anon_sym_LT_AMP] = ACTIONS(224), + [anon_sym_GT_AMP] = ACTIONS(224), + [anon_sym_DQUOTE] = ACTIONS(224), + [sym_raw_string] = ACTIONS(224), + [anon_sym_DOLLAR] = ACTIONS(226), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(224), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(224), + [anon_sym_GT_LPAREN] = ACTIONS(224), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(228), + }, + [724] = { + [anon_sym_PIPE] = ACTIONS(230), + [anon_sym_SEMI_SEMI] = ACTIONS(2063), + [anon_sym_PIPE_AMP] = ACTIONS(230), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_LF] = ACTIONS(2063), + [anon_sym_AMP] = ACTIONS(2063), + }, + [725] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(230), + [anon_sym_SEMI_SEMI] = ACTIONS(2063), + [anon_sym_PIPE_AMP] = ACTIONS(230), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_GT_GT] = ACTIONS(264), + [anon_sym_AMP_GT] = ACTIONS(264), + [anon_sym_AMP_GT_GT] = ACTIONS(264), + [anon_sym_LT_AMP] = ACTIONS(264), + [anon_sym_GT_AMP] = ACTIONS(264), + [anon_sym_DQUOTE] = ACTIONS(264), + [sym_raw_string] = ACTIONS(264), + [anon_sym_DOLLAR] = ACTIONS(264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(264), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(264), + [anon_sym_BQUOTE] = ACTIONS(264), + [anon_sym_LT_LPAREN] = ACTIONS(264), + [anon_sym_GT_LPAREN] = ACTIONS(264), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(264), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_LF] = ACTIONS(2063), + [anon_sym_AMP] = ACTIONS(2063), + }, + [726] = { + [sym__terminated_statement] = STATE(723), + [sym_for_statement] = STATE(724), + [sym_while_statement] = STATE(724), + [sym_if_statement] = STATE(724), + [sym_case_statement] = STATE(724), + [sym_function_definition] = STATE(724), + [sym_subshell] = STATE(724), + [sym_pipeline] = STATE(724), + [sym_list] = STATE(724), + [sym_bracket_command] = STATE(724), + [sym_command] = STATE(724), + [sym_command_name] = STATE(25), + [sym_variable_assignment] = STATE(725), + [sym_declaration_command] = STATE(724), + [sym_subscript] = STATE(27), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(1005), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_fi] = ACTIONS(2065), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), + }, + [727] = { + [sym_file_descriptor] = ACTIONS(600), + [sym_word] = ACTIONS(600), + [sym_variable_name] = ACTIONS(600), + [anon_sym_for] = ACTIONS(602), + [anon_sym_while] = ACTIONS(602), + [anon_sym_if] = ACTIONS(602), + [anon_sym_fi] = ACTIONS(602), + [anon_sym_elif] = ACTIONS(602), + [anon_sym_else] = ACTIONS(602), + [anon_sym_case] = ACTIONS(602), + [anon_sym_function] = ACTIONS(602), + [anon_sym_LPAREN] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(602), + [anon_sym_typeset] = ACTIONS(602), + [anon_sym_export] = ACTIONS(602), + [anon_sym_readonly] = ACTIONS(602), + [anon_sym_local] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_GT_GT] = ACTIONS(600), + [anon_sym_AMP_GT] = ACTIONS(602), + [anon_sym_AMP_GT_GT] = ACTIONS(600), + [anon_sym_LT_AMP] = ACTIONS(600), + [anon_sym_GT_AMP] = ACTIONS(600), + [anon_sym_DQUOTE] = ACTIONS(600), + [sym_raw_string] = ACTIONS(600), + [anon_sym_DOLLAR] = ACTIONS(602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(600), + [anon_sym_LT_LPAREN] = ACTIONS(600), + [anon_sym_GT_LPAREN] = ACTIONS(600), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(604), + }, + [728] = { + [anon_sym_PIPE] = ACTIONS(2067), + [anon_sym_RPAREN] = ACTIONS(2067), + [anon_sym_SEMI_SEMI] = ACTIONS(2067), + [anon_sym_PIPE_AMP] = ACTIONS(2067), + [anon_sym_AMP_AMP] = ACTIONS(2067), + [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_LF] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + }, + [729] = { + [anon_sym_fi] = ACTIONS(2069), + [sym_comment] = ACTIONS(50), + }, + [730] = { + [sym__terminated_statement] = STATE(451), + [sym_for_statement] = STATE(452), + [sym_while_statement] = STATE(452), + [sym_if_statement] = STATE(452), + [sym_case_statement] = STATE(452), + [sym_function_definition] = STATE(452), + [sym_subshell] = STATE(452), + [sym_pipeline] = STATE(452), + [sym_list] = STATE(452), + [sym_bracket_command] = STATE(452), + [sym_command] = STATE(452), + [sym_command_name] = STATE(25), + [sym_variable_assignment] = STATE(455), + [sym_declaration_command] = STATE(452), + [sym_subscript] = STATE(27), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(730), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(640), + [sym_word] = ACTIONS(643), + [sym_variable_name] = ACTIONS(646), + [anon_sym_for] = ACTIONS(651), + [anon_sym_while] = ACTIONS(654), + [anon_sym_if] = ACTIONS(657), + [anon_sym_fi] = ACTIONS(2059), + [anon_sym_elif] = ACTIONS(2059), + [anon_sym_else] = ACTIONS(2059), + [anon_sym_case] = ACTIONS(660), + [anon_sym_function] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACK_LBRACK] = ACTIONS(672), + [anon_sym_declare] = ACTIONS(675), + [anon_sym_typeset] = ACTIONS(675), + [anon_sym_export] = ACTIONS(675), + [anon_sym_readonly] = ACTIONS(675), + [anon_sym_local] = ACTIONS(675), + [anon_sym_LT] = ACTIONS(678), + [anon_sym_GT] = ACTIONS(678), + [anon_sym_GT_GT] = ACTIONS(681), + [anon_sym_AMP_GT] = ACTIONS(678), + [anon_sym_AMP_GT_GT] = ACTIONS(681), + [anon_sym_LT_AMP] = ACTIONS(681), + [anon_sym_GT_AMP] = ACTIONS(681), + [anon_sym_DQUOTE] = ACTIONS(684), + [sym_raw_string] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(696), + [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(702), + }, + [731] = { + [sym_elif_clause] = STATE(453), + [sym_else_clause] = STATE(1007), + [aux_sym_if_statement_repeat1] = STATE(732), + [anon_sym_fi] = ACTIONS(2069), + [anon_sym_elif] = ACTIONS(1422), + [anon_sym_else] = ACTIONS(1424), + [sym_comment] = ACTIONS(50), + }, + [732] = { + [sym_elif_clause] = STATE(453), + [aux_sym_if_statement_repeat1] = STATE(732), + [anon_sym_fi] = ACTIONS(2071), + [anon_sym_elif] = ACTIONS(2073), + [anon_sym_else] = ACTIONS(2071), + [sym_comment] = ACTIONS(50), + }, + [733] = { + [aux_sym_case_item_repeat1] = STATE(1010), + [aux_sym_concatenation_repeat1] = STATE(1011), + [sym__concat] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(2076), + [anon_sym_RPAREN] = ACTIONS(2078), + [sym_comment] = ACTIONS(50), + }, + [734] = { + [anon_sym_PIPE] = ACTIONS(2080), + [anon_sym_RPAREN] = ACTIONS(2080), + [anon_sym_SEMI_SEMI] = ACTIONS(2080), + [anon_sym_PIPE_AMP] = ACTIONS(2080), + [anon_sym_AMP_AMP] = ACTIONS(2080), + [anon_sym_PIPE_PIPE] = ACTIONS(2080), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2080), + [anon_sym_LF] = ACTIONS(2080), + [anon_sym_AMP] = ACTIONS(2080), + }, + [735] = { + [aux_sym_case_item_repeat1] = STATE(1013), + [aux_sym_concatenation_repeat1] = STATE(1014), + [sym__concat] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(2076), + [anon_sym_RPAREN] = ACTIONS(2082), + [sym_comment] = ACTIONS(50), + }, + [736] = { + [sym_word] = ACTIONS(2084), + [anon_sym_esac] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2084), + [sym_raw_string] = ACTIONS(2084), + [anon_sym_DOLLAR] = ACTIONS(2086), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2084), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2084), + [anon_sym_BQUOTE] = ACTIONS(2084), + [anon_sym_LT_LPAREN] = ACTIONS(2084), + [anon_sym_GT_LPAREN] = ACTIONS(2084), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2088), + }, + [737] = { + [aux_sym_case_item_repeat1] = STATE(1010), + [anon_sym_PIPE] = ACTIONS(2076), + [anon_sym_RPAREN] = ACTIONS(2078), + [sym_comment] = ACTIONS(50), + }, + [738] = { + [sym_case_item] = STATE(736), + [sym_concatenation] = STATE(737), + [sym_string] = STATE(733), + [sym_simple_expansion] = STATE(733), + [sym_expansion] = STATE(733), + [sym_command_substitution] = STATE(733), + [sym_process_substitution] = STATE(733), + [aux_sym_case_statement_repeat1] = STATE(1016), + [sym_word] = ACTIONS(1426), + [anon_sym_esac] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1430), + }, + [739] = { + [sym_case_item] = STATE(736), + [sym_concatenation] = STATE(737), + [sym_string] = STATE(733), + [sym_simple_expansion] = STATE(733), + [sym_expansion] = STATE(733), + [sym_command_substitution] = STATE(733), + [sym_process_substitution] = STATE(733), + [aux_sym_case_statement_repeat1] = STATE(1017), + [sym_word] = ACTIONS(1426), + [anon_sym_esac] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1430), + }, + [740] = { + [sym__concat] = ACTIONS(1629), + [anon_sym_in] = ACTIONS(1631), + [anon_sym_SEMI_SEMI] = ACTIONS(1631), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_LF] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1631), + }, + [741] = { + [anon_sym_AT] = ACTIONS(2092), + [sym_comment] = ACTIONS(50), + }, + [742] = { + [sym__concat] = ACTIONS(1635), + [anon_sym_in] = ACTIONS(1637), + [anon_sym_SEMI_SEMI] = ACTIONS(1637), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1637), + [anon_sym_LF] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1637), + }, + [743] = { + [anon_sym_AT] = ACTIONS(2094), + [sym_comment] = ACTIONS(50), + }, + [744] = { + [anon_sym_RBRACK] = ACTIONS(2096), + [sym_comment] = ACTIONS(50), + }, + [745] = { + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2100), + [sym_comment] = ACTIONS(50), + }, + [746] = { + [sym__concat] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1649), + [anon_sym_SEMI_SEMI] = ACTIONS(1649), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1649), + [anon_sym_LF] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + }, + [747] = { + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(2102), + [anon_sym_RBRACE] = ACTIONS(2104), + [sym_comment] = ACTIONS(50), + }, + [748] = { + [sym__concat] = ACTIONS(2096), + [anon_sym_RBRACE] = ACTIONS(2100), + [sym_comment] = ACTIONS(50), + }, + [749] = { + [anon_sym_RBRACK] = ACTIONS(2106), + [sym_comment] = ACTIONS(50), + }, + [750] = { + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(2108), + [anon_sym_RBRACE] = ACTIONS(2110), + [sym_comment] = ACTIONS(50), + }, + [751] = { + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(2112), + [anon_sym_RBRACE] = ACTIONS(2114), + [sym_comment] = ACTIONS(50), + }, + [752] = { + [sym__concat] = ACTIONS(2106), + [anon_sym_RBRACE] = ACTIONS(2110), + [sym_comment] = ACTIONS(50), + }, + [753] = { + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_RPAREN] = ACTIONS(2116), + [anon_sym_SEMI_SEMI] = ACTIONS(2116), + [anon_sym_PIPE_AMP] = ACTIONS(2116), + [anon_sym_AMP_AMP] = ACTIONS(2116), + [anon_sym_PIPE_PIPE] = ACTIONS(2116), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2116), + [anon_sym_LF] = ACTIONS(2116), + [anon_sym_AMP] = ACTIONS(2116), + }, + [754] = { + [sym_case_item] = STATE(736), + [sym_concatenation] = STATE(737), + [sym_string] = STATE(733), + [sym_simple_expansion] = STATE(733), + [sym_expansion] = STATE(733), + [sym_command_substitution] = STATE(733), + [sym_process_substitution] = STATE(733), + [aux_sym_case_statement_repeat1] = STATE(1016), + [sym_word] = ACTIONS(1426), + [anon_sym_esac] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1430), + }, + [755] = { + [sym_case_item] = STATE(736), + [sym_concatenation] = STATE(737), + [sym_string] = STATE(733), + [sym_simple_expansion] = STATE(733), + [sym_expansion] = STATE(733), + [sym_command_substitution] = STATE(733), + [sym_process_substitution] = STATE(733), + [aux_sym_case_statement_repeat1] = STATE(1031), + [sym_word] = ACTIONS(1426), + [anon_sym_esac] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1430), + }, + [756] = { + [sym_file_redirect] = STATE(1032), + [sym_file_descriptor] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_SEMI_SEMI] = ACTIONS(2120), + [anon_sym_PIPE_AMP] = ACTIONS(2120), + [anon_sym_AMP_AMP] = ACTIONS(2120), + [anon_sym_PIPE_PIPE] = ACTIONS(2120), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_GT] = ACTIONS(858), + [anon_sym_GT_GT] = ACTIONS(858), + [anon_sym_AMP_GT] = ACTIONS(858), + [anon_sym_AMP_GT_GT] = ACTIONS(858), + [anon_sym_LT_AMP] = ACTIONS(858), + [anon_sym_GT_AMP] = ACTIONS(858), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_LF] = ACTIONS(2120), + [anon_sym_AMP] = ACTIONS(2120), + }, + [757] = { + [sym_file_descriptor] = ACTIONS(2122), + [anon_sym_PIPE] = ACTIONS(2124), + [anon_sym_RPAREN] = ACTIONS(2124), + [anon_sym_SEMI_SEMI] = ACTIONS(2124), + [anon_sym_PIPE_AMP] = ACTIONS(2124), + [anon_sym_AMP_AMP] = ACTIONS(2124), + [anon_sym_PIPE_PIPE] = ACTIONS(2124), + [anon_sym_LT] = ACTIONS(2124), + [anon_sym_GT] = ACTIONS(2124), + [anon_sym_GT_GT] = ACTIONS(2124), + [anon_sym_AMP_GT] = ACTIONS(2124), + [anon_sym_AMP_GT_GT] = ACTIONS(2124), + [anon_sym_LT_AMP] = ACTIONS(2124), + [anon_sym_GT_AMP] = ACTIONS(2124), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2124), + [anon_sym_LF] = ACTIONS(2124), + [anon_sym_AMP] = ACTIONS(2124), + }, + [758] = { [sym__terminated_statement] = STATE(23), [sym_for_statement] = STATE(24), [sym_while_statement] = STATE(24), @@ -24885,2129 +22132,4036 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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(780), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(758), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(640), + [sym_word] = ACTIONS(643), + [sym_variable_name] = ACTIONS(646), + [anon_sym_for] = ACTIONS(651), + [anon_sym_while] = ACTIONS(654), + [anon_sym_if] = ACTIONS(657), + [anon_sym_case] = ACTIONS(660), + [anon_sym_function] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_RBRACE] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACK_LBRACK] = ACTIONS(672), + [anon_sym_declare] = ACTIONS(675), + [anon_sym_typeset] = ACTIONS(675), + [anon_sym_export] = ACTIONS(675), + [anon_sym_readonly] = ACTIONS(675), + [anon_sym_local] = ACTIONS(675), + [anon_sym_LT] = ACTIONS(678), + [anon_sym_GT] = ACTIONS(678), + [anon_sym_GT_GT] = ACTIONS(681), + [anon_sym_AMP_GT] = ACTIONS(678), + [anon_sym_AMP_GT_GT] = ACTIONS(681), + [anon_sym_LT_AMP] = ACTIONS(681), + [anon_sym_GT_AMP] = ACTIONS(681), + [anon_sym_DQUOTE] = ACTIONS(684), + [sym_raw_string] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(696), + [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(702), + }, + [759] = { + [sym_concatenation] = STATE(1035), + [sym_string] = STATE(1033), + [sym_simple_expansion] = STATE(1033), + [sym_expansion] = STATE(1033), + [sym_command_substitution] = STATE(1033), + [sym_process_substitution] = STATE(1033), + [sym_word] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym_raw_string] = ACTIONS(2126), + [anon_sym_DOLLAR] = ACTIONS(1477), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1479), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1481), + [anon_sym_BQUOTE] = ACTIONS(1483), + [anon_sym_LT_LPAREN] = ACTIONS(1485), + [anon_sym_GT_LPAREN] = ACTIONS(1485), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2128), + }, + [760] = { + [aux_sym_concatenation_repeat1] = STATE(1037), + [sym__concat] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(1228), + [anon_sym_SEMI_SEMI] = ACTIONS(1228), + [anon_sym_PIPE_AMP] = ACTIONS(1228), + [anon_sym_AMP_AMP] = ACTIONS(1228), + [anon_sym_PIPE_PIPE] = ACTIONS(1228), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1228), + [anon_sym_LF] = ACTIONS(1228), + [anon_sym_AMP] = ACTIONS(1228), + }, + [761] = { + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(1039), + [anon_sym_DQUOTE] = ACTIONS(2132), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_comment] = ACTIONS(64), + }, + [762] = { + [sym_special_variable_name] = STATE(1042), + [anon_sym_DOLLAR] = ACTIONS(2134), + [anon_sym_POUND] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2134), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2136), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_QMARK] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_0] = ACTIONS(2138), + [anon_sym__] = ACTIONS(2138), + }, + [763] = { + [sym_special_variable_name] = STATE(1045), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(2140), + [anon_sym_AT] = ACTIONS(162), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + }, + [764] = { + [sym_for_statement] = STATE(1046), + [sym_while_statement] = STATE(1046), + [sym_if_statement] = STATE(1046), + [sym_case_statement] = STATE(1046), + [sym_function_definition] = STATE(1046), + [sym_subshell] = STATE(1046), + [sym_pipeline] = STATE(1046), + [sym_list] = STATE(1046), + [sym_bracket_command] = STATE(1046), + [sym_command] = STATE(1046), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(1047), + [sym_declaration_command] = STATE(1046), + [sym_subscript] = STATE(126), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), + }, + [765] = { + [sym_for_statement] = STATE(1048), + [sym_while_statement] = STATE(1048), + [sym_if_statement] = STATE(1048), + [sym_case_statement] = STATE(1048), + [sym_function_definition] = STATE(1048), + [sym_subshell] = STATE(1048), + [sym_pipeline] = STATE(1048), + [sym_list] = STATE(1048), + [sym_bracket_command] = STATE(1048), + [sym_command] = STATE(1048), + [sym_command_name] = STATE(135), + [sym_variable_assignment] = STATE(1049), + [sym_declaration_command] = STATE(1048), + [sym_subscript] = STATE(137), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(129), + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [sym_process_substitution] = STATE(129), + [aux_sym_command_repeat1] = STATE(138), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(206), + [sym_variable_name] = ACTIONS(208), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(212), + [anon_sym_typeset] = ACTIONS(212), + [anon_sym_export] = ACTIONS(212), + [anon_sym_readonly] = ACTIONS(212), + [anon_sym_local] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(206), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(214), + }, + [766] = { + [sym_for_statement] = STATE(1050), + [sym_while_statement] = STATE(1050), + [sym_if_statement] = STATE(1050), + [sym_case_statement] = STATE(1050), + [sym_function_definition] = STATE(1050), + [sym_subshell] = STATE(1050), + [sym_pipeline] = STATE(1050), + [sym_list] = STATE(1050), + [sym_bracket_command] = STATE(1050), + [sym_command] = STATE(1050), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(1051), + [sym_declaration_command] = STATE(1050), + [sym_subscript] = STATE(126), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), + }, + [767] = { + [aux_sym_concatenation_repeat1] = STATE(1052), + [sym__concat] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_SEMI_SEMI] = ACTIONS(1242), + [anon_sym_PIPE_AMP] = ACTIONS(1242), + [anon_sym_AMP_AMP] = ACTIONS(1242), + [anon_sym_PIPE_PIPE] = ACTIONS(1242), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_LF] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + }, + [768] = { + [anon_sym_PIPE] = ACTIONS(1228), + [anon_sym_RPAREN] = ACTIONS(1228), + [anon_sym_SEMI_SEMI] = ACTIONS(1228), + [anon_sym_PIPE_AMP] = ACTIONS(1228), + [anon_sym_AMP_AMP] = ACTIONS(1228), + [anon_sym_PIPE_PIPE] = ACTIONS(1228), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1228), + [anon_sym_LF] = ACTIONS(1228), + [anon_sym_AMP] = ACTIONS(1228), + }, + [769] = { + [aux_sym_concatenation_repeat1] = STATE(1053), + [sym_file_descriptor] = ACTIONS(282), + [sym_word] = ACTIONS(282), + [sym__concat] = ACTIONS(762), + [sym_variable_name] = ACTIONS(282), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_RPAREN] = ACTIONS(284), + [anon_sym_SEMI_SEMI] = ACTIONS(284), + [anon_sym_PIPE_AMP] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_AMP_GT] = ACTIONS(284), + [anon_sym_AMP_GT_GT] = ACTIONS(284), + [anon_sym_LT_AMP] = ACTIONS(284), + [anon_sym_GT_AMP] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(284), + [sym_raw_string] = ACTIONS(284), + [anon_sym_DOLLAR] = ACTIONS(284), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(284), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(284), + [anon_sym_GT_LPAREN] = ACTIONS(284), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_LF] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(284), + }, + [770] = { + [aux_sym_concatenation_repeat1] = STATE(1053), + [sym_file_descriptor] = ACTIONS(596), + [sym_word] = ACTIONS(596), + [sym__concat] = ACTIONS(762), + [sym_variable_name] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(598), + [anon_sym_RPAREN] = ACTIONS(598), + [anon_sym_SEMI_SEMI] = ACTIONS(598), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(598), + [anon_sym_PIPE_PIPE] = ACTIONS(598), + [anon_sym_LT] = ACTIONS(598), + [anon_sym_GT] = ACTIONS(598), + [anon_sym_GT_GT] = ACTIONS(598), + [anon_sym_AMP_GT] = ACTIONS(598), + [anon_sym_AMP_GT_GT] = ACTIONS(598), + [anon_sym_LT_AMP] = ACTIONS(598), + [anon_sym_GT_AMP] = ACTIONS(598), + [anon_sym_DQUOTE] = ACTIONS(598), + [sym_raw_string] = ACTIONS(598), + [anon_sym_DOLLAR] = ACTIONS(598), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(598), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(598), + [anon_sym_BQUOTE] = ACTIONS(598), + [anon_sym_LT_LPAREN] = ACTIONS(598), + [anon_sym_GT_LPAREN] = ACTIONS(598), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(598), + [anon_sym_SEMI] = ACTIONS(598), + [anon_sym_LF] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(598), + }, + [771] = { + [sym_compound_statement] = STATE(1054), + [anon_sym_LBRACE] = ACTIONS(358), + [sym_comment] = ACTIONS(50), + }, + [772] = { + [anon_sym_LT] = ACTIONS(2144), + [anon_sym_GT] = ACTIONS(2144), + [anon_sym_GT_GT] = ACTIONS(2146), + [anon_sym_AMP_GT] = ACTIONS(2144), + [anon_sym_AMP_GT_GT] = ACTIONS(2146), + [anon_sym_LT_AMP] = ACTIONS(2146), + [anon_sym_GT_AMP] = ACTIONS(2146), + [sym_comment] = ACTIONS(50), + }, + [773] = { + [sym_concatenation] = STATE(768), + [sym_string] = STATE(1056), + [sym_simple_expansion] = STATE(1056), + [sym_expansion] = STATE(1056), + [sym_command_substitution] = STATE(1056), + [sym_process_substitution] = STATE(1056), + [sym_word] = ACTIONS(2148), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym_raw_string] = ACTIONS(2148), + [anon_sym_DOLLAR] = ACTIONS(1477), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1479), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1481), + [anon_sym_BQUOTE] = ACTIONS(1483), + [anon_sym_LT_LPAREN] = ACTIONS(1485), + [anon_sym_GT_LPAREN] = ACTIONS(1485), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2150), + }, + [774] = { + [aux_sym_concatenation_repeat1] = STATE(1058), + [sym_word] = ACTIONS(760), + [sym__concat] = ACTIONS(1566), + [sym_variable_name] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(764), + [anon_sym_SEMI_SEMI] = ACTIONS(764), + [anon_sym_PIPE_AMP] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(764), + [anon_sym_PIPE_PIPE] = ACTIONS(764), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(764), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LF] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(764), + }, + [775] = { + [aux_sym_concatenation_repeat1] = STATE(1059), + [sym_word] = ACTIONS(784), + [sym__concat] = ACTIONS(1566), + [sym_variable_name] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(786), + [anon_sym_RPAREN] = ACTIONS(786), + [anon_sym_SEMI_SEMI] = ACTIONS(786), + [anon_sym_PIPE_AMP] = ACTIONS(786), + [anon_sym_AMP_AMP] = ACTIONS(786), + [anon_sym_PIPE_PIPE] = ACTIONS(786), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(786), + [anon_sym_SEMI] = ACTIONS(786), + [anon_sym_LF] = ACTIONS(786), + [anon_sym_AMP] = ACTIONS(786), + }, + [776] = { + [sym_file_redirect] = STATE(938), + [sym_file_descriptor] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1886), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_SEMI_SEMI] = ACTIONS(1886), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [anon_sym_LT] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1495), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_AMP_GT] = ACTIONS(1495), + [anon_sym_AMP_GT_GT] = ACTIONS(1495), + [anon_sym_LT_AMP] = ACTIONS(1495), + [anon_sym_GT_AMP] = ACTIONS(1495), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_LF] = ACTIONS(1886), + [anon_sym_AMP] = ACTIONS(1886), + }, + [777] = { + [aux_sym_concatenation_repeat1] = STATE(779), + [sym_file_descriptor] = ACTIONS(723), + [sym__concat] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_GT_GT] = ACTIONS(1888), + [anon_sym_AMP_GT] = ACTIONS(1888), + [anon_sym_AMP_GT_GT] = ACTIONS(1888), + [anon_sym_LT_AMP] = ACTIONS(1888), + [anon_sym_GT_AMP] = ACTIONS(1888), + [anon_sym_LT_LT] = ACTIONS(1888), + [anon_sym_LT_LT_DASH] = ACTIONS(1888), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), + }, + [778] = { + [aux_sym_concatenation_repeat1] = STATE(780), + [sym_file_descriptor] = ACTIONS(727), + [sym__concat] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1890), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(1890), + [anon_sym_GT] = ACTIONS(1890), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(1890), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(1890), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + }, + [779] = { + [aux_sym_concatenation_repeat1] = STATE(1060), + [sym_file_descriptor] = ACTIONS(282), + [sym__concat] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_RPAREN] = ACTIONS(284), + [anon_sym_SEMI_SEMI] = ACTIONS(284), + [anon_sym_PIPE_AMP] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_AMP_GT] = ACTIONS(284), + [anon_sym_AMP_GT_GT] = ACTIONS(284), + [anon_sym_LT_AMP] = ACTIONS(284), + [anon_sym_GT_AMP] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_LT_LT_DASH] = ACTIONS(284), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_LF] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(284), + }, + [780] = { + [aux_sym_concatenation_repeat1] = STATE(1060), + [sym_file_descriptor] = ACTIONS(596), + [sym__concat] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(598), + [anon_sym_RPAREN] = ACTIONS(598), + [anon_sym_SEMI_SEMI] = ACTIONS(598), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(598), + [anon_sym_PIPE_PIPE] = ACTIONS(598), + [anon_sym_LT] = ACTIONS(598), + [anon_sym_GT] = ACTIONS(598), + [anon_sym_GT_GT] = ACTIONS(598), + [anon_sym_AMP_GT] = ACTIONS(598), + [anon_sym_AMP_GT_GT] = ACTIONS(598), + [anon_sym_LT_AMP] = ACTIONS(598), + [anon_sym_GT_AMP] = ACTIONS(598), + [anon_sym_LT_LT] = ACTIONS(598), + [anon_sym_LT_LT_DASH] = ACTIONS(598), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(598), + [anon_sym_LF] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(598), + }, + [781] = { + [anon_sym_PIPE] = ACTIONS(2152), + [anon_sym_RPAREN] = ACTIONS(2152), + [anon_sym_SEMI_SEMI] = ACTIONS(2152), + [anon_sym_PIPE_AMP] = ACTIONS(2152), + [anon_sym_AMP_AMP] = ACTIONS(2152), + [anon_sym_PIPE_PIPE] = ACTIONS(2152), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_LF] = ACTIONS(2152), + [anon_sym_AMP] = ACTIONS(2152), + }, + [782] = { + [sym_file_redirect] = STATE(151), + [sym_heredoc_redirect] = STATE(151), + [aux_sym_command_repeat2] = STATE(498), + [sym_file_descriptor] = ACTIONS(376), + [anon_sym_PIPE] = ACTIONS(1940), + [anon_sym_RPAREN] = ACTIONS(1940), + [anon_sym_SEMI_SEMI] = ACTIONS(1940), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(380), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(380), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [anon_sym_LT_LT] = ACTIONS(244), + [anon_sym_LT_LT_DASH] = ACTIONS(244), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_LF] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1940), + }, + [783] = { + [sym_word] = ACTIONS(1629), + [sym__concat] = ACTIONS(1629), + [anon_sym_RPAREN] = ACTIONS(1629), + [anon_sym_RBRACK] = ACTIONS(2154), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1629), + [sym_raw_string] = ACTIONS(1629), + [anon_sym_DOLLAR] = ACTIONS(2154), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1629), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1629), + [anon_sym_BQUOTE] = ACTIONS(1629), + [anon_sym_LT_LPAREN] = ACTIONS(1629), + [anon_sym_GT_LPAREN] = ACTIONS(1629), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2154), + }, + [784] = { + [anon_sym_AT] = ACTIONS(2156), + [sym_comment] = ACTIONS(50), + }, + [785] = { + [sym_word] = ACTIONS(1635), + [sym__concat] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(1635), + [anon_sym_RBRACK] = ACTIONS(2158), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [sym_raw_string] = ACTIONS(1635), + [anon_sym_DOLLAR] = ACTIONS(2158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), + [anon_sym_LT_LPAREN] = ACTIONS(1635), + [anon_sym_GT_LPAREN] = ACTIONS(1635), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2158), + }, + [786] = { + [anon_sym_AT] = ACTIONS(2160), + [sym_comment] = ACTIONS(50), + }, + [787] = { + [anon_sym_RBRACK] = ACTIONS(2162), + [sym_comment] = ACTIONS(50), + }, + [788] = { + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2166), + [sym_comment] = ACTIONS(50), + }, + [789] = { + [sym_word] = ACTIONS(1647), + [sym__concat] = ACTIONS(1647), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_RBRACK] = ACTIONS(2168), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [sym_raw_string] = ACTIONS(1647), + [anon_sym_DOLLAR] = ACTIONS(2168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1647), + [anon_sym_BQUOTE] = ACTIONS(1647), + [anon_sym_LT_LPAREN] = ACTIONS(1647), + [anon_sym_GT_LPAREN] = ACTIONS(1647), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2168), + }, + [790] = { + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2172), + [sym_comment] = ACTIONS(50), + }, + [791] = { + [sym__concat] = ACTIONS(2162), + [anon_sym_RBRACE] = ACTIONS(2166), + [sym_comment] = ACTIONS(50), + }, + [792] = { + [anon_sym_RBRACK] = ACTIONS(2174), + [sym_comment] = ACTIONS(50), + }, + [793] = { + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(2176), + [anon_sym_RBRACE] = ACTIONS(2178), + [sym_comment] = ACTIONS(50), + }, + [794] = { + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(2182), + [sym_comment] = ACTIONS(50), + }, + [795] = { + [sym__concat] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2178), + [sym_comment] = ACTIONS(50), + }, + [796] = { + [sym_string] = STATE(1073), + [sym_simple_expansion] = STATE(1073), + [sym_expansion] = STATE(1073), + [sym_command_substitution] = STATE(1073), + [sym_process_substitution] = STATE(1073), + [sym_word] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym_raw_string] = ACTIONS(2184), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(968), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(970), + [anon_sym_BQUOTE] = ACTIONS(972), + [anon_sym_LT_LPAREN] = ACTIONS(974), + [anon_sym_GT_LPAREN] = ACTIONS(974), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2186), + }, + [797] = { + [aux_sym_concatenation_repeat1] = STATE(1075), + [sym_word] = ACTIONS(282), + [sym__concat] = ACTIONS(1566), + [sym_variable_name] = ACTIONS(282), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_SEMI_SEMI] = ACTIONS(284), + [anon_sym_PIPE_AMP] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_LF] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(284), + }, + [798] = { + [sym_word] = ACTIONS(1342), + [sym_variable_name] = ACTIONS(1342), + [anon_sym_PIPE] = ACTIONS(1344), + [anon_sym_RPAREN] = ACTIONS(1344), + [anon_sym_SEMI_SEMI] = ACTIONS(1344), + [anon_sym_PIPE_AMP] = ACTIONS(1344), + [anon_sym_AMP_AMP] = ACTIONS(1344), + [anon_sym_PIPE_PIPE] = ACTIONS(1344), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym_LF] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + }, + [799] = { + [sym_concatenation] = STATE(72), + [sym_string] = STATE(414), + [sym_simple_expansion] = STATE(414), + [sym_expansion] = STATE(414), + [sym_command_substitution] = STATE(414), + [sym_process_substitution] = STATE(414), + [aux_sym_for_statement_repeat1] = STATE(688), + [sym_word] = ACTIONS(766), + [anon_sym_RPAREN] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(102), + [sym_raw_string] = ACTIONS(766), + [anon_sym_DOLLAR] = ACTIONS(104), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(108), + [anon_sym_BQUOTE] = ACTIONS(110), + [anon_sym_LT_LPAREN] = ACTIONS(112), + [anon_sym_GT_LPAREN] = ACTIONS(112), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(770), + }, + [800] = { + [sym_word] = 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), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(448), + [anon_sym_SEMI] = ACTIONS(448), + [anon_sym_LF] = ACTIONS(448), + [anon_sym_AMP] = ACTIONS(448), + }, + [801] = { + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(291), + [anon_sym_DQUOTE] = ACTIONS(2190), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_comment] = ACTIONS(64), + }, + [802] = { + [sym_word] = ACTIONS(466), + [sym__concat] = ACTIONS(466), + [sym_variable_name] = ACTIONS(466), + [anon_sym_PIPE] = ACTIONS(468), + [anon_sym_RPAREN] = ACTIONS(468), + [anon_sym_SEMI_SEMI] = ACTIONS(468), + [anon_sym_PIPE_AMP] = ACTIONS(468), + [anon_sym_AMP_AMP] = ACTIONS(468), + [anon_sym_PIPE_PIPE] = ACTIONS(468), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(468), + [anon_sym_SEMI] = ACTIONS(468), + [anon_sym_LF] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(468), + }, + [803] = { + [sym_word] = ACTIONS(470), + [sym__concat] = ACTIONS(470), + [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(64), + [sym_identifier] = ACTIONS(472), + [anon_sym_SEMI] = ACTIONS(472), + [anon_sym_LF] = ACTIONS(472), + [anon_sym_AMP] = ACTIONS(472), + }, + [804] = { + [sym_word] = 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), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(476), + [anon_sym_SEMI] = ACTIONS(476), + [anon_sym_LF] = ACTIONS(476), + [anon_sym_AMP] = ACTIONS(476), + }, + [805] = { + [sym_special_variable_name] = STATE(1079), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(466), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(478), + [anon_sym_COLON_QMARK] = ACTIONS(466), + [anon_sym_COLON_DASH] = ACTIONS(466), + [anon_sym_PERCENT] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(466), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2192), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + }, + [806] = { + [anon_sym_RBRACE] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2196), + [anon_sym_EQ] = ACTIONS(2198), + [anon_sym_COLON] = ACTIONS(2200), + [anon_sym_COLON_QMARK] = ACTIONS(2198), + [anon_sym_COLON_DASH] = ACTIONS(2198), + [anon_sym_PERCENT] = ACTIONS(2198), + [anon_sym_SLASH] = ACTIONS(2198), + [sym_comment] = ACTIONS(50), + }, + [807] = { + [anon_sym_RBRACE] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_EQ] = ACTIONS(2206), + [anon_sym_COLON] = ACTIONS(2208), + [anon_sym_COLON_QMARK] = ACTIONS(2206), + [anon_sym_COLON_DASH] = ACTIONS(2206), + [anon_sym_PERCENT] = ACTIONS(2206), + [anon_sym_SLASH] = ACTIONS(2206), + [sym_comment] = ACTIONS(50), + }, + [808] = { + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(2210), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), + }, + [809] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(2210), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [810] = { + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_BQUOTE] = ACTIONS(2210), + [sym_comment] = ACTIONS(50), + }, + [811] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(2210), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [812] = { + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(2212), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), + }, + [813] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(2212), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [814] = { + [aux_sym_concatenation_repeat1] = STATE(1075), + [sym_word] = ACTIONS(596), + [sym__concat] = ACTIONS(1566), + [sym_variable_name] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(598), + [anon_sym_SEMI_SEMI] = ACTIONS(598), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(598), + [anon_sym_PIPE_PIPE] = ACTIONS(598), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(598), + [anon_sym_SEMI] = ACTIONS(598), + [anon_sym_LF] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(598), + }, + [815] = { + [sym_file_descriptor] = ACTIONS(1629), + [sym_word] = ACTIONS(1629), + [sym__concat] = ACTIONS(1629), + [sym_variable_name] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(1629), + [anon_sym_PIPE_AMP] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE_PIPE] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(2154), + [anon_sym_GT] = ACTIONS(2154), + [anon_sym_GT_GT] = ACTIONS(1629), + [anon_sym_AMP_GT] = ACTIONS(2154), + [anon_sym_AMP_GT_GT] = ACTIONS(1629), + [anon_sym_LT_AMP] = ACTIONS(1629), + [anon_sym_GT_AMP] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1629), + [sym_raw_string] = ACTIONS(1629), + [anon_sym_DOLLAR] = ACTIONS(2154), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1629), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1629), + [anon_sym_BQUOTE] = ACTIONS(1629), + [anon_sym_LT_LPAREN] = ACTIONS(1629), + [anon_sym_GT_LPAREN] = ACTIONS(1629), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2154), + }, + [816] = { + [anon_sym_AT] = ACTIONS(2214), + [sym_comment] = ACTIONS(50), + }, + [817] = { + [sym_file_descriptor] = ACTIONS(1635), + [sym_word] = ACTIONS(1635), + [sym__concat] = ACTIONS(1635), + [sym_variable_name] = ACTIONS(1635), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_RPAREN] = ACTIONS(1635), + [anon_sym_PIPE_AMP] = ACTIONS(1635), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_PIPE_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_GT] = ACTIONS(2158), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_AMP_GT] = ACTIONS(2158), + [anon_sym_AMP_GT_GT] = ACTIONS(1635), + [anon_sym_LT_AMP] = ACTIONS(1635), + [anon_sym_GT_AMP] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [sym_raw_string] = ACTIONS(1635), + [anon_sym_DOLLAR] = ACTIONS(2158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), + [anon_sym_LT_LPAREN] = ACTIONS(1635), + [anon_sym_GT_LPAREN] = ACTIONS(1635), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2158), + }, + [818] = { + [anon_sym_AT] = ACTIONS(2216), + [sym_comment] = ACTIONS(50), + }, + [819] = { + [anon_sym_RBRACK] = ACTIONS(2218), + [sym_comment] = ACTIONS(50), + }, + [820] = { + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(2220), + [anon_sym_RBRACE] = ACTIONS(2222), + [sym_comment] = ACTIONS(50), + }, + [821] = { + [sym_file_descriptor] = ACTIONS(1647), + [sym_word] = ACTIONS(1647), + [sym__concat] = ACTIONS(1647), + [sym_variable_name] = ACTIONS(1647), + [anon_sym_PIPE] = ACTIONS(2168), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_PIPE_AMP] = ACTIONS(1647), + [anon_sym_AMP_AMP] = ACTIONS(1647), + [anon_sym_PIPE_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(2168), + [anon_sym_GT] = ACTIONS(2168), + [anon_sym_GT_GT] = ACTIONS(1647), + [anon_sym_AMP_GT] = ACTIONS(2168), + [anon_sym_AMP_GT_GT] = ACTIONS(1647), + [anon_sym_LT_AMP] = ACTIONS(1647), + [anon_sym_GT_AMP] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [sym_raw_string] = ACTIONS(1647), + [anon_sym_DOLLAR] = ACTIONS(2168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1647), + [anon_sym_BQUOTE] = ACTIONS(1647), + [anon_sym_LT_LPAREN] = ACTIONS(1647), + [anon_sym_GT_LPAREN] = ACTIONS(1647), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2168), + }, + [822] = { + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(2224), + [anon_sym_RBRACE] = ACTIONS(2226), + [sym_comment] = ACTIONS(50), + }, + [823] = { + [sym__concat] = ACTIONS(2218), + [anon_sym_RBRACE] = ACTIONS(2222), + [sym_comment] = ACTIONS(50), + }, + [824] = { + [anon_sym_RBRACK] = ACTIONS(2228), + [sym_comment] = ACTIONS(50), + }, + [825] = { + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(2230), + [anon_sym_RBRACE] = ACTIONS(2232), + [sym_comment] = ACTIONS(50), + }, + [826] = { + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2236), + [sym_comment] = ACTIONS(50), + }, + [827] = { + [sym__concat] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2232), + [sym_comment] = ACTIONS(50), + }, + [828] = { + [anon_sym_DQUOTE] = ACTIONS(1631), + [sym__string_content] = ACTIONS(2154), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1631), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1631), + [sym_comment] = ACTIONS(64), + }, + [829] = { + [anon_sym_AT] = ACTIONS(2238), + [sym_comment] = ACTIONS(50), + }, + [830] = { + [anon_sym_DQUOTE] = ACTIONS(1637), + [sym__string_content] = ACTIONS(2158), + [anon_sym_DOLLAR] = ACTIONS(1637), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1637), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1637), + [anon_sym_BQUOTE] = ACTIONS(1637), + [sym_comment] = ACTIONS(64), + }, + [831] = { + [anon_sym_AT] = ACTIONS(2240), + [sym_comment] = ACTIONS(50), + }, + [832] = { + [anon_sym_RBRACK] = ACTIONS(2242), + [sym_comment] = ACTIONS(50), + }, + [833] = { + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2246), + [sym_comment] = ACTIONS(50), + }, + [834] = { + [anon_sym_DQUOTE] = ACTIONS(1649), + [sym__string_content] = ACTIONS(2168), + [anon_sym_DOLLAR] = ACTIONS(1649), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1649), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1649), + [sym_comment] = ACTIONS(64), + }, + [835] = { + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(2248), + [anon_sym_RBRACE] = ACTIONS(2250), + [sym_comment] = ACTIONS(50), + }, + [836] = { + [sym__concat] = ACTIONS(2242), + [anon_sym_RBRACE] = ACTIONS(2246), + [sym_comment] = ACTIONS(50), + }, + [837] = { + [anon_sym_RBRACK] = ACTIONS(2252), + [sym_comment] = ACTIONS(50), + }, + [838] = { + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(2254), + [anon_sym_RBRACE] = ACTIONS(2256), + [sym_comment] = ACTIONS(50), + }, + [839] = { + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(2258), + [anon_sym_RBRACE] = ACTIONS(2260), + [sym_comment] = ACTIONS(50), + }, + [840] = { + [sym__concat] = ACTIONS(2252), + [anon_sym_RBRACE] = ACTIONS(2256), + [sym_comment] = ACTIONS(50), + }, + [841] = { + [anon_sym_RBRACK] = ACTIONS(2262), + [sym_comment] = ACTIONS(50), + }, + [842] = { + [anon_sym_RBRACK] = ACTIONS(2264), + [sym_comment] = ACTIONS(50), + }, + [843] = { + [anon_sym_RBRACE] = ACTIONS(2266), + [sym_comment] = ACTIONS(50), + }, + [844] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2266), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [845] = { + [sym_file_descriptor] = ACTIONS(2268), + [sym_word] = ACTIONS(2268), + [sym__concat] = ACTIONS(2268), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_RPAREN] = ACTIONS(2270), + [anon_sym_SEMI_SEMI] = ACTIONS(2270), + [anon_sym_PIPE_AMP] = ACTIONS(2270), + [anon_sym_AMP_AMP] = ACTIONS(2270), + [anon_sym_PIPE_PIPE] = ACTIONS(2270), + [anon_sym_LT] = ACTIONS(2270), + [anon_sym_GT] = ACTIONS(2270), + [anon_sym_GT_GT] = ACTIONS(2270), + [anon_sym_AMP_GT] = ACTIONS(2270), + [anon_sym_AMP_GT_GT] = ACTIONS(2270), + [anon_sym_LT_AMP] = ACTIONS(2270), + [anon_sym_GT_AMP] = ACTIONS(2270), + [anon_sym_LT_LT] = ACTIONS(2270), + [anon_sym_LT_LT_DASH] = ACTIONS(2270), + [anon_sym_DQUOTE] = ACTIONS(2270), + [sym_raw_string] = ACTIONS(2270), + [anon_sym_DOLLAR] = ACTIONS(2270), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2270), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2270), + [anon_sym_BQUOTE] = ACTIONS(2270), + [anon_sym_LT_LPAREN] = ACTIONS(2270), + [anon_sym_GT_LPAREN] = ACTIONS(2270), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2270), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym_LF] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(2270), + }, + [846] = { + [aux_sym_concatenation_repeat1] = STATE(1115), + [sym__concat] = ACTIONS(742), + [anon_sym_RBRACE] = ACTIONS(282), + [sym_comment] = ACTIONS(50), + }, + [847] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [848] = { + [sym_file_descriptor] = ACTIONS(2274), + [sym_word] = ACTIONS(2274), + [sym__concat] = ACTIONS(2274), + [anon_sym_PIPE] = ACTIONS(2276), + [anon_sym_RPAREN] = ACTIONS(2276), + [anon_sym_SEMI_SEMI] = ACTIONS(2276), + [anon_sym_PIPE_AMP] = ACTIONS(2276), + [anon_sym_AMP_AMP] = ACTIONS(2276), + [anon_sym_PIPE_PIPE] = ACTIONS(2276), + [anon_sym_LT] = ACTIONS(2276), + [anon_sym_GT] = ACTIONS(2276), + [anon_sym_GT_GT] = ACTIONS(2276), + [anon_sym_AMP_GT] = ACTIONS(2276), + [anon_sym_AMP_GT_GT] = ACTIONS(2276), + [anon_sym_LT_AMP] = ACTIONS(2276), + [anon_sym_GT_AMP] = ACTIONS(2276), + [anon_sym_LT_LT] = ACTIONS(2276), + [anon_sym_LT_LT_DASH] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_raw_string] = ACTIONS(2276), + [anon_sym_DOLLAR] = ACTIONS(2276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2276), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2276), + [anon_sym_BQUOTE] = ACTIONS(2276), + [anon_sym_LT_LPAREN] = ACTIONS(2276), + [anon_sym_GT_LPAREN] = ACTIONS(2276), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_LF] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(2276), + }, + [849] = { + [aux_sym_concatenation_repeat1] = STATE(1115), + [sym__concat] = ACTIONS(742), + [anon_sym_RBRACE] = ACTIONS(596), + [sym_comment] = ACTIONS(50), + }, + [850] = { + [anon_sym_RBRACE] = ACTIONS(2278), + [sym_comment] = ACTIONS(50), + }, + [851] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [852] = { + [sym_file_descriptor] = ACTIONS(2280), + [sym_word] = ACTIONS(2280), + [sym__concat] = ACTIONS(2280), + [anon_sym_PIPE] = ACTIONS(2282), + [anon_sym_RPAREN] = ACTIONS(2282), + [anon_sym_SEMI_SEMI] = ACTIONS(2282), + [anon_sym_PIPE_AMP] = ACTIONS(2282), + [anon_sym_AMP_AMP] = ACTIONS(2282), + [anon_sym_PIPE_PIPE] = ACTIONS(2282), + [anon_sym_LT] = ACTIONS(2282), + [anon_sym_GT] = ACTIONS(2282), + [anon_sym_GT_GT] = ACTIONS(2282), + [anon_sym_AMP_GT] = ACTIONS(2282), + [anon_sym_AMP_GT_GT] = ACTIONS(2282), + [anon_sym_LT_AMP] = ACTIONS(2282), + [anon_sym_GT_AMP] = ACTIONS(2282), + [anon_sym_LT_LT] = ACTIONS(2282), + [anon_sym_LT_LT_DASH] = ACTIONS(2282), + [anon_sym_DQUOTE] = ACTIONS(2282), + [sym_raw_string] = ACTIONS(2282), + [anon_sym_DOLLAR] = ACTIONS(2282), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2282), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2282), + [anon_sym_BQUOTE] = ACTIONS(2282), + [anon_sym_LT_LPAREN] = ACTIONS(2282), + [anon_sym_GT_LPAREN] = ACTIONS(2282), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2282), + [anon_sym_SEMI] = ACTIONS(2282), + [anon_sym_LF] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2282), + }, + [853] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [854] = { + [sym_file_descriptor] = ACTIONS(2286), + [sym_word] = ACTIONS(2286), + [sym__concat] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_RPAREN] = ACTIONS(2288), + [anon_sym_SEMI_SEMI] = ACTIONS(2288), + [anon_sym_PIPE_AMP] = ACTIONS(2288), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_AMP_GT] = ACTIONS(2288), + [anon_sym_AMP_GT_GT] = ACTIONS(2288), + [anon_sym_LT_AMP] = ACTIONS(2288), + [anon_sym_GT_AMP] = ACTIONS(2288), + [anon_sym_LT_LT] = ACTIONS(2288), + [anon_sym_LT_LT_DASH] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2288), + [sym_raw_string] = ACTIONS(2288), + [anon_sym_DOLLAR] = ACTIONS(2288), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2288), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2288), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LT_LPAREN] = ACTIONS(2288), + [anon_sym_GT_LPAREN] = ACTIONS(2288), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_LF] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + }, + [855] = { + [aux_sym_concatenation_repeat1] = STATE(1119), + [sym_file_descriptor] = ACTIONS(282), + [sym_word] = ACTIONS(282), + [sym__concat] = ACTIONS(426), + [sym_variable_name] = ACTIONS(282), + [anon_sym_PIPE] = ACTIONS(890), + [anon_sym_RPAREN] = ACTIONS(282), + [anon_sym_PIPE_AMP] = ACTIONS(282), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(890), + [anon_sym_GT] = ACTIONS(890), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_AMP_GT] = ACTIONS(890), + [anon_sym_AMP_GT_GT] = ACTIONS(282), + [anon_sym_LT_AMP] = ACTIONS(282), + [anon_sym_GT_AMP] = ACTIONS(282), + [anon_sym_DQUOTE] = ACTIONS(282), + [sym_raw_string] = ACTIONS(282), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(282), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(282), + [anon_sym_LT_LPAREN] = ACTIONS(282), + [anon_sym_GT_LPAREN] = ACTIONS(282), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(890), + }, + [856] = { + [sym_file_descriptor] = ACTIONS(1342), + [sym_word] = ACTIONS(1342), + [sym_variable_name] = ACTIONS(1342), + [anon_sym_PIPE] = ACTIONS(2290), + [anon_sym_RPAREN] = ACTIONS(1342), + [anon_sym_PIPE_AMP] = ACTIONS(1342), + [anon_sym_AMP_AMP] = ACTIONS(1342), + [anon_sym_PIPE_PIPE] = ACTIONS(1342), + [anon_sym_LT] = ACTIONS(2290), + [anon_sym_GT] = ACTIONS(2290), + [anon_sym_GT_GT] = ACTIONS(1342), + [anon_sym_AMP_GT] = ACTIONS(2290), + [anon_sym_AMP_GT_GT] = ACTIONS(1342), + [anon_sym_LT_AMP] = ACTIONS(1342), + [anon_sym_GT_AMP] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_raw_string] = ACTIONS(1342), + [anon_sym_DOLLAR] = ACTIONS(2290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1342), + [anon_sym_BQUOTE] = ACTIONS(1342), + [anon_sym_LT_LPAREN] = ACTIONS(1342), + [anon_sym_GT_LPAREN] = ACTIONS(1342), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2290), + }, + [857] = { + [sym_concatenation] = STATE(72), + [sym_string] = STATE(414), + [sym_simple_expansion] = STATE(414), + [sym_expansion] = STATE(414), + [sym_command_substitution] = STATE(414), + [sym_process_substitution] = STATE(414), + [aux_sym_for_statement_repeat1] = STATE(688), + [sym_word] = ACTIONS(766), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(102), + [sym_raw_string] = ACTIONS(766), + [anon_sym_DOLLAR] = ACTIONS(104), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(108), + [anon_sym_BQUOTE] = ACTIONS(110), + [anon_sym_LT_LPAREN] = ACTIONS(112), + [anon_sym_GT_LPAREN] = ACTIONS(112), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(770), + }, + [858] = { + [aux_sym_concatenation_repeat1] = STATE(1119), + [sym_file_descriptor] = ACTIONS(596), + [sym_word] = ACTIONS(596), + [sym__concat] = ACTIONS(426), + [sym_variable_name] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_RPAREN] = ACTIONS(596), + [anon_sym_PIPE_AMP] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(922), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_AMP_GT] = ACTIONS(922), + [anon_sym_AMP_GT_GT] = ACTIONS(596), + [anon_sym_LT_AMP] = ACTIONS(596), + [anon_sym_GT_AMP] = ACTIONS(596), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_raw_string] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(596), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(596), + [anon_sym_BQUOTE] = ACTIONS(596), + [anon_sym_LT_LPAREN] = ACTIONS(596), + [anon_sym_GT_LPAREN] = ACTIONS(596), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(922), + }, + [859] = { + [sym_concatenation] = STATE(441), + [sym_string] = STATE(433), + [sym_simple_expansion] = STATE(433), + [sym_expansion] = STATE(433), + [sym_command_substitution] = STATE(433), + [sym_process_substitution] = STATE(433), + [aux_sym_for_statement_repeat1] = STATE(718), + [sym_word] = ACTIONS(788), + [anon_sym_SEMI_SEMI] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_raw_string] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1394), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1398), + [anon_sym_LT_LPAREN] = ACTIONS(1400), + [anon_sym_GT_LPAREN] = ACTIONS(1400), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2294), + [anon_sym_AMP] = ACTIONS(2294), + }, + [860] = { + [anon_sym_PIPE] = ACTIONS(2296), + [anon_sym_RPAREN] = ACTIONS(2298), + [anon_sym_PIPE_AMP] = ACTIONS(2298), + [anon_sym_AMP_AMP] = ACTIONS(2298), + [anon_sym_PIPE_PIPE] = ACTIONS(2298), + [anon_sym_BQUOTE] = ACTIONS(2298), + [sym_comment] = ACTIONS(50), + }, + [861] = { + [sym__terminated_statement] = STATE(444), + [sym_for_statement] = STATE(445), + [sym_while_statement] = STATE(445), + [sym_if_statement] = STATE(445), + [sym_case_statement] = STATE(445), + [sym_function_definition] = STATE(445), + [sym_subshell] = STATE(445), + [sym_pipeline] = STATE(445), + [sym_list] = STATE(445), + [sym_bracket_command] = STATE(445), + [sym_command] = STATE(445), + [sym_command_name] = STATE(25), + [sym_variable_assignment] = STATE(446), + [sym_declaration_command] = STATE(445), + [sym_subscript] = STATE(27), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(721), [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(2417), - [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), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_done] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), [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), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), + }, + [862] = { + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2304), + [anon_sym_PIPE_AMP] = ACTIONS(2304), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_BQUOTE] = ACTIONS(2304), + [sym_comment] = ACTIONS(50), + }, + [863] = { + [anon_sym_fi] = ACTIONS(2306), + [sym_comment] = ACTIONS(50), + }, + [864] = { + [sym__terminated_statement] = STATE(451), + [sym_for_statement] = STATE(452), + [sym_while_statement] = STATE(452), + [sym_if_statement] = STATE(452), + [sym_elif_clause] = STATE(453), + [sym_else_clause] = STATE(1124), + [sym_case_statement] = STATE(452), + [sym_function_definition] = STATE(452), + [sym_subshell] = STATE(452), + [sym_pipeline] = STATE(452), + [sym_list] = STATE(452), + [sym_bracket_command] = STATE(452), + [sym_command] = STATE(452), + [sym_command_name] = STATE(25), + [sym_variable_assignment] = STATE(455), + [sym_declaration_command] = STATE(452), + [sym_subscript] = STATE(27), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(730), + [aux_sym_if_statement_repeat1] = STATE(1125), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_fi] = ACTIONS(2308), + [anon_sym_elif] = ACTIONS(810), + [anon_sym_else] = ACTIONS(812), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), + }, + [865] = { + [sym_elif_clause] = STATE(453), + [sym_else_clause] = STATE(1124), + [aux_sym_if_statement_repeat1] = STATE(732), + [anon_sym_fi] = ACTIONS(2306), + [anon_sym_elif] = ACTIONS(1422), + [anon_sym_else] = ACTIONS(1424), + [sym_comment] = ACTIONS(50), + }, + [866] = { + [sym_case_item] = STATE(736), + [sym_concatenation] = STATE(737), + [sym_string] = STATE(733), + [sym_simple_expansion] = STATE(733), + [sym_expansion] = STATE(733), + [sym_command_substitution] = STATE(733), + [sym_process_substitution] = STATE(733), + [aux_sym_case_statement_repeat1] = STATE(1127), + [sym_word] = ACTIONS(1426), + [anon_sym_esac] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1430), + }, + [867] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2312), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2312), + [anon_sym_LF] = ACTIONS(2312), + [anon_sym_AMP] = ACTIONS(2312), + }, + [868] = { + [sym_case_item] = STATE(736), + [sym_concatenation] = STATE(737), + [sym_string] = STATE(733), + [sym_simple_expansion] = STATE(733), + [sym_expansion] = STATE(733), + [sym_command_substitution] = STATE(733), + [sym_process_substitution] = STATE(733), + [aux_sym_case_statement_repeat1] = STATE(1130), + [sym_word] = ACTIONS(1426), + [anon_sym_esac] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1430), + }, + [869] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2316), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2316), + [anon_sym_LF] = ACTIONS(2316), + [anon_sym_AMP] = ACTIONS(2316), + }, + [870] = { + [sym_compound_statement] = STATE(1132), + [anon_sym_LBRACE] = ACTIONS(1118), + [sym_comment] = ACTIONS(50), + }, + [871] = { + [sym_file_descriptor] = ACTIONS(1463), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_RPAREN] = ACTIONS(1463), + [anon_sym_PIPE_AMP] = ACTIONS(1463), + [anon_sym_AMP_AMP] = ACTIONS(1463), + [anon_sym_PIPE_PIPE] = ACTIONS(1463), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_GT] = ACTIONS(2318), + [anon_sym_GT_GT] = ACTIONS(1463), + [anon_sym_AMP_GT] = ACTIONS(2318), + [anon_sym_AMP_GT_GT] = ACTIONS(1463), + [anon_sym_LT_AMP] = ACTIONS(1463), + [anon_sym_GT_AMP] = ACTIONS(1463), + [anon_sym_BQUOTE] = ACTIONS(1463), + [sym_comment] = ACTIONS(50), + }, + [872] = { + [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(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(758), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_RBRACE] = ACTIONS(2320), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), + }, + [873] = { + [anon_sym_LT] = ACTIONS(2322), + [anon_sym_GT] = ACTIONS(2322), + [anon_sym_GT_GT] = ACTIONS(2324), + [anon_sym_AMP_GT] = ACTIONS(2322), + [anon_sym_AMP_GT_GT] = ACTIONS(2324), + [anon_sym_LT_AMP] = ACTIONS(2324), + [anon_sym_GT_AMP] = ACTIONS(2324), + [sym_comment] = ACTIONS(50), + }, + [874] = { + [sym_concatenation] = STATE(1143), + [sym_string] = STATE(1135), + [sym_simple_expansion] = STATE(1135), + [sym_expansion] = STATE(1135), + [sym_command_substitution] = STATE(1135), + [sym_process_substitution] = STATE(1135), + [sym_word] = ACTIONS(2326), + [anon_sym_DQUOTE] = ACTIONS(2328), + [sym_raw_string] = ACTIONS(2326), + [anon_sym_DOLLAR] = ACTIONS(2330), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2332), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2334), + [anon_sym_BQUOTE] = ACTIONS(2336), + [anon_sym_LT_LPAREN] = ACTIONS(2338), + [anon_sym_GT_LPAREN] = ACTIONS(2338), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2340), + }, + [875] = { + [anon_sym_PIPE] = ACTIONS(2342), + [anon_sym_RPAREN] = ACTIONS(2344), + [anon_sym_PIPE_AMP] = ACTIONS(2344), + [anon_sym_AMP_AMP] = ACTIONS(2344), + [anon_sym_PIPE_PIPE] = ACTIONS(2344), + [anon_sym_BQUOTE] = ACTIONS(2344), + [sym_comment] = ACTIONS(50), + }, + [876] = { + [anon_sym_PIPE] = ACTIONS(2346), + [anon_sym_RPAREN] = ACTIONS(2348), + [anon_sym_PIPE_AMP] = ACTIONS(2348), + [anon_sym_AMP_AMP] = ACTIONS(2348), + [anon_sym_PIPE_PIPE] = ACTIONS(2348), + [anon_sym_BQUOTE] = ACTIONS(2348), + [sym_comment] = ACTIONS(50), + }, + [877] = { + [sym_file_descriptor] = ACTIONS(600), + [sym_word] = ACTIONS(600), + [sym_variable_name] = ACTIONS(600), + [anon_sym_for] = ACTIONS(602), + [anon_sym_while] = ACTIONS(602), + [anon_sym_if] = ACTIONS(602), + [anon_sym_case] = ACTIONS(602), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_function] = ACTIONS(602), + [anon_sym_LPAREN] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(602), + [anon_sym_typeset] = ACTIONS(602), + [anon_sym_export] = ACTIONS(602), + [anon_sym_readonly] = ACTIONS(602), + [anon_sym_local] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_GT_GT] = ACTIONS(600), + [anon_sym_AMP_GT] = ACTIONS(602), + [anon_sym_AMP_GT_GT] = ACTIONS(600), + [anon_sym_LT_AMP] = ACTIONS(600), + [anon_sym_GT_AMP] = ACTIONS(600), + [anon_sym_DQUOTE] = ACTIONS(600), + [sym_raw_string] = ACTIONS(600), + [anon_sym_DOLLAR] = ACTIONS(602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(600), + [anon_sym_LT_LPAREN] = ACTIONS(600), + [anon_sym_GT_LPAREN] = ACTIONS(600), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(604), + }, + [878] = { + [aux_sym_concatenation_repeat1] = STATE(1146), + [sym_word] = ACTIONS(760), + [sym__concat] = ACTIONS(2352), + [sym_variable_name] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_PIPE_AMP] = ACTIONS(760), + [anon_sym_AMP_AMP] = ACTIONS(760), + [anon_sym_PIPE_PIPE] = ACTIONS(760), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1668), + }, + [879] = { + [sym_word] = ACTIONS(760), + [sym_variable_name] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_PIPE_AMP] = ACTIONS(760), + [anon_sym_AMP_AMP] = ACTIONS(760), + [anon_sym_PIPE_PIPE] = ACTIONS(760), + [anon_sym_BQUOTE] = ACTIONS(760), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1668), + }, + [880] = { + [sym_concatenation] = STATE(72), + [sym_string] = STATE(414), + [sym_simple_expansion] = STATE(414), + [sym_expansion] = STATE(414), + [sym_command_substitution] = STATE(414), + [sym_process_substitution] = STATE(414), + [aux_sym_for_statement_repeat1] = STATE(1148), + [sym_word] = ACTIONS(766), + [anon_sym_RPAREN] = ACTIONS(2354), + [anon_sym_DQUOTE] = ACTIONS(102), + [sym_raw_string] = ACTIONS(766), + [anon_sym_DOLLAR] = ACTIONS(104), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(108), + [anon_sym_BQUOTE] = ACTIONS(110), + [anon_sym_LT_LPAREN] = ACTIONS(112), + [anon_sym_GT_LPAREN] = ACTIONS(112), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(770), + }, + [881] = { + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(1150), + [anon_sym_DQUOTE] = ACTIONS(2356), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_comment] = ACTIONS(64), + }, + [882] = { + [sym_special_variable_name] = STATE(1153), + [anon_sym_DOLLAR] = ACTIONS(2358), + [anon_sym_POUND] = ACTIONS(2358), + [anon_sym_AT] = ACTIONS(2358), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2360), + [anon_sym_STAR] = ACTIONS(2358), + [anon_sym_QMARK] = ACTIONS(2358), + [anon_sym_DASH] = ACTIONS(2358), + [anon_sym_BANG] = ACTIONS(2358), + [anon_sym_0] = ACTIONS(2362), + [anon_sym__] = ACTIONS(2362), + }, + [883] = { + [sym_special_variable_name] = STATE(1156), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(2364), + [anon_sym_AT] = ACTIONS(162), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2366), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + }, + [884] = { + [sym_for_statement] = STATE(1157), + [sym_while_statement] = STATE(1157), + [sym_if_statement] = STATE(1157), + [sym_case_statement] = STATE(1157), + [sym_function_definition] = STATE(1157), + [sym_subshell] = STATE(1157), + [sym_pipeline] = STATE(1157), + [sym_list] = STATE(1157), + [sym_bracket_command] = STATE(1157), + [sym_command] = STATE(1157), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(1158), + [sym_declaration_command] = STATE(1157), + [sym_subscript] = STATE(126), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), + }, + [885] = { + [sym_for_statement] = STATE(1159), + [sym_while_statement] = STATE(1159), + [sym_if_statement] = STATE(1159), + [sym_case_statement] = STATE(1159), + [sym_function_definition] = STATE(1159), + [sym_subshell] = STATE(1159), + [sym_pipeline] = STATE(1159), + [sym_list] = STATE(1159), + [sym_bracket_command] = STATE(1159), + [sym_command] = STATE(1159), + [sym_command_name] = STATE(135), + [sym_variable_assignment] = STATE(1160), + [sym_declaration_command] = STATE(1159), + [sym_subscript] = STATE(137), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(129), + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [sym_process_substitution] = STATE(129), + [aux_sym_command_repeat1] = STATE(138), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(206), + [sym_variable_name] = ACTIONS(208), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(212), + [anon_sym_typeset] = ACTIONS(212), + [anon_sym_export] = ACTIONS(212), + [anon_sym_readonly] = ACTIONS(212), + [anon_sym_local] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(206), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(214), + }, + [886] = { + [sym_for_statement] = STATE(1161), + [sym_while_statement] = STATE(1161), + [sym_if_statement] = STATE(1161), + [sym_case_statement] = STATE(1161), + [sym_function_definition] = STATE(1161), + [sym_subshell] = STATE(1161), + [sym_pipeline] = STATE(1161), + [sym_list] = STATE(1161), + [sym_bracket_command] = STATE(1161), + [sym_command] = STATE(1161), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(1162), + [sym_declaration_command] = STATE(1161), + [sym_subscript] = STATE(126), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), + }, + [887] = { + [aux_sym_concatenation_repeat1] = STATE(1163), + [sym_word] = ACTIONS(784), + [sym__concat] = ACTIONS(2352), + [sym_variable_name] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_RPAREN] = ACTIONS(784), + [anon_sym_PIPE_AMP] = ACTIONS(784), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1672), + }, + [888] = { + [sym_file_descriptor] = ACTIONS(1629), + [sym_word] = ACTIONS(1629), + [sym__concat] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(1629), + [anon_sym_PIPE_AMP] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE_PIPE] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(2154), + [anon_sym_GT] = ACTIONS(2154), + [anon_sym_GT_GT] = ACTIONS(1629), + [anon_sym_AMP_GT] = ACTIONS(2154), + [anon_sym_AMP_GT_GT] = ACTIONS(1629), + [anon_sym_LT_AMP] = ACTIONS(1629), + [anon_sym_GT_AMP] = ACTIONS(1629), + [anon_sym_LT_LT] = ACTIONS(2154), + [anon_sym_LT_LT_DASH] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1629), + [sym_raw_string] = ACTIONS(1629), + [anon_sym_DOLLAR] = ACTIONS(2154), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1629), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1629), + [anon_sym_BQUOTE] = ACTIONS(1629), + [anon_sym_LT_LPAREN] = ACTIONS(1629), + [anon_sym_GT_LPAREN] = ACTIONS(1629), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2154), + }, + [889] = { + [anon_sym_AT] = ACTIONS(2368), + [sym_comment] = ACTIONS(50), + }, + [890] = { + [sym_file_descriptor] = ACTIONS(1635), + [sym_word] = ACTIONS(1635), + [sym__concat] = ACTIONS(1635), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_RPAREN] = ACTIONS(1635), + [anon_sym_PIPE_AMP] = ACTIONS(1635), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_PIPE_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_GT] = ACTIONS(2158), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_AMP_GT] = ACTIONS(2158), + [anon_sym_AMP_GT_GT] = ACTIONS(1635), + [anon_sym_LT_AMP] = ACTIONS(1635), + [anon_sym_GT_AMP] = ACTIONS(1635), + [anon_sym_LT_LT] = ACTIONS(2158), + [anon_sym_LT_LT_DASH] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [sym_raw_string] = ACTIONS(1635), + [anon_sym_DOLLAR] = ACTIONS(2158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), + [anon_sym_LT_LPAREN] = ACTIONS(1635), + [anon_sym_GT_LPAREN] = ACTIONS(1635), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2158), + }, + [891] = { + [anon_sym_AT] = ACTIONS(2370), + [sym_comment] = ACTIONS(50), + }, + [892] = { + [anon_sym_RBRACK] = ACTIONS(2372), + [sym_comment] = ACTIONS(50), + }, + [893] = { + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(2374), + [anon_sym_RBRACE] = ACTIONS(2376), + [sym_comment] = ACTIONS(50), + }, + [894] = { + [sym_file_descriptor] = ACTIONS(1647), + [sym_word] = ACTIONS(1647), + [sym__concat] = ACTIONS(1647), + [anon_sym_PIPE] = ACTIONS(2168), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_PIPE_AMP] = ACTIONS(1647), + [anon_sym_AMP_AMP] = ACTIONS(1647), + [anon_sym_PIPE_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(2168), + [anon_sym_GT] = ACTIONS(2168), + [anon_sym_GT_GT] = ACTIONS(1647), + [anon_sym_AMP_GT] = ACTIONS(2168), + [anon_sym_AMP_GT_GT] = ACTIONS(1647), + [anon_sym_LT_AMP] = ACTIONS(1647), + [anon_sym_GT_AMP] = ACTIONS(1647), + [anon_sym_LT_LT] = ACTIONS(2168), + [anon_sym_LT_LT_DASH] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [sym_raw_string] = ACTIONS(1647), + [anon_sym_DOLLAR] = ACTIONS(2168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1647), + [anon_sym_BQUOTE] = ACTIONS(1647), + [anon_sym_LT_LPAREN] = ACTIONS(1647), + [anon_sym_GT_LPAREN] = ACTIONS(1647), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2168), + }, + [895] = { + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(2378), + [anon_sym_RBRACE] = ACTIONS(2380), + [sym_comment] = ACTIONS(50), + }, + [896] = { + [sym__concat] = ACTIONS(2372), + [anon_sym_RBRACE] = ACTIONS(2376), + [sym_comment] = ACTIONS(50), + }, + [897] = { + [anon_sym_RBRACK] = ACTIONS(2382), + [sym_comment] = ACTIONS(50), + }, + [898] = { + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(2384), + [anon_sym_RBRACE] = ACTIONS(2386), + [sym_comment] = ACTIONS(50), + }, + [899] = { + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(2388), + [anon_sym_RBRACE] = ACTIONS(2390), + [sym_comment] = ACTIONS(50), }, [900] = { - [anon_sym_LT] = ACTIONS(2419), - [anon_sym_GT] = ACTIONS(2419), - [anon_sym_GT_GT] = ACTIONS(2421), - [anon_sym_AMP_GT] = ACTIONS(2419), - [anon_sym_AMP_GT_GT] = ACTIONS(2421), - [anon_sym_LT_AMP] = ACTIONS(2421), - [anon_sym_GT_AMP] = ACTIONS(2421), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(2382), + [anon_sym_RBRACE] = ACTIONS(2386), + [sym_comment] = ACTIONS(50), }, [901] = { - [sym_concatenation] = STATE(1149), - [sym_string] = STATE(1143), - [sym_simple_expansion] = STATE(1143), - [sym_expansion] = STATE(1143), - [sym_command_substitution] = STATE(1143), - [sym_process_substitution] = STATE(1143), - [anon_sym_DQUOTE] = ACTIONS(2423), - [sym_raw_string] = ACTIONS(2425), - [anon_sym_DOLLAR] = ACTIONS(2427), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2431), - [anon_sym_BQUOTE] = ACTIONS(2433), - [anon_sym_LT_LPAREN] = ACTIONS(2435), - [anon_sym_GT_LPAREN] = ACTIONS(2435), - [sym_word] = ACTIONS(2437), - [sym_comment] = ACTIONS(52), + [sym_file_redirect] = STATE(1176), + [sym_file_descriptor] = ACTIONS(1694), + [anon_sym_PIPE] = ACTIONS(2392), + [anon_sym_RPAREN] = ACTIONS(2394), + [anon_sym_PIPE_AMP] = ACTIONS(2394), + [anon_sym_AMP_AMP] = ACTIONS(2394), + [anon_sym_PIPE_PIPE] = ACTIONS(2394), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1700), + [anon_sym_GT_GT] = ACTIONS(1702), + [anon_sym_AMP_GT] = ACTIONS(1700), + [anon_sym_AMP_GT_GT] = ACTIONS(1702), + [anon_sym_LT_AMP] = ACTIONS(1702), + [anon_sym_GT_AMP] = ACTIONS(1702), + [sym_comment] = ACTIONS(50), }, [902] = { - [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), + [aux_sym_concatenation_repeat1] = STATE(906), + [sym_file_descriptor] = ACTIONS(723), + [sym__concat] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_RPAREN] = ACTIONS(723), + [anon_sym_PIPE_AMP] = ACTIONS(723), + [anon_sym_AMP_AMP] = ACTIONS(723), + [anon_sym_PIPE_PIPE] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(723), + [anon_sym_AMP_GT] = ACTIONS(725), + [anon_sym_AMP_GT_GT] = ACTIONS(723), + [anon_sym_LT_AMP] = ACTIONS(723), + [anon_sym_GT_AMP] = ACTIONS(723), + [anon_sym_LT_LT] = ACTIONS(725), + [anon_sym_LT_LT_DASH] = ACTIONS(723), + [sym_comment] = ACTIONS(50), }, [903] = { - [anon_sym_PIPE] = ACTIONS(2443), - [anon_sym_RPAREN] = ACTIONS(2445), - [anon_sym_PIPE_AMP] = ACTIONS(2445), - [anon_sym_AMP_AMP] = ACTIONS(2445), - [anon_sym_PIPE_PIPE] = ACTIONS(2445), - [anon_sym_BQUOTE] = ACTIONS(2445), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(921), + [sym_file_descriptor] = ACTIONS(727), + [sym__concat] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(727), + [anon_sym_PIPE_AMP] = ACTIONS(727), + [anon_sym_AMP_AMP] = ACTIONS(727), + [anon_sym_PIPE_PIPE] = ACTIONS(727), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_GT_GT] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(729), + [anon_sym_AMP_GT_GT] = ACTIONS(727), + [anon_sym_LT_AMP] = ACTIONS(727), + [anon_sym_GT_AMP] = ACTIONS(727), + [anon_sym_LT_LT] = ACTIONS(729), + [anon_sym_LT_LT_DASH] = ACTIONS(727), + [sym_comment] = ACTIONS(50), }, [904] = { - [sym_file_descriptor] = ACTIONS(606), - [sym_variable_name] = ACTIONS(606), - [anon_sym_for] = ACTIONS(608), - [anon_sym_while] = ACTIONS(608), - [anon_sym_if] = ACTIONS(608), - [anon_sym_case] = ACTIONS(608), - [anon_sym_RPAREN] = ACTIONS(2447), - [anon_sym_function] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(606), - [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_LBRACK_LBRACK] = ACTIONS(608), - [anon_sym_declare] = ACTIONS(608), - [anon_sym_typeset] = ACTIONS(608), - [anon_sym_export] = ACTIONS(608), - [anon_sym_readonly] = ACTIONS(608), - [anon_sym_local] = ACTIONS(608), - [anon_sym_LT] = ACTIONS(608), - [anon_sym_GT] = ACTIONS(608), - [anon_sym_GT_GT] = ACTIONS(606), - [anon_sym_AMP_GT] = ACTIONS(608), - [anon_sym_AMP_GT_GT] = ACTIONS(606), - [anon_sym_LT_AMP] = ACTIONS(606), - [anon_sym_GT_AMP] = ACTIONS(606), - [anon_sym_DQUOTE] = ACTIONS(606), - [sym_raw_string] = ACTIONS(606), - [anon_sym_DOLLAR] = ACTIONS(608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(606), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), - [anon_sym_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(606), - [anon_sym_GT_LPAREN] = ACTIONS(606), - [sym_word] = ACTIONS(610), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(723), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_RPAREN] = ACTIONS(723), + [anon_sym_PIPE_AMP] = ACTIONS(723), + [anon_sym_AMP_AMP] = ACTIONS(723), + [anon_sym_PIPE_PIPE] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(723), + [anon_sym_AMP_GT] = ACTIONS(725), + [anon_sym_AMP_GT_GT] = ACTIONS(723), + [anon_sym_LT_AMP] = ACTIONS(723), + [anon_sym_GT_AMP] = ACTIONS(723), + [anon_sym_LT_LT] = ACTIONS(725), + [anon_sym_LT_LT_DASH] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(723), + [sym_comment] = ACTIONS(50), }, [905] = { - [sym_variable_name] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(745), - [anon_sym_PIPE_AMP] = ACTIONS(745), - [anon_sym_AMP_AMP] = ACTIONS(745), - [anon_sym_PIPE_PIPE] = ACTIONS(745), - [anon_sym_BQUOTE] = ACTIONS(745), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(1736), - }, - [906] = { - [sym_concatenation] = STATE(423), - [sym_string] = STATE(417), - [sym_simple_expansion] = STATE(417), - [sym_expansion] = STATE(417), - [sym_command_substitution] = STATE(417), - [sym_process_substitution] = STATE(417), - [aux_sym_for_statement_repeat1] = STATE(1152), - [anon_sym_RPAREN] = ACTIONS(2449), - [anon_sym_DQUOTE] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(755), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(759), - [anon_sym_BQUOTE] = ACTIONS(761), - [anon_sym_LT_LPAREN] = ACTIONS(763), - [anon_sym_GT_LPAREN] = ACTIONS(763), - [sym_word] = ACTIONS(765), - [sym_comment] = ACTIONS(52), - }, - [907] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(1154), - [anon_sym_DQUOTE] = ACTIONS(2451), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), - }, - [908] = { - [aux_sym_concatenation_repeat1] = STATE(1156), - [sym__concat] = ACTIONS(2453), - [sym_variable_name] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(745), - [anon_sym_PIPE_AMP] = ACTIONS(745), - [anon_sym_AMP_AMP] = ACTIONS(745), - [anon_sym_PIPE_PIPE] = ACTIONS(745), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(1736), - }, - [909] = { - [sym_special_variable_name] = STATE(1159), - [anon_sym_DASH] = ACTIONS(2455), - [anon_sym_DOLLAR] = ACTIONS(2455), - [anon_sym_POUND] = ACTIONS(2455), - [anon_sym_AT] = ACTIONS(2455), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2455), - [anon_sym_QMARK] = ACTIONS(2455), - [anon_sym_BANG] = ACTIONS(2455), - [anon_sym_0] = ACTIONS(2459), - [anon_sym__] = ACTIONS(2459), - }, - [910] = { - [sym_special_variable_name] = STATE(1162), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(2461), - [anon_sym_AT] = ACTIONS(62), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(2463), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), - }, - [911] = { - [sym_for_statement] = STATE(1163), - [sym_while_statement] = STATE(1163), - [sym_if_statement] = STATE(1163), - [sym_case_statement] = STATE(1163), - [sym_function_definition] = STATE(1163), - [sym_subshell] = STATE(1163), - [sym_pipeline] = STATE(1163), - [sym_list] = STATE(1163), - [sym_bracket_command] = STATE(1163), - [sym_command] = STATE(1163), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(1164), - [sym_declaration_command] = STATE(1163), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), - }, - [912] = { - [sym_for_statement] = STATE(1165), - [sym_while_statement] = STATE(1165), - [sym_if_statement] = STATE(1165), - [sym_case_statement] = STATE(1165), - [sym_function_definition] = STATE(1165), - [sym_subshell] = STATE(1165), - [sym_pipeline] = STATE(1165), - [sym_list] = STATE(1165), - [sym_bracket_command] = STATE(1165), - [sym_command] = STATE(1165), - [sym_command_name] = STATE(140), - [sym_variable_assignment] = STATE(1166), - [sym_declaration_command] = STATE(1165), - [sym_subscript] = STATE(142), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(137), - [sym_simple_expansion] = STATE(137), - [sym_expansion] = STATE(137), - [sym_command_substitution] = STATE(137), - [sym_process_substitution] = STATE(137), - [aux_sym_command_repeat1] = STATE(143), - [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), - }, - [913] = { - [sym_for_statement] = STATE(1167), - [sym_while_statement] = STATE(1167), - [sym_if_statement] = STATE(1167), - [sym_case_statement] = STATE(1167), - [sym_function_definition] = STATE(1167), - [sym_subshell] = STATE(1167), - [sym_pipeline] = STATE(1167), - [sym_list] = STATE(1167), - [sym_bracket_command] = STATE(1167), - [sym_command] = STATE(1167), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(1168), - [sym_declaration_command] = STATE(1167), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), - }, - [914] = { - [sym_file_descriptor] = ACTIONS(1712), - [sym__concat] = ACTIONS(1712), - [anon_sym_PIPE] = ACTIONS(2261), - [anon_sym_RPAREN] = ACTIONS(1712), - [anon_sym_PIPE_AMP] = ACTIONS(1712), - [anon_sym_AMP_AMP] = ACTIONS(1712), - [anon_sym_PIPE_PIPE] = ACTIONS(2261), - [anon_sym_LT] = ACTIONS(2261), - [anon_sym_GT] = ACTIONS(2261), - [anon_sym_GT_GT] = ACTIONS(1712), - [anon_sym_AMP_GT] = ACTIONS(2261), - [anon_sym_AMP_GT_GT] = ACTIONS(1712), - [anon_sym_LT_AMP] = ACTIONS(1712), - [anon_sym_GT_AMP] = ACTIONS(1712), - [anon_sym_LT_LT] = ACTIONS(2261), - [anon_sym_LT_LT_DASH] = ACTIONS(1712), - [anon_sym_DQUOTE] = ACTIONS(1712), - [sym_raw_string] = ACTIONS(1712), - [anon_sym_DOLLAR] = ACTIONS(2261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1712), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1712), - [anon_sym_BQUOTE] = ACTIONS(1712), - [anon_sym_LT_LPAREN] = ACTIONS(1712), - [anon_sym_GT_LPAREN] = ACTIONS(1712), - [sym_word] = ACTIONS(1714), - [sym_comment] = ACTIONS(52), - }, - [915] = { - [anon_sym_AT] = ACTIONS(2465), - [sym_comment] = ACTIONS(52), - }, - [916] = { - [sym_file_descriptor] = ACTIONS(1718), - [sym__concat] = ACTIONS(1718), - [anon_sym_PIPE] = ACTIONS(2265), - [anon_sym_RPAREN] = ACTIONS(1718), - [anon_sym_PIPE_AMP] = ACTIONS(1718), - [anon_sym_AMP_AMP] = ACTIONS(1718), - [anon_sym_PIPE_PIPE] = ACTIONS(2265), - [anon_sym_LT] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(2265), - [anon_sym_GT_GT] = ACTIONS(1718), - [anon_sym_AMP_GT] = ACTIONS(2265), - [anon_sym_AMP_GT_GT] = ACTIONS(1718), - [anon_sym_LT_AMP] = ACTIONS(1718), - [anon_sym_GT_AMP] = ACTIONS(1718), - [anon_sym_LT_LT] = ACTIONS(2265), - [anon_sym_LT_LT_DASH] = ACTIONS(1718), - [anon_sym_DQUOTE] = ACTIONS(1718), - [sym_raw_string] = ACTIONS(1718), - [anon_sym_DOLLAR] = ACTIONS(2265), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1718), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), - [anon_sym_BQUOTE] = ACTIONS(1718), - [anon_sym_LT_LPAREN] = ACTIONS(1718), - [anon_sym_GT_LPAREN] = ACTIONS(1718), - [sym_word] = ACTIONS(1720), - [sym_comment] = ACTIONS(52), - }, - [917] = { - [anon_sym_AT] = ACTIONS(2467), - [sym_comment] = ACTIONS(52), - }, - [918] = { - [anon_sym_RBRACK] = ACTIONS(2469), - [sym_comment] = ACTIONS(52), - }, - [919] = { - [sym_file_descriptor] = ACTIONS(1726), - [sym__concat] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(2271), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_PIPE_AMP] = ACTIONS(1726), - [anon_sym_AMP_AMP] = ACTIONS(1726), - [anon_sym_PIPE_PIPE] = ACTIONS(2271), - [anon_sym_LT] = ACTIONS(2271), - [anon_sym_GT] = ACTIONS(2271), - [anon_sym_GT_GT] = ACTIONS(1726), - [anon_sym_AMP_GT] = ACTIONS(2271), - [anon_sym_AMP_GT_GT] = ACTIONS(1726), - [anon_sym_LT_AMP] = ACTIONS(1726), - [anon_sym_GT_AMP] = ACTIONS(1726), - [anon_sym_LT_LT] = ACTIONS(2271), - [anon_sym_LT_LT_DASH] = ACTIONS(1726), - [anon_sym_DQUOTE] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1726), - [anon_sym_DOLLAR] = ACTIONS(2271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), - [anon_sym_BQUOTE] = ACTIONS(1726), - [anon_sym_LT_LPAREN] = ACTIONS(1726), - [anon_sym_GT_LPAREN] = ACTIONS(1726), - [sym_word] = ACTIONS(1728), - [sym_comment] = ACTIONS(52), - }, - [920] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(2471), - [sym_comment] = ACTIONS(52), - }, - [921] = { - [anon_sym_RBRACE] = ACTIONS(2471), - [sym_comment] = ACTIONS(52), - }, - [922] = { - [anon_sym_RBRACK] = ACTIONS(2473), - [sym_comment] = ACTIONS(52), - }, - [923] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(2475), - [sym_comment] = ACTIONS(52), - }, - [924] = { - [anon_sym_RBRACE] = ACTIONS(2475), - [sym_comment] = ACTIONS(52), - }, - [925] = { - [sym_file_redirect] = STATE(1175), - [sym_file_descriptor] = ACTIONS(1770), - [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_LT] = ACTIONS(1776), - [anon_sym_GT] = ACTIONS(1776), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_AMP_GT] = ACTIONS(1776), - [anon_sym_AMP_GT_GT] = ACTIONS(1778), - [anon_sym_LT_AMP] = ACTIONS(1778), - [anon_sym_GT_AMP] = ACTIONS(1778), - [sym_comment] = ACTIONS(52), - }, - [926] = { - [aux_sym_concatenation_repeat1] = STATE(931), - [sym_file_descriptor] = ACTIONS(725), - [sym__concat] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_RPAREN] = ACTIONS(725), - [anon_sym_PIPE_AMP] = ACTIONS(725), - [anon_sym_AMP_AMP] = ACTIONS(725), - [anon_sym_PIPE_PIPE] = ACTIONS(725), - [anon_sym_LT] = ACTIONS(727), - [anon_sym_GT] = ACTIONS(727), - [anon_sym_GT_GT] = ACTIONS(725), - [anon_sym_AMP_GT] = ACTIONS(727), - [anon_sym_AMP_GT_GT] = ACTIONS(725), - [anon_sym_LT_AMP] = ACTIONS(725), - [anon_sym_GT_AMP] = ACTIONS(725), - [anon_sym_LT_LT] = ACTIONS(727), - [anon_sym_LT_LT_DASH] = ACTIONS(725), - [sym_comment] = ACTIONS(52), - }, - [927] = { - [sym_file_descriptor] = ACTIONS(725), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_RPAREN] = ACTIONS(725), - [anon_sym_PIPE_AMP] = ACTIONS(725), - [anon_sym_AMP_AMP] = ACTIONS(725), - [anon_sym_PIPE_PIPE] = ACTIONS(725), - [anon_sym_LT] = ACTIONS(727), - [anon_sym_GT] = ACTIONS(727), - [anon_sym_GT_GT] = ACTIONS(725), - [anon_sym_AMP_GT] = ACTIONS(727), - [anon_sym_AMP_GT_GT] = ACTIONS(725), - [anon_sym_LT_AMP] = ACTIONS(725), - [anon_sym_GT_AMP] = ACTIONS(725), - [anon_sym_LT_LT] = ACTIONS(727), - [anon_sym_LT_LT_DASH] = ACTIONS(725), - [anon_sym_BQUOTE] = ACTIONS(725), - [sym_comment] = ACTIONS(52), - }, - [928] = { - [sym_file_descriptor] = ACTIONS(450), - [sym__concat] = ACTIONS(450), - [anon_sym_PIPE] = ACTIONS(875), - [anon_sym_RPAREN] = ACTIONS(450), - [anon_sym_PIPE_AMP] = ACTIONS(450), - [anon_sym_AMP_AMP] = ACTIONS(450), - [anon_sym_PIPE_PIPE] = ACTIONS(450), - [anon_sym_LT] = ACTIONS(875), - [anon_sym_GT] = ACTIONS(875), - [anon_sym_GT_GT] = ACTIONS(450), - [anon_sym_AMP_GT] = ACTIONS(875), - [anon_sym_AMP_GT_GT] = ACTIONS(450), - [anon_sym_LT_AMP] = ACTIONS(450), - [anon_sym_GT_AMP] = ACTIONS(450), - [anon_sym_LT_LT] = ACTIONS(875), - [anon_sym_LT_LT_DASH] = ACTIONS(450), - [anon_sym_BQUOTE] = ACTIONS(450), - [sym_comment] = ACTIONS(52), - }, - [929] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(298), - [anon_sym_DQUOTE] = ACTIONS(2477), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), - }, - [930] = { [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(1230), - [sym_raw_string] = ACTIONS(2479), - [anon_sym_DOLLAR] = ACTIONS(1234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1238), - [anon_sym_BQUOTE] = ACTIONS(1240), - [anon_sym_LT_LPAREN] = ACTIONS(1242), - [anon_sym_GT_LPAREN] = ACTIONS(1242), - [sym_word] = ACTIONS(2481), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(2396), + [anon_sym_DQUOTE] = ACTIONS(1172), + [sym_raw_string] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(1174), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1178), + [anon_sym_BQUOTE] = ACTIONS(1180), + [anon_sym_LT_LPAREN] = ACTIONS(1182), + [anon_sym_GT_LPAREN] = ACTIONS(1182), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2398), }, - [931] = { - [aux_sym_concatenation_repeat1] = STATE(1178), + [906] = { + [aux_sym_concatenation_repeat1] = STATE(1179), + [sym_file_descriptor] = ACTIONS(282), + [sym__concat] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(890), + [anon_sym_RPAREN] = ACTIONS(282), + [anon_sym_PIPE_AMP] = ACTIONS(282), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(890), + [anon_sym_GT] = ACTIONS(890), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_AMP_GT] = ACTIONS(890), + [anon_sym_AMP_GT_GT] = ACTIONS(282), + [anon_sym_LT_AMP] = ACTIONS(282), + [anon_sym_GT_AMP] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(890), + [anon_sym_LT_LT_DASH] = ACTIONS(282), + [sym_comment] = ACTIONS(50), + }, + [907] = { + [sym_file_descriptor] = ACTIONS(446), + [sym__concat] = ACTIONS(446), + [anon_sym_PIPE] = ACTIONS(892), + [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(892), + [anon_sym_GT] = ACTIONS(892), + [anon_sym_GT_GT] = ACTIONS(446), + [anon_sym_AMP_GT] = ACTIONS(892), + [anon_sym_AMP_GT_GT] = ACTIONS(446), + [anon_sym_LT_AMP] = ACTIONS(446), + [anon_sym_GT_AMP] = ACTIONS(446), + [anon_sym_LT_LT] = ACTIONS(892), + [anon_sym_LT_LT_DASH] = ACTIONS(446), + [anon_sym_BQUOTE] = ACTIONS(446), + [sym_comment] = ACTIONS(50), + }, + [908] = { + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(291), + [anon_sym_DQUOTE] = ACTIONS(2400), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_comment] = ACTIONS(64), + }, + [909] = { + [sym_file_descriptor] = ACTIONS(466), + [sym__concat] = ACTIONS(466), + [anon_sym_PIPE] = ACTIONS(478), + [anon_sym_RPAREN] = ACTIONS(466), + [anon_sym_PIPE_AMP] = ACTIONS(466), + [anon_sym_AMP_AMP] = ACTIONS(466), + [anon_sym_PIPE_PIPE] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(478), + [anon_sym_GT] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(466), + [anon_sym_AMP_GT] = ACTIONS(478), + [anon_sym_AMP_GT_GT] = ACTIONS(466), + [anon_sym_LT_AMP] = ACTIONS(466), + [anon_sym_GT_AMP] = ACTIONS(466), + [anon_sym_LT_LT] = ACTIONS(478), + [anon_sym_LT_LT_DASH] = ACTIONS(466), + [anon_sym_BQUOTE] = ACTIONS(466), + [sym_comment] = ACTIONS(50), + }, + [910] = { + [sym_file_descriptor] = ACTIONS(470), + [sym__concat] = ACTIONS(470), + [anon_sym_PIPE] = ACTIONS(896), + [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(896), + [anon_sym_GT] = ACTIONS(896), + [anon_sym_GT_GT] = ACTIONS(470), + [anon_sym_AMP_GT] = ACTIONS(896), + [anon_sym_AMP_GT_GT] = ACTIONS(470), + [anon_sym_LT_AMP] = ACTIONS(470), + [anon_sym_GT_AMP] = ACTIONS(470), + [anon_sym_LT_LT] = ACTIONS(896), + [anon_sym_LT_LT_DASH] = ACTIONS(470), + [anon_sym_BQUOTE] = ACTIONS(470), + [sym_comment] = ACTIONS(50), + }, + [911] = { [sym_file_descriptor] = ACTIONS(474), - [sym__concat] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(883), + [sym__concat] = ACTIONS(474), + [anon_sym_PIPE] = ACTIONS(898), [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(883), - [anon_sym_GT] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(898), [anon_sym_GT_GT] = ACTIONS(474), - [anon_sym_AMP_GT] = ACTIONS(883), + [anon_sym_AMP_GT] = ACTIONS(898), [anon_sym_AMP_GT_GT] = ACTIONS(474), [anon_sym_LT_AMP] = ACTIONS(474), [anon_sym_GT_AMP] = ACTIONS(474), - [anon_sym_LT_LT] = ACTIONS(883), + [anon_sym_LT_LT] = ACTIONS(898), [anon_sym_LT_LT_DASH] = ACTIONS(474), - [sym_comment] = ACTIONS(52), + [anon_sym_BQUOTE] = ACTIONS(474), + [sym_comment] = ACTIONS(50), + }, + [912] = { + [sym_special_variable_name] = STATE(1182), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(466), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(478), + [anon_sym_COLON_QMARK] = ACTIONS(466), + [anon_sym_COLON_DASH] = ACTIONS(466), + [anon_sym_PERCENT] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(466), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2402), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + }, + [913] = { + [anon_sym_RBRACE] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2406), + [anon_sym_EQ] = ACTIONS(2408), + [anon_sym_COLON] = ACTIONS(2410), + [anon_sym_COLON_QMARK] = ACTIONS(2408), + [anon_sym_COLON_DASH] = ACTIONS(2408), + [anon_sym_PERCENT] = ACTIONS(2408), + [anon_sym_SLASH] = ACTIONS(2408), + [sym_comment] = ACTIONS(50), + }, + [914] = { + [anon_sym_RBRACE] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym_EQ] = ACTIONS(2416), + [anon_sym_COLON] = ACTIONS(2418), + [anon_sym_COLON_QMARK] = ACTIONS(2416), + [anon_sym_COLON_DASH] = ACTIONS(2416), + [anon_sym_PERCENT] = ACTIONS(2416), + [anon_sym_SLASH] = ACTIONS(2416), + [sym_comment] = ACTIONS(50), + }, + [915] = { + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(2420), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), + }, + [916] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(2420), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [917] = { + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_BQUOTE] = ACTIONS(2420), + [sym_comment] = ACTIONS(50), + }, + [918] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(2420), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [919] = { + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), + }, + [920] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [921] = { + [aux_sym_concatenation_repeat1] = STATE(1179), + [sym_file_descriptor] = ACTIONS(596), + [sym__concat] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_RPAREN] = ACTIONS(596), + [anon_sym_PIPE_AMP] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(922), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_AMP_GT] = ACTIONS(922), + [anon_sym_AMP_GT_GT] = ACTIONS(596), + [anon_sym_LT_AMP] = ACTIONS(596), + [anon_sym_GT_AMP] = ACTIONS(596), + [anon_sym_LT_LT] = ACTIONS(922), + [anon_sym_LT_LT_DASH] = ACTIONS(596), + [sym_comment] = ACTIONS(50), + }, + [922] = { + [sym_file_descriptor] = ACTIONS(1924), + [anon_sym_PIPE] = ACTIONS(2424), + [anon_sym_RPAREN] = ACTIONS(1924), + [anon_sym_PIPE_AMP] = ACTIONS(1924), + [anon_sym_AMP_AMP] = ACTIONS(1924), + [anon_sym_PIPE_PIPE] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_GT] = ACTIONS(2424), + [anon_sym_GT_GT] = ACTIONS(1924), + [anon_sym_AMP_GT] = ACTIONS(2424), + [anon_sym_AMP_GT_GT] = ACTIONS(1924), + [anon_sym_LT_AMP] = ACTIONS(1924), + [anon_sym_GT_AMP] = ACTIONS(1924), + [anon_sym_LT_LT] = ACTIONS(2424), + [anon_sym_LT_LT_DASH] = ACTIONS(1924), + [anon_sym_BQUOTE] = ACTIONS(1924), + [sym_comment] = ACTIONS(50), + }, + [923] = { + [sym_simple_expansion] = STATE(660), + [sym_expansion] = STATE(660), + [aux_sym_heredoc_repeat1] = STATE(960), + [sym__heredoc_middle] = ACTIONS(1248), + [sym__heredoc_end] = ACTIONS(2426), + [anon_sym_DOLLAR] = ACTIONS(1252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1254), + [sym_comment] = ACTIONS(50), + }, + [924] = { + [sym_file_redirect] = STATE(345), + [sym_heredoc_redirect] = STATE(345), + [aux_sym_command_repeat2] = STATE(619), + [sym_file_descriptor] = ACTIONS(546), + [anon_sym_PIPE] = ACTIONS(2428), + [anon_sym_RPAREN] = ACTIONS(2430), + [anon_sym_PIPE_AMP] = ACTIONS(2430), + [anon_sym_AMP_AMP] = ACTIONS(2430), + [anon_sym_PIPE_PIPE] = ACTIONS(2430), + [anon_sym_LT] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(556), + [anon_sym_AMP_GT] = ACTIONS(554), + [anon_sym_AMP_GT_GT] = ACTIONS(556), + [anon_sym_LT_AMP] = ACTIONS(556), + [anon_sym_GT_AMP] = ACTIONS(556), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_LT_LT_DASH] = ACTIONS(560), + [sym_comment] = ACTIONS(50), + }, + [925] = { + [aux_sym_concatenation_repeat1] = STATE(1192), + [sym_file_descriptor] = ACTIONS(282), + [sym_word] = ACTIONS(282), + [sym__concat] = ACTIONS(426), + [sym_variable_name] = ACTIONS(282), + [anon_sym_PIPE] = ACTIONS(890), + [anon_sym_PIPE_AMP] = ACTIONS(282), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(890), + [anon_sym_GT] = ACTIONS(890), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_AMP_GT] = ACTIONS(890), + [anon_sym_AMP_GT_GT] = ACTIONS(282), + [anon_sym_LT_AMP] = ACTIONS(282), + [anon_sym_GT_AMP] = ACTIONS(282), + [anon_sym_DQUOTE] = ACTIONS(282), + [sym_raw_string] = ACTIONS(282), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(282), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(282), + [anon_sym_LT_LPAREN] = ACTIONS(282), + [anon_sym_GT_LPAREN] = ACTIONS(282), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(890), + }, + [926] = { + [aux_sym_concatenation_repeat1] = STATE(1192), + [sym_file_descriptor] = ACTIONS(596), + [sym_word] = ACTIONS(596), + [sym__concat] = ACTIONS(426), + [sym_variable_name] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_PIPE_AMP] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(922), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_AMP_GT] = ACTIONS(922), + [anon_sym_AMP_GT_GT] = ACTIONS(596), + [anon_sym_LT_AMP] = ACTIONS(596), + [anon_sym_GT_AMP] = ACTIONS(596), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_raw_string] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(596), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(596), + [anon_sym_BQUOTE] = ACTIONS(596), + [anon_sym_LT_LPAREN] = ACTIONS(596), + [anon_sym_GT_LPAREN] = ACTIONS(596), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(922), + }, + [927] = { + [sym_compound_statement] = STATE(1193), + [anon_sym_LBRACE] = ACTIONS(1118), + [sym_comment] = ACTIONS(50), + }, + [928] = { + [anon_sym_LT] = ACTIONS(2432), + [anon_sym_GT] = ACTIONS(2432), + [anon_sym_GT_GT] = ACTIONS(2434), + [anon_sym_AMP_GT] = ACTIONS(2432), + [anon_sym_AMP_GT_GT] = ACTIONS(2434), + [anon_sym_LT_AMP] = ACTIONS(2434), + [anon_sym_GT_AMP] = ACTIONS(2434), + [sym_comment] = ACTIONS(50), + }, + [929] = { + [sym_concatenation] = STATE(1143), + [sym_string] = STATE(1195), + [sym_simple_expansion] = STATE(1195), + [sym_expansion] = STATE(1195), + [sym_command_substitution] = STATE(1195), + [sym_process_substitution] = STATE(1195), + [sym_word] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2328), + [sym_raw_string] = ACTIONS(2436), + [anon_sym_DOLLAR] = ACTIONS(2330), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2332), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2334), + [anon_sym_BQUOTE] = ACTIONS(2336), + [anon_sym_LT_LPAREN] = ACTIONS(2338), + [anon_sym_GT_LPAREN] = ACTIONS(2338), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2438), + }, + [930] = { + [aux_sym_concatenation_repeat1] = STATE(1197), + [sym_word] = ACTIONS(760), + [sym__concat] = ACTIONS(2352), + [sym_variable_name] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_PIPE_AMP] = ACTIONS(760), + [anon_sym_AMP_AMP] = ACTIONS(760), + [anon_sym_PIPE_PIPE] = ACTIONS(760), + [anon_sym_BQUOTE] = ACTIONS(760), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1668), + }, + [931] = { + [aux_sym_concatenation_repeat1] = STATE(1198), + [sym_word] = ACTIONS(784), + [sym__concat] = ACTIONS(2352), + [sym_variable_name] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_PIPE_AMP] = ACTIONS(784), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_BQUOTE] = ACTIONS(784), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1672), }, [932] = { - [sym_file_descriptor] = ACTIONS(322), - [sym__concat] = ACTIONS(322), - [anon_sym_PIPE] = ACTIONS(324), - [anon_sym_RPAREN] = ACTIONS(322), - [anon_sym_PIPE_AMP] = ACTIONS(322), - [anon_sym_AMP_AMP] = ACTIONS(322), - [anon_sym_PIPE_PIPE] = ACTIONS(322), - [anon_sym_LT] = ACTIONS(324), - [anon_sym_GT] = ACTIONS(324), - [anon_sym_GT_GT] = ACTIONS(322), - [anon_sym_AMP_GT] = ACTIONS(324), - [anon_sym_AMP_GT_GT] = ACTIONS(322), - [anon_sym_LT_AMP] = ACTIONS(322), - [anon_sym_GT_AMP] = ACTIONS(322), - [anon_sym_LT_LT] = ACTIONS(324), - [anon_sym_LT_LT_DASH] = ACTIONS(322), - [anon_sym_BQUOTE] = ACTIONS(322), - [sym_comment] = ACTIONS(52), + [sym_file_redirect] = STATE(1176), + [sym_file_descriptor] = ACTIONS(1854), + [anon_sym_PIPE] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2394), + [anon_sym_AMP_AMP] = ACTIONS(2394), + [anon_sym_PIPE_PIPE] = ACTIONS(2394), + [anon_sym_LT] = ACTIONS(1856), + [anon_sym_GT] = ACTIONS(1856), + [anon_sym_GT_GT] = ACTIONS(1858), + [anon_sym_AMP_GT] = ACTIONS(1856), + [anon_sym_AMP_GT_GT] = ACTIONS(1858), + [anon_sym_LT_AMP] = ACTIONS(1858), + [anon_sym_GT_AMP] = ACTIONS(1858), + [anon_sym_BQUOTE] = ACTIONS(2394), + [sym_comment] = ACTIONS(50), }, [933] = { - [sym_file_descriptor] = ACTIONS(480), - [sym__concat] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(480), - [anon_sym_PIPE_AMP] = ACTIONS(480), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_GT_GT] = ACTIONS(480), - [anon_sym_AMP_GT] = ACTIONS(885), - [anon_sym_AMP_GT_GT] = ACTIONS(480), - [anon_sym_LT_AMP] = ACTIONS(480), - [anon_sym_GT_AMP] = ACTIONS(480), - [anon_sym_LT_LT] = ACTIONS(885), - [anon_sym_LT_LT_DASH] = ACTIONS(480), - [anon_sym_BQUOTE] = ACTIONS(480), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(935), + [sym_file_descriptor] = ACTIONS(723), + [sym__concat] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(723), + [anon_sym_AMP_AMP] = ACTIONS(723), + [anon_sym_PIPE_PIPE] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(723), + [anon_sym_AMP_GT] = ACTIONS(725), + [anon_sym_AMP_GT_GT] = ACTIONS(723), + [anon_sym_LT_AMP] = ACTIONS(723), + [anon_sym_GT_AMP] = ACTIONS(723), + [anon_sym_LT_LT] = ACTIONS(725), + [anon_sym_LT_LT_DASH] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(723), + [sym_comment] = ACTIONS(50), }, [934] = { - [sym_file_descriptor] = ACTIONS(484), - [sym__concat] = ACTIONS(484), - [anon_sym_PIPE] = ACTIONS(887), - [anon_sym_RPAREN] = ACTIONS(484), - [anon_sym_PIPE_AMP] = ACTIONS(484), - [anon_sym_AMP_AMP] = ACTIONS(484), - [anon_sym_PIPE_PIPE] = ACTIONS(484), - [anon_sym_LT] = ACTIONS(887), - [anon_sym_GT] = ACTIONS(887), - [anon_sym_GT_GT] = ACTIONS(484), - [anon_sym_AMP_GT] = ACTIONS(887), - [anon_sym_AMP_GT_GT] = ACTIONS(484), - [anon_sym_LT_AMP] = ACTIONS(484), - [anon_sym_GT_AMP] = ACTIONS(484), - [anon_sym_LT_LT] = ACTIONS(887), - [anon_sym_LT_LT_DASH] = ACTIONS(484), - [anon_sym_BQUOTE] = ACTIONS(484), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(936), + [sym_file_descriptor] = ACTIONS(727), + [sym__concat] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_PIPE_AMP] = ACTIONS(727), + [anon_sym_AMP_AMP] = ACTIONS(727), + [anon_sym_PIPE_PIPE] = ACTIONS(727), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_GT_GT] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(729), + [anon_sym_AMP_GT_GT] = ACTIONS(727), + [anon_sym_LT_AMP] = ACTIONS(727), + [anon_sym_GT_AMP] = ACTIONS(727), + [anon_sym_LT_LT] = ACTIONS(729), + [anon_sym_LT_LT_DASH] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(727), + [sym_comment] = ACTIONS(50), }, [935] = { - [sym_special_variable_name] = STATE(1180), - [anon_sym_RBRACE] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(62), - [anon_sym_AT] = ACTIONS(62), - [anon_sym_COLON] = ACTIONS(324), - [anon_sym_COLON_QMARK] = ACTIONS(322), - [anon_sym_COLON_DASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), + [aux_sym_concatenation_repeat1] = STATE(1199), + [sym_file_descriptor] = ACTIONS(282), + [sym__concat] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(890), + [anon_sym_PIPE_AMP] = ACTIONS(282), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(890), + [anon_sym_GT] = ACTIONS(890), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_AMP_GT] = ACTIONS(890), + [anon_sym_AMP_GT_GT] = ACTIONS(282), + [anon_sym_LT_AMP] = ACTIONS(282), + [anon_sym_GT_AMP] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(890), + [anon_sym_LT_LT_DASH] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(282), + [sym_comment] = ACTIONS(50), }, [936] = { - [anon_sym_RBRACE] = ACTIONS(2485), - [anon_sym_LBRACK] = ACTIONS(2487), - [anon_sym_EQ] = ACTIONS(2489), - [anon_sym_COLON] = ACTIONS(2491), - [anon_sym_COLON_QMARK] = ACTIONS(2489), - [anon_sym_COLON_DASH] = ACTIONS(2489), - [anon_sym_PERCENT] = ACTIONS(2489), - [anon_sym_SLASH] = ACTIONS(2489), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(1199), + [sym_file_descriptor] = ACTIONS(596), + [sym__concat] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_PIPE_AMP] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(922), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_AMP_GT] = ACTIONS(922), + [anon_sym_AMP_GT_GT] = ACTIONS(596), + [anon_sym_LT_AMP] = ACTIONS(596), + [anon_sym_GT_AMP] = ACTIONS(596), + [anon_sym_LT_LT] = ACTIONS(922), + [anon_sym_LT_LT_DASH] = ACTIONS(596), + [anon_sym_BQUOTE] = ACTIONS(596), + [sym_comment] = ACTIONS(50), }, [937] = { - [anon_sym_RBRACE] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2495), - [anon_sym_EQ] = ACTIONS(2497), - [anon_sym_COLON] = ACTIONS(2499), - [anon_sym_COLON_QMARK] = ACTIONS(2497), - [anon_sym_COLON_DASH] = ACTIONS(2497), - [anon_sym_PERCENT] = ACTIONS(2497), - [anon_sym_SLASH] = ACTIONS(2497), - [sym_comment] = ACTIONS(52), + [sym_file_redirect] = STATE(345), + [sym_heredoc_redirect] = STATE(345), + [aux_sym_command_repeat2] = STATE(637), + [sym_file_descriptor] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(2428), + [anon_sym_PIPE_AMP] = ACTIONS(2430), + [anon_sym_AMP_AMP] = ACTIONS(2430), + [anon_sym_PIPE_PIPE] = ACTIONS(2430), + [anon_sym_LT] = ACTIONS(584), + [anon_sym_GT] = ACTIONS(584), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_AMP_GT] = ACTIONS(584), + [anon_sym_AMP_GT_GT] = ACTIONS(586), + [anon_sym_LT_AMP] = ACTIONS(586), + [anon_sym_GT_AMP] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_LT_LT_DASH] = ACTIONS(560), + [anon_sym_BQUOTE] = ACTIONS(2430), + [sym_comment] = ACTIONS(50), }, [938] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2501), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2440), }, [939] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2501), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(733), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(733), + [anon_sym_LT_AMP] = ACTIONS(733), + [anon_sym_GT_AMP] = ACTIONS(733), + [anon_sym_LT_LT] = ACTIONS(733), + [anon_sym_LT_LT_DASH] = ACTIONS(733), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(733), + [anon_sym_AMP] = ACTIONS(733), }, [940] = { - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_BQUOTE] = ACTIONS(2501), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(735), + [sym__concat] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_RPAREN] = ACTIONS(737), + [anon_sym_SEMI_SEMI] = ACTIONS(737), + [anon_sym_PIPE_AMP] = ACTIONS(737), + [anon_sym_AMP_AMP] = ACTIONS(737), + [anon_sym_PIPE_PIPE] = ACTIONS(737), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_GT] = ACTIONS(737), + [anon_sym_GT_GT] = ACTIONS(737), + [anon_sym_AMP_GT] = ACTIONS(737), + [anon_sym_AMP_GT_GT] = ACTIONS(737), + [anon_sym_LT_AMP] = ACTIONS(737), + [anon_sym_GT_AMP] = ACTIONS(737), + [anon_sym_LT_LT] = ACTIONS(737), + [anon_sym_LT_LT_DASH] = ACTIONS(737), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(737), + [anon_sym_AMP] = ACTIONS(737), }, [941] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(2501), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(941), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(733), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(733), + [anon_sym_LT_AMP] = ACTIONS(733), + [anon_sym_GT_AMP] = ACTIONS(733), + [anon_sym_LT_LT] = ACTIONS(733), + [anon_sym_LT_LT_DASH] = ACTIONS(733), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(733), + [anon_sym_AMP] = ACTIONS(733), }, [942] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2503), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(1037), + [sym__concat] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1039), + [anon_sym_SEMI_SEMI] = ACTIONS(1039), + [anon_sym_PIPE_AMP] = ACTIONS(1039), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1039), + [anon_sym_GT_GT] = ACTIONS(1039), + [anon_sym_AMP_GT] = ACTIONS(1039), + [anon_sym_AMP_GT_GT] = ACTIONS(1039), + [anon_sym_LT_AMP] = ACTIONS(1039), + [anon_sym_GT_AMP] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1039), + [anon_sym_LT_LT_DASH] = ACTIONS(1039), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_AMP] = ACTIONS(1039), }, [943] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2503), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(2445), + [anon_sym_LBRACK] = ACTIONS(2447), + [sym_comment] = ACTIONS(50), }, [944] = { - [sym_file_descriptor] = ACTIONS(2007), - [anon_sym_PIPE] = ACTIONS(2505), - [anon_sym_RPAREN] = ACTIONS(2007), - [anon_sym_PIPE_AMP] = ACTIONS(2007), - [anon_sym_AMP_AMP] = ACTIONS(2007), - [anon_sym_PIPE_PIPE] = ACTIONS(2007), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_GT] = ACTIONS(2505), - [anon_sym_GT_GT] = ACTIONS(2007), - [anon_sym_AMP_GT] = ACTIONS(2505), - [anon_sym_AMP_GT_GT] = ACTIONS(2007), - [anon_sym_LT_AMP] = ACTIONS(2007), - [anon_sym_GT_AMP] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2505), - [anon_sym_LT_LT_DASH] = ACTIONS(2007), - [anon_sym_BQUOTE] = ACTIONS(2007), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_LBRACK] = ACTIONS(2451), + [sym_comment] = ACTIONS(50), }, [945] = { - [sym_simple_expansion] = STATE(675), - [sym_expansion] = STATE(675), - [aux_sym_heredoc_repeat1] = STATE(977), - [sym__heredoc_middle] = ACTIONS(1306), - [sym__heredoc_end] = ACTIONS(2507), - [anon_sym_DOLLAR] = ACTIONS(1310), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1312), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(1066), + [sym__concat] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_RPAREN] = ACTIONS(1068), + [anon_sym_SEMI_SEMI] = ACTIONS(1068), + [anon_sym_PIPE_AMP] = ACTIONS(1068), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE_PIPE] = ACTIONS(1068), + [anon_sym_LT] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_GT_GT] = ACTIONS(1068), + [anon_sym_AMP_GT] = ACTIONS(1068), + [anon_sym_AMP_GT_GT] = ACTIONS(1068), + [anon_sym_LT_AMP] = ACTIONS(1068), + [anon_sym_GT_AMP] = ACTIONS(1068), + [anon_sym_LT_LT] = ACTIONS(1068), + [anon_sym_LT_LT_DASH] = ACTIONS(1068), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_LF] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1068), }, [946] = { - [sym_file_redirect] = STATE(353), - [sym_heredoc_redirect] = STATE(353), - [aux_sym_command_repeat2] = STATE(636), - [sym_file_descriptor] = ACTIONS(552), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_RPAREN] = ACTIONS(2511), - [anon_sym_PIPE_AMP] = ACTIONS(2511), - [anon_sym_AMP_AMP] = ACTIONS(2511), - [anon_sym_PIPE_PIPE] = ACTIONS(2511), - [anon_sym_LT] = ACTIONS(558), - [anon_sym_GT] = ACTIONS(558), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(558), - [anon_sym_AMP_GT_GT] = ACTIONS(560), - [anon_sym_LT_AMP] = ACTIONS(560), - [anon_sym_GT_AMP] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_LT_LT_DASH] = ACTIONS(564), - [sym_comment] = ACTIONS(52), + [anon_sym_AT] = ACTIONS(2453), + [sym_comment] = ACTIONS(50), }, [947] = { - [aux_sym_concatenation_repeat1] = STATE(1190), - [sym_file_descriptor] = ACTIONS(474), - [sym__concat] = ACTIONS(1742), - [sym_variable_name] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(883), - [anon_sym_PIPE_AMP] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(883), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_GT_GT] = ACTIONS(474), - [anon_sym_AMP_GT] = ACTIONS(883), - [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(883), - [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), - }, - [948] = { - [sym_compound_statement] = STATE(1191), - [anon_sym_LBRACE] = ACTIONS(1174), - [sym_comment] = ACTIONS(52), - }, - [949] = { - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_GT] = ACTIONS(2513), - [anon_sym_GT_GT] = ACTIONS(2515), - [anon_sym_AMP_GT] = ACTIONS(2513), - [anon_sym_AMP_GT_GT] = ACTIONS(2515), - [anon_sym_LT_AMP] = ACTIONS(2515), - [anon_sym_GT_AMP] = ACTIONS(2515), - [sym_comment] = ACTIONS(52), - }, - [950] = { - [sym_concatenation] = STATE(1149), - [sym_string] = STATE(1193), - [sym_simple_expansion] = STATE(1193), - [sym_expansion] = STATE(1193), - [sym_command_substitution] = STATE(1193), - [sym_process_substitution] = STATE(1193), - [anon_sym_DQUOTE] = ACTIONS(2423), - [sym_raw_string] = ACTIONS(2517), - [anon_sym_DOLLAR] = ACTIONS(2427), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2431), - [anon_sym_BQUOTE] = ACTIONS(2433), - [anon_sym_LT_LPAREN] = ACTIONS(2435), - [anon_sym_GT_LPAREN] = ACTIONS(2435), - [sym_word] = ACTIONS(2519), - [sym_comment] = ACTIONS(52), - }, - [951] = { - [aux_sym_concatenation_repeat1] = STATE(1194), - [sym__concat] = ACTIONS(2453), - [sym_variable_name] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_PIPE_AMP] = ACTIONS(745), - [anon_sym_AMP_AMP] = ACTIONS(745), - [anon_sym_PIPE_PIPE] = ACTIONS(745), - [anon_sym_BQUOTE] = ACTIONS(745), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(1736), - }, - [952] = { - [sym_file_redirect] = STATE(1175), - [sym_file_descriptor] = ACTIONS(1941), - [anon_sym_PIPE] = ACTIONS(2439), - [anon_sym_PIPE_AMP] = ACTIONS(2441), - [anon_sym_AMP_AMP] = ACTIONS(2441), - [anon_sym_PIPE_PIPE] = ACTIONS(2441), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_GT_GT] = ACTIONS(1945), - [anon_sym_AMP_GT] = ACTIONS(1943), - [anon_sym_AMP_GT_GT] = ACTIONS(1945), - [anon_sym_LT_AMP] = ACTIONS(1945), - [anon_sym_GT_AMP] = ACTIONS(1945), - [anon_sym_BQUOTE] = ACTIONS(2441), - [sym_comment] = ACTIONS(52), - }, - [953] = { - [aux_sym_concatenation_repeat1] = STATE(954), - [sym_file_descriptor] = ACTIONS(725), - [sym__concat] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PIPE_AMP] = ACTIONS(725), - [anon_sym_AMP_AMP] = ACTIONS(725), - [anon_sym_PIPE_PIPE] = ACTIONS(725), - [anon_sym_LT] = ACTIONS(727), - [anon_sym_GT] = ACTIONS(727), - [anon_sym_GT_GT] = ACTIONS(725), - [anon_sym_AMP_GT] = ACTIONS(727), - [anon_sym_AMP_GT_GT] = ACTIONS(725), - [anon_sym_LT_AMP] = ACTIONS(725), - [anon_sym_GT_AMP] = ACTIONS(725), - [anon_sym_LT_LT] = ACTIONS(727), - [anon_sym_LT_LT_DASH] = ACTIONS(725), - [anon_sym_BQUOTE] = ACTIONS(725), - [sym_comment] = ACTIONS(52), - }, - [954] = { - [aux_sym_concatenation_repeat1] = STATE(1195), - [sym_file_descriptor] = ACTIONS(474), - [sym__concat] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(883), - [anon_sym_PIPE_AMP] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_LT] = ACTIONS(883), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_GT_GT] = ACTIONS(474), - [anon_sym_AMP_GT] = ACTIONS(883), - [anon_sym_AMP_GT_GT] = ACTIONS(474), - [anon_sym_LT_AMP] = ACTIONS(474), - [anon_sym_GT_AMP] = ACTIONS(474), - [anon_sym_LT_LT] = ACTIONS(883), - [anon_sym_LT_LT_DASH] = ACTIONS(474), - [anon_sym_BQUOTE] = ACTIONS(474), - [sym_comment] = ACTIONS(52), - }, - [955] = { - [sym_file_redirect] = STATE(353), - [sym_heredoc_redirect] = STATE(353), - [aux_sym_command_repeat2] = STATE(654), - [sym_file_descriptor] = ACTIONS(588), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_PIPE_AMP] = ACTIONS(2511), - [anon_sym_AMP_AMP] = ACTIONS(2511), - [anon_sym_PIPE_PIPE] = ACTIONS(2511), - [anon_sym_LT] = ACTIONS(590), - [anon_sym_GT] = ACTIONS(590), - [anon_sym_GT_GT] = ACTIONS(592), - [anon_sym_AMP_GT] = ACTIONS(590), - [anon_sym_AMP_GT_GT] = ACTIONS(592), - [anon_sym_LT_AMP] = ACTIONS(592), - [anon_sym_GT_AMP] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_LT_LT_DASH] = ACTIONS(564), - [anon_sym_BQUOTE] = ACTIONS(2511), - [sym_comment] = ACTIONS(52), - }, - [956] = { - [anon_sym_PIPE] = ACTIONS(2227), - [anon_sym_RPAREN] = ACTIONS(2227), - [anon_sym_SEMI_SEMI] = ACTIONS(2227), - [anon_sym_PIPE_AMP] = ACTIONS(2227), - [anon_sym_AMP_AMP] = ACTIONS(2227), - [anon_sym_PIPE_PIPE] = ACTIONS(2227), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2227), - [anon_sym_LF] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(2227), - }, - [957] = { - [sym_file_descriptor] = ACTIONS(1080), - [sym__concat] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1082), - [anon_sym_RPAREN] = ACTIONS(1082), - [anon_sym_SEMI_SEMI] = ACTIONS(1082), - [anon_sym_PIPE_AMP] = ACTIONS(1082), - [anon_sym_AMP_AMP] = ACTIONS(1082), - [anon_sym_PIPE_PIPE] = ACTIONS(1082), - [anon_sym_LT] = ACTIONS(1082), - [anon_sym_GT] = ACTIONS(1082), - [anon_sym_GT_GT] = ACTIONS(1082), - [anon_sym_AMP_GT] = ACTIONS(1082), - [anon_sym_AMP_GT_GT] = ACTIONS(1082), - [anon_sym_LT_AMP] = ACTIONS(1082), - [anon_sym_GT_AMP] = ACTIONS(1082), - [anon_sym_LT_LT] = ACTIONS(1082), - [anon_sym_LT_LT_DASH] = ACTIONS(1082), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_LF] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - }, - [958] = { - [sym_file_descriptor] = ACTIONS(1101), - [sym__concat] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1103), - [anon_sym_SEMI_SEMI] = ACTIONS(1103), - [anon_sym_PIPE_AMP] = ACTIONS(1103), - [anon_sym_AMP_AMP] = ACTIONS(1103), - [anon_sym_PIPE_PIPE] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1103), - [anon_sym_GT] = ACTIONS(1103), - [anon_sym_GT_GT] = ACTIONS(1103), - [anon_sym_AMP_GT] = ACTIONS(1103), - [anon_sym_AMP_GT_GT] = ACTIONS(1103), - [anon_sym_LT_AMP] = ACTIONS(1103), - [anon_sym_GT_AMP] = ACTIONS(1103), - [anon_sym_LT_LT] = ACTIONS(1103), - [anon_sym_LT_LT_DASH] = ACTIONS(1103), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_LF] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1103), - }, - [959] = { - [aux_sym_concatenation_repeat1] = STATE(959), - [sym_file_descriptor] = ACTIONS(1101), - [sym__concat] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_SEMI_SEMI] = ACTIONS(1103), - [anon_sym_PIPE_AMP] = ACTIONS(1103), - [anon_sym_AMP_AMP] = ACTIONS(1103), - [anon_sym_PIPE_PIPE] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1103), - [anon_sym_GT] = ACTIONS(1103), - [anon_sym_GT_GT] = ACTIONS(1103), - [anon_sym_AMP_GT] = ACTIONS(1103), - [anon_sym_AMP_GT_GT] = ACTIONS(1103), - [anon_sym_LT_AMP] = ACTIONS(1103), - [anon_sym_GT_AMP] = ACTIONS(1103), - [anon_sym_LT_LT] = ACTIONS(1103), - [anon_sym_LT_LT_DASH] = ACTIONS(1103), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_LF] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1103), - }, - [960] = { - [anon_sym_RBRACE] = ACTIONS(2524), - [anon_sym_LBRACK] = ACTIONS(2526), - [sym_comment] = ACTIONS(52), - }, - [961] = { - [anon_sym_RBRACE] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(2530), - [sym_comment] = ACTIONS(52), - }, - [962] = { - [sym_file_descriptor] = ACTIONS(1116), - [sym__concat] = ACTIONS(1116), - [anon_sym_PIPE] = ACTIONS(1118), - [anon_sym_RPAREN] = ACTIONS(1118), - [anon_sym_SEMI_SEMI] = ACTIONS(1118), - [anon_sym_PIPE_AMP] = ACTIONS(1118), - [anon_sym_AMP_AMP] = ACTIONS(1118), - [anon_sym_PIPE_PIPE] = ACTIONS(1118), - [anon_sym_LT] = ACTIONS(1118), - [anon_sym_GT] = ACTIONS(1118), - [anon_sym_GT_GT] = ACTIONS(1118), - [anon_sym_AMP_GT] = ACTIONS(1118), - [anon_sym_AMP_GT_GT] = ACTIONS(1118), - [anon_sym_LT_AMP] = ACTIONS(1118), - [anon_sym_GT_AMP] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1118), - [anon_sym_LT_LT_DASH] = ACTIONS(1118), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_LF] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - }, - [963] = { - [anon_sym_AT] = ACTIONS(2532), - [sym_comment] = ACTIONS(52), - }, - [964] = { - [sym_concatenation] = STATE(1203), - [sym_string] = STATE(1202), - [sym_simple_expansion] = STATE(1202), - [sym_expansion] = STATE(1202), - [sym_command_substitution] = STATE(1202), - [sym_process_substitution] = STATE(1202), - [anon_sym_RBRACE] = ACTIONS(2534), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(2536), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(2538), - [sym_comment] = ACTIONS(52), - }, - [965] = { - [sym_file_descriptor] = ACTIONS(1128), - [sym__concat] = ACTIONS(1128), - [anon_sym_PIPE] = ACTIONS(1130), - [anon_sym_RPAREN] = ACTIONS(1130), - [anon_sym_SEMI_SEMI] = ACTIONS(1130), - [anon_sym_PIPE_AMP] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1130), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_LT] = ACTIONS(1130), - [anon_sym_GT] = ACTIONS(1130), - [anon_sym_GT_GT] = ACTIONS(1130), - [anon_sym_AMP_GT] = ACTIONS(1130), - [anon_sym_AMP_GT_GT] = ACTIONS(1130), - [anon_sym_LT_AMP] = ACTIONS(1130), - [anon_sym_GT_AMP] = ACTIONS(1130), - [anon_sym_LT_LT] = ACTIONS(1130), - [anon_sym_LT_LT_DASH] = ACTIONS(1130), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1130), - [anon_sym_LF] = ACTIONS(1130), - [anon_sym_AMP] = ACTIONS(1130), - }, - [966] = { - [anon_sym_AT] = ACTIONS(2540), - [sym_comment] = ACTIONS(52), - }, - [967] = { - [sym_concatenation] = STATE(1206), + [sym_concatenation] = STATE(1208), [sym_string] = STATE(1205), [sym_simple_expansion] = STATE(1205), [sym_expansion] = STATE(1205), [sym_command_substitution] = STATE(1205), [sym_process_substitution] = STATE(1205), - [anon_sym_RBRACE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(2542), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(2544), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(2455), + [anon_sym_RBRACE] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(2455), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2459), + }, + [948] = { + [sym_file_descriptor] = ACTIONS(1078), + [sym__concat] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_RPAREN] = ACTIONS(1080), + [anon_sym_SEMI_SEMI] = ACTIONS(1080), + [anon_sym_PIPE_AMP] = ACTIONS(1080), + [anon_sym_AMP_AMP] = ACTIONS(1080), + [anon_sym_PIPE_PIPE] = ACTIONS(1080), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_AMP_GT] = ACTIONS(1080), + [anon_sym_AMP_GT_GT] = ACTIONS(1080), + [anon_sym_LT_AMP] = ACTIONS(1080), + [anon_sym_GT_AMP] = ACTIONS(1080), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_LT_LT_DASH] = ACTIONS(1080), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_LF] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + }, + [949] = { + [anon_sym_AT] = ACTIONS(2461), + [sym_comment] = ACTIONS(50), + }, + [950] = { + [sym_concatenation] = STATE(1212), + [sym_string] = STATE(1210), + [sym_simple_expansion] = STATE(1210), + [sym_expansion] = STATE(1210), + [sym_command_substitution] = STATE(1210), + [sym_process_substitution] = STATE(1210), + [sym_word] = ACTIONS(2463), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(2463), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2465), + }, + [951] = { + [sym_file_descriptor] = ACTIONS(1162), + [sym__concat] = ACTIONS(1162), + [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_RPAREN] = ACTIONS(1164), + [anon_sym_SEMI_SEMI] = ACTIONS(1164), + [anon_sym_PIPE_AMP] = ACTIONS(1164), + [anon_sym_AMP_AMP] = ACTIONS(1164), + [anon_sym_PIPE_PIPE] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_GT] = ACTIONS(1164), + [anon_sym_AMP_GT] = ACTIONS(1164), + [anon_sym_AMP_GT_GT] = ACTIONS(1164), + [anon_sym_LT_AMP] = ACTIONS(1164), + [anon_sym_GT_AMP] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1164), + [anon_sym_LT_LT_DASH] = ACTIONS(1164), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym_LF] = ACTIONS(1164), + [anon_sym_AMP] = ACTIONS(1164), + }, + [952] = { + [sym_file_descriptor] = ACTIONS(1214), + [sym__concat] = ACTIONS(1214), + [anon_sym_PIPE] = ACTIONS(1216), + [anon_sym_RPAREN] = ACTIONS(1216), + [anon_sym_SEMI_SEMI] = ACTIONS(1216), + [anon_sym_PIPE_AMP] = ACTIONS(1216), + [anon_sym_AMP_AMP] = ACTIONS(1216), + [anon_sym_PIPE_PIPE] = ACTIONS(1216), + [anon_sym_LT] = ACTIONS(1216), + [anon_sym_GT] = ACTIONS(1216), + [anon_sym_GT_GT] = ACTIONS(1216), + [anon_sym_AMP_GT] = ACTIONS(1216), + [anon_sym_AMP_GT_GT] = ACTIONS(1216), + [anon_sym_LT_AMP] = ACTIONS(1216), + [anon_sym_GT_AMP] = ACTIONS(1216), + [anon_sym_LT_LT] = ACTIONS(1216), + [anon_sym_LT_LT_DASH] = ACTIONS(1216), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym_LF] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(1216), + }, + [953] = { + [sym__heredoc_middle] = ACTIONS(466), + [sym__heredoc_end] = ACTIONS(466), + [anon_sym_DOLLAR] = ACTIONS(478), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(50), + }, + [954] = { + [sym__heredoc_middle] = ACTIONS(470), + [sym__heredoc_end] = ACTIONS(470), + [anon_sym_DOLLAR] = ACTIONS(896), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(470), + [sym_comment] = ACTIONS(50), + }, + [955] = { + [sym__heredoc_middle] = ACTIONS(474), + [sym__heredoc_end] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(898), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(474), + [sym_comment] = ACTIONS(50), + }, + [956] = { + [sym_special_variable_name] = STATE(1214), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(466), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(478), + [anon_sym_COLON_QMARK] = ACTIONS(466), + [anon_sym_COLON_DASH] = ACTIONS(466), + [anon_sym_PERCENT] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(466), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2467), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + }, + [957] = { + [anon_sym_RBRACE] = ACTIONS(2469), + [anon_sym_LBRACK] = ACTIONS(2471), + [anon_sym_EQ] = ACTIONS(2473), + [anon_sym_COLON] = ACTIONS(2475), + [anon_sym_COLON_QMARK] = ACTIONS(2473), + [anon_sym_COLON_DASH] = ACTIONS(2473), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2473), + [sym_comment] = ACTIONS(50), + }, + [958] = { + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_EQ] = ACTIONS(2481), + [anon_sym_COLON] = ACTIONS(2483), + [anon_sym_COLON_QMARK] = ACTIONS(2481), + [anon_sym_COLON_DASH] = ACTIONS(2481), + [anon_sym_PERCENT] = ACTIONS(2481), + [anon_sym_SLASH] = ACTIONS(2481), + [sym_comment] = ACTIONS(50), + }, + [959] = { + [sym_file_descriptor] = ACTIONS(2485), + [anon_sym_PIPE] = ACTIONS(2487), + [anon_sym_RPAREN] = ACTIONS(2487), + [anon_sym_SEMI_SEMI] = ACTIONS(2487), + [anon_sym_PIPE_AMP] = ACTIONS(2487), + [anon_sym_AMP_AMP] = ACTIONS(2487), + [anon_sym_PIPE_PIPE] = ACTIONS(2487), + [anon_sym_LT] = ACTIONS(2487), + [anon_sym_GT] = ACTIONS(2487), + [anon_sym_GT_GT] = ACTIONS(2487), + [anon_sym_AMP_GT] = ACTIONS(2487), + [anon_sym_AMP_GT_GT] = ACTIONS(2487), + [anon_sym_LT_AMP] = ACTIONS(2487), + [anon_sym_GT_AMP] = ACTIONS(2487), + [anon_sym_LT_LT] = ACTIONS(2487), + [anon_sym_LT_LT_DASH] = ACTIONS(2487), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_LF] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2487), + }, + [960] = { + [sym_simple_expansion] = STATE(660), + [sym_expansion] = STATE(660), + [aux_sym_heredoc_repeat1] = STATE(960), + [sym__heredoc_middle] = ACTIONS(2489), + [sym__heredoc_end] = ACTIONS(2492), + [anon_sym_DOLLAR] = ACTIONS(2494), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2497), + [sym_comment] = ACTIONS(50), + }, + [961] = { + [sym__concat] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_RPAREN] = ACTIONS(1629), + [anon_sym_RBRACE] = ACTIONS(1629), + [anon_sym_RBRACK] = ACTIONS(1629), + [sym_comment] = ACTIONS(50), + }, + [962] = { + [anon_sym_AT] = ACTIONS(2500), + [sym_comment] = ACTIONS(50), + }, + [963] = { + [sym__concat] = ACTIONS(1635), + [anon_sym_PIPE] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(1635), + [anon_sym_RBRACE] = ACTIONS(1635), + [anon_sym_RBRACK] = ACTIONS(1635), + [sym_comment] = ACTIONS(50), + }, + [964] = { + [anon_sym_AT] = ACTIONS(2502), + [sym_comment] = ACTIONS(50), + }, + [965] = { + [anon_sym_RBRACK] = ACTIONS(2504), + [sym_comment] = ACTIONS(50), + }, + [966] = { + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(2506), + [anon_sym_RBRACE] = ACTIONS(2508), + [sym_comment] = ACTIONS(50), + }, + [967] = { + [sym__concat] = ACTIONS(1647), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_RBRACE] = ACTIONS(1647), + [anon_sym_RBRACK] = ACTIONS(1647), + [sym_comment] = ACTIONS(50), }, [968] = { - [sym_file_descriptor] = ACTIONS(1222), - [sym__concat] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1224), - [anon_sym_SEMI_SEMI] = ACTIONS(1224), - [anon_sym_PIPE_AMP] = ACTIONS(1224), - [anon_sym_AMP_AMP] = ACTIONS(1224), - [anon_sym_PIPE_PIPE] = ACTIONS(1224), - [anon_sym_LT] = ACTIONS(1224), - [anon_sym_GT] = ACTIONS(1224), - [anon_sym_GT_GT] = ACTIONS(1224), - [anon_sym_AMP_GT] = ACTIONS(1224), - [anon_sym_AMP_GT_GT] = ACTIONS(1224), - [anon_sym_LT_AMP] = ACTIONS(1224), - [anon_sym_GT_AMP] = ACTIONS(1224), - [anon_sym_LT_LT] = ACTIONS(1224), - [anon_sym_LT_LT_DASH] = ACTIONS(1224), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym_LF] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(2510), + [anon_sym_RBRACE] = ACTIONS(2512), + [sym_comment] = ACTIONS(50), }, [969] = { - [sym_file_descriptor] = ACTIONS(1274), - [sym__concat] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_RPAREN] = ACTIONS(1276), - [anon_sym_SEMI_SEMI] = ACTIONS(1276), - [anon_sym_PIPE_AMP] = ACTIONS(1276), - [anon_sym_AMP_AMP] = ACTIONS(1276), - [anon_sym_PIPE_PIPE] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1276), - [anon_sym_GT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_AMP_GT] = ACTIONS(1276), - [anon_sym_AMP_GT_GT] = ACTIONS(1276), - [anon_sym_LT_AMP] = ACTIONS(1276), - [anon_sym_GT_AMP] = ACTIONS(1276), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_LT_LT_DASH] = ACTIONS(1276), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_LF] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), + [sym__concat] = ACTIONS(2504), + [anon_sym_RBRACE] = ACTIONS(2508), + [sym_comment] = ACTIONS(50), }, [970] = { - [sym__heredoc_middle] = ACTIONS(322), - [sym__heredoc_end] = ACTIONS(322), - [anon_sym_DOLLAR] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(322), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACK] = ACTIONS(2514), + [sym_comment] = ACTIONS(50), }, [971] = { - [sym__heredoc_middle] = ACTIONS(480), - [sym__heredoc_end] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(885), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(480), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(2516), + [anon_sym_RBRACE] = ACTIONS(2518), + [sym_comment] = ACTIONS(50), }, [972] = { - [sym__heredoc_middle] = ACTIONS(484), - [sym__heredoc_end] = ACTIONS(484), - [anon_sym_DOLLAR] = ACTIONS(887), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(484), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(2520), + [anon_sym_RBRACE] = ACTIONS(2522), + [sym_comment] = ACTIONS(50), }, [973] = { - [sym_special_variable_name] = STATE(1208), - [anon_sym_RBRACE] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(62), - [anon_sym_AT] = ACTIONS(62), - [anon_sym_COLON] = ACTIONS(324), - [anon_sym_COLON_QMARK] = ACTIONS(322), - [anon_sym_COLON_DASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(2546), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), + [sym__concat] = ACTIONS(2514), + [anon_sym_RBRACE] = ACTIONS(2518), + [sym_comment] = ACTIONS(50), }, [974] = { - [anon_sym_RBRACE] = ACTIONS(2548), - [anon_sym_LBRACK] = ACTIONS(2550), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_COLON] = ACTIONS(2554), - [anon_sym_COLON_QMARK] = ACTIONS(2552), - [anon_sym_COLON_DASH] = ACTIONS(2552), - [anon_sym_PERCENT] = ACTIONS(2552), - [anon_sym_SLASH] = ACTIONS(2552), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(974), + [sym_word] = ACTIONS(731), + [sym__concat] = ACTIONS(1531), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(1527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1527), }, [975] = { - [anon_sym_RBRACE] = ACTIONS(2556), - [anon_sym_LBRACK] = ACTIONS(2558), - [anon_sym_EQ] = ACTIONS(2560), - [anon_sym_COLON] = ACTIONS(2562), - [anon_sym_COLON_QMARK] = ACTIONS(2560), - [anon_sym_COLON_DASH] = ACTIONS(2560), - [anon_sym_PERCENT] = ACTIONS(2560), - [anon_sym_SLASH] = ACTIONS(2560), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(1629), + [sym_word] = ACTIONS(1629), + [sym__concat] = ACTIONS(1629), + [sym_variable_name] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_RPAREN] = ACTIONS(1631), + [anon_sym_SEMI_SEMI] = ACTIONS(1631), + [anon_sym_PIPE_AMP] = ACTIONS(1631), + [anon_sym_AMP_AMP] = ACTIONS(1631), + [anon_sym_PIPE_PIPE] = ACTIONS(1631), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_GT_GT] = ACTIONS(1631), + [anon_sym_AMP_GT] = ACTIONS(1631), + [anon_sym_AMP_GT_GT] = ACTIONS(1631), + [anon_sym_LT_AMP] = ACTIONS(1631), + [anon_sym_GT_AMP] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [sym_raw_string] = ACTIONS(1631), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1631), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1631), + [anon_sym_LT_LPAREN] = ACTIONS(1631), + [anon_sym_GT_LPAREN] = ACTIONS(1631), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1631), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_LF] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1631), }, [976] = { - [sym_file_descriptor] = ACTIONS(2564), - [anon_sym_PIPE] = ACTIONS(2566), - [anon_sym_RPAREN] = ACTIONS(2566), - [anon_sym_SEMI_SEMI] = ACTIONS(2566), - [anon_sym_PIPE_AMP] = ACTIONS(2566), - [anon_sym_AMP_AMP] = ACTIONS(2566), - [anon_sym_PIPE_PIPE] = ACTIONS(2566), - [anon_sym_LT] = ACTIONS(2566), - [anon_sym_GT] = ACTIONS(2566), - [anon_sym_GT_GT] = ACTIONS(2566), - [anon_sym_AMP_GT] = ACTIONS(2566), - [anon_sym_AMP_GT_GT] = ACTIONS(2566), - [anon_sym_LT_AMP] = ACTIONS(2566), - [anon_sym_GT_AMP] = ACTIONS(2566), - [anon_sym_LT_LT] = ACTIONS(2566), - [anon_sym_LT_LT_DASH] = ACTIONS(2566), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2566), - [anon_sym_LF] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2524), + [sym_comment] = ACTIONS(50), }, [977] = { - [sym_simple_expansion] = STATE(675), - [sym_expansion] = STATE(675), - [aux_sym_heredoc_repeat1] = STATE(977), - [sym__heredoc_middle] = ACTIONS(2568), - [sym__heredoc_end] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(2573), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2576), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(1635), + [sym_word] = ACTIONS(1635), + [sym__concat] = ACTIONS(1635), + [sym_variable_name] = ACTIONS(1635), + [anon_sym_PIPE] = ACTIONS(1637), + [anon_sym_RPAREN] = ACTIONS(1637), + [anon_sym_SEMI_SEMI] = ACTIONS(1637), + [anon_sym_PIPE_AMP] = ACTIONS(1637), + [anon_sym_AMP_AMP] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1637), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_GT_GT] = ACTIONS(1637), + [anon_sym_AMP_GT] = ACTIONS(1637), + [anon_sym_AMP_GT_GT] = ACTIONS(1637), + [anon_sym_LT_AMP] = ACTIONS(1637), + [anon_sym_GT_AMP] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1637), + [sym_raw_string] = ACTIONS(1637), + [anon_sym_DOLLAR] = ACTIONS(1637), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1637), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1637), + [anon_sym_BQUOTE] = ACTIONS(1637), + [anon_sym_LT_LPAREN] = ACTIONS(1637), + [anon_sym_GT_LPAREN] = ACTIONS(1637), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1637), + [anon_sym_LF] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1637), }, [978] = { - [sym_file_descriptor] = ACTIONS(1394), - [sym_variable_name] = ACTIONS(1394), - [anon_sym_LT] = ACTIONS(2361), - [anon_sym_GT] = ACTIONS(2361), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_AMP_GT] = ACTIONS(2361), - [anon_sym_AMP_GT_GT] = ACTIONS(1394), - [anon_sym_LT_AMP] = ACTIONS(1394), - [anon_sym_GT_AMP] = ACTIONS(1394), - [anon_sym_DQUOTE] = ACTIONS(1394), - [sym_raw_string] = ACTIONS(1394), - [anon_sym_DOLLAR] = ACTIONS(2361), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1394), - [anon_sym_BQUOTE] = ACTIONS(1394), - [anon_sym_LT_LPAREN] = ACTIONS(1394), - [anon_sym_GT_LPAREN] = ACTIONS(1394), - [sym_word] = ACTIONS(2361), - [sym_comment] = ACTIONS(52), + [anon_sym_AT] = ACTIONS(2526), + [sym_comment] = ACTIONS(50), }, [979] = { - [sym_concatenation] = STATE(423), - [sym_string] = STATE(417), - [sym_simple_expansion] = STATE(417), - [sym_expansion] = STATE(417), - [sym_command_substitution] = STATE(417), - [sym_process_substitution] = STATE(417), - [aux_sym_for_statement_repeat1] = STATE(714), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(755), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(759), - [anon_sym_BQUOTE] = ACTIONS(761), - [anon_sym_LT_LPAREN] = ACTIONS(763), - [anon_sym_GT_LPAREN] = ACTIONS(763), - [sym_word] = ACTIONS(765), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACK] = ACTIONS(2528), + [sym_comment] = ACTIONS(50), }, [980] = { - [sym__concat] = ACTIONS(1712), - [anon_sym_PIPE] = ACTIONS(1712), - [anon_sym_RPAREN] = ACTIONS(1712), - [anon_sym_RBRACK] = ACTIONS(1712), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(2530), + [anon_sym_RBRACE] = ACTIONS(2532), + [sym_comment] = ACTIONS(50), }, [981] = { - [anon_sym_AT] = ACTIONS(2581), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(1647), + [sym_word] = ACTIONS(1647), + [sym__concat] = ACTIONS(1647), + [sym_variable_name] = ACTIONS(1647), + [anon_sym_PIPE] = ACTIONS(1649), + [anon_sym_RPAREN] = ACTIONS(1649), + [anon_sym_SEMI_SEMI] = ACTIONS(1649), + [anon_sym_PIPE_AMP] = ACTIONS(1649), + [anon_sym_AMP_AMP] = ACTIONS(1649), + [anon_sym_PIPE_PIPE] = ACTIONS(1649), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_GT_GT] = ACTIONS(1649), + [anon_sym_AMP_GT] = ACTIONS(1649), + [anon_sym_AMP_GT_GT] = ACTIONS(1649), + [anon_sym_LT_AMP] = ACTIONS(1649), + [anon_sym_GT_AMP] = ACTIONS(1649), + [anon_sym_DQUOTE] = ACTIONS(1649), + [sym_raw_string] = ACTIONS(1649), + [anon_sym_DOLLAR] = ACTIONS(1649), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1649), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1649), + [anon_sym_LT_LPAREN] = ACTIONS(1649), + [anon_sym_GT_LPAREN] = ACTIONS(1649), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1649), + [anon_sym_SEMI] = ACTIONS(1649), + [anon_sym_LF] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), }, [982] = { - [sym__concat] = ACTIONS(1718), - [anon_sym_PIPE] = ACTIONS(1718), - [anon_sym_RPAREN] = ACTIONS(1718), - [anon_sym_RBRACK] = ACTIONS(1718), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(2534), + [anon_sym_RBRACE] = ACTIONS(2536), + [sym_comment] = ACTIONS(50), }, [983] = { - [anon_sym_AT] = ACTIONS(2583), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(2528), + [anon_sym_RBRACE] = ACTIONS(2532), + [sym_comment] = ACTIONS(50), }, [984] = { - [anon_sym_RBRACK] = ACTIONS(2585), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACK] = ACTIONS(2538), + [sym_comment] = ACTIONS(50), }, [985] = { - [sym__concat] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_RBRACK] = ACTIONS(1726), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(2540), + [anon_sym_RBRACE] = ACTIONS(2542), + [sym_comment] = ACTIONS(50), }, [986] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(2587), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(2544), + [anon_sym_RBRACE] = ACTIONS(2546), + [sym_comment] = ACTIONS(50), }, [987] = { - [anon_sym_RBRACE] = ACTIONS(2587), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(2538), + [anon_sym_RBRACE] = ACTIONS(2542), + [sym_comment] = ACTIONS(50), }, [988] = { - [anon_sym_RBRACK] = ACTIONS(2589), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(731), + [sym__concat] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [sym_raw_string] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(733), + [anon_sym_AMP] = ACTIONS(733), }, [989] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(2591), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(735), + [sym__concat] = ACTIONS(735), + [anon_sym_SEMI_SEMI] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(737), + [sym_raw_string] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), + [anon_sym_BQUOTE] = ACTIONS(737), + [anon_sym_LT_LPAREN] = ACTIONS(737), + [anon_sym_GT_LPAREN] = ACTIONS(737), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(737), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(737), + [anon_sym_AMP] = ACTIONS(737), }, [990] = { - [anon_sym_RBRACE] = ACTIONS(2591), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(990), + [sym_word] = ACTIONS(731), + [sym__concat] = ACTIONS(2548), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [sym_raw_string] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(733), + [anon_sym_AMP] = ACTIONS(733), }, [991] = { - [sym__concat] = ACTIONS(1080), - [anon_sym_RPAREN] = ACTIONS(1080), + [sym_word] = ACTIONS(1037), + [sym__concat] = ACTIONS(1037), + [anon_sym_SEMI_SEMI] = ACTIONS(1039), + [anon_sym_DQUOTE] = ACTIONS(1039), + [sym_raw_string] = ACTIONS(1039), + [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1039), + [anon_sym_BQUOTE] = ACTIONS(1039), + [anon_sym_LT_LPAREN] = ACTIONS(1039), + [anon_sym_GT_LPAREN] = ACTIONS(1039), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_AMP] = ACTIONS(1039), + }, + [992] = { + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2553), + [sym_comment] = ACTIONS(50), + }, + [993] = { + [anon_sym_RBRACE] = ACTIONS(2555), + [anon_sym_LBRACK] = ACTIONS(2557), + [sym_comment] = ACTIONS(50), + }, + [994] = { + [sym_word] = ACTIONS(1066), + [sym__concat] = ACTIONS(1066), + [anon_sym_SEMI_SEMI] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym_raw_string] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1068), + [anon_sym_BQUOTE] = ACTIONS(1068), + [anon_sym_LT_LPAREN] = ACTIONS(1068), + [anon_sym_GT_LPAREN] = ACTIONS(1068), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_LF] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1068), + }, + [995] = { + [anon_sym_AT] = ACTIONS(2559), + [sym_comment] = ACTIONS(50), + }, + [996] = { + [sym_concatenation] = STATE(1253), + [sym_string] = STATE(1250), + [sym_simple_expansion] = STATE(1250), + [sym_expansion] = STATE(1250), + [sym_command_substitution] = STATE(1250), + [sym_process_substitution] = STATE(1250), + [sym_word] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(2561), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2565), + }, + [997] = { + [sym_word] = ACTIONS(1078), + [sym__concat] = ACTIONS(1078), + [anon_sym_SEMI_SEMI] = ACTIONS(1080), [anon_sym_DQUOTE] = ACTIONS(1080), [sym_raw_string] = ACTIONS(1080), - [anon_sym_DOLLAR] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(1080), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1080), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1080), [anon_sym_BQUOTE] = ACTIONS(1080), [anon_sym_LT_LPAREN] = ACTIONS(1080), [anon_sym_GT_LPAREN] = ACTIONS(1080), - [sym_word] = ACTIONS(1587), - [sym_comment] = ACTIONS(52), - }, - [992] = { - [sym__concat] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(1101), - [anon_sym_DQUOTE] = ACTIONS(1101), - [sym_raw_string] = ACTIONS(1101), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1101), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), - [anon_sym_BQUOTE] = ACTIONS(1101), - [anon_sym_LT_LPAREN] = ACTIONS(1101), - [anon_sym_GT_LPAREN] = ACTIONS(1101), - [sym_word] = ACTIONS(1589), - [sym_comment] = ACTIONS(52), - }, - [993] = { - [aux_sym_concatenation_repeat1] = STATE(993), - [sym__concat] = ACTIONS(2593), - [anon_sym_RPAREN] = ACTIONS(1101), - [anon_sym_DQUOTE] = ACTIONS(1101), - [sym_raw_string] = ACTIONS(1101), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1101), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), - [anon_sym_BQUOTE] = ACTIONS(1101), - [anon_sym_LT_LPAREN] = ACTIONS(1101), - [anon_sym_GT_LPAREN] = ACTIONS(1101), - [sym_word] = ACTIONS(1589), - [sym_comment] = ACTIONS(52), - }, - [994] = { - [anon_sym_RBRACE] = ACTIONS(2596), - [anon_sym_LBRACK] = ACTIONS(2598), - [sym_comment] = ACTIONS(52), - }, - [995] = { - [anon_sym_RBRACE] = ACTIONS(2600), - [anon_sym_LBRACK] = ACTIONS(2602), - [sym_comment] = ACTIONS(52), - }, - [996] = { - [sym__concat] = ACTIONS(1116), - [anon_sym_RPAREN] = ACTIONS(1116), - [anon_sym_DQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1116), - [anon_sym_DOLLAR] = ACTIONS(1602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1116), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1116), - [anon_sym_BQUOTE] = ACTIONS(1116), - [anon_sym_LT_LPAREN] = ACTIONS(1116), - [anon_sym_GT_LPAREN] = ACTIONS(1116), - [sym_word] = ACTIONS(1602), - [sym_comment] = ACTIONS(52), - }, - [997] = { - [anon_sym_AT] = ACTIONS(2604), - [sym_comment] = ACTIONS(52), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_LF] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), }, [998] = { - [sym_concatenation] = STATE(1229), - [sym_string] = STATE(1228), - [sym_simple_expansion] = STATE(1228), - [sym_expansion] = STATE(1228), - [sym_command_substitution] = STATE(1228), - [sym_process_substitution] = STATE(1228), - [anon_sym_RBRACE] = ACTIONS(2606), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(2608), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(2610), - [sym_comment] = ACTIONS(52), + [anon_sym_AT] = ACTIONS(2567), + [sym_comment] = ACTIONS(50), }, [999] = { - [sym__concat] = ACTIONS(1128), - [anon_sym_RPAREN] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1128), - [sym_raw_string] = ACTIONS(1128), - [anon_sym_DOLLAR] = ACTIONS(1612), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1128), - [anon_sym_LT_LPAREN] = ACTIONS(1128), - [anon_sym_GT_LPAREN] = ACTIONS(1128), - [sym_word] = ACTIONS(1612), - [sym_comment] = ACTIONS(52), + [sym_concatenation] = STATE(1257), + [sym_string] = STATE(1255), + [sym_simple_expansion] = STATE(1255), + [sym_expansion] = STATE(1255), + [sym_command_substitution] = STATE(1255), + [sym_process_substitution] = STATE(1255), + [sym_word] = ACTIONS(2569), + [anon_sym_RBRACE] = ACTIONS(2555), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(2569), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2571), }, [1000] = { - [anon_sym_AT] = ACTIONS(2612), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(1162), + [sym__concat] = ACTIONS(1162), + [anon_sym_SEMI_SEMI] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [sym_raw_string] = ACTIONS(1164), + [anon_sym_DOLLAR] = ACTIONS(1164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1164), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1164), + [anon_sym_BQUOTE] = ACTIONS(1164), + [anon_sym_LT_LPAREN] = ACTIONS(1164), + [anon_sym_GT_LPAREN] = ACTIONS(1164), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym_LF] = ACTIONS(1164), + [anon_sym_AMP] = ACTIONS(1164), }, [1001] = { - [sym_concatenation] = STATE(1232), - [sym_string] = STATE(1231), - [sym_simple_expansion] = STATE(1231), - [sym_expansion] = STATE(1231), - [sym_command_substitution] = STATE(1231), - [sym_process_substitution] = STATE(1231), - [anon_sym_RBRACE] = ACTIONS(2600), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(2614), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(2616), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(1214), + [sym__concat] = ACTIONS(1214), + [anon_sym_SEMI_SEMI] = ACTIONS(1216), + [anon_sym_DQUOTE] = ACTIONS(1216), + [sym_raw_string] = ACTIONS(1216), + [anon_sym_DOLLAR] = ACTIONS(1216), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1216), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1216), + [anon_sym_BQUOTE] = ACTIONS(1216), + [anon_sym_LT_LPAREN] = ACTIONS(1216), + [anon_sym_GT_LPAREN] = ACTIONS(1216), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1216), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym_LF] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(1216), }, [1002] = { - [sym__concat] = ACTIONS(1222), - [anon_sym_RPAREN] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_raw_string] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1620), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1222), - [anon_sym_BQUOTE] = ACTIONS(1222), - [anon_sym_LT_LPAREN] = ACTIONS(1222), - [anon_sym_GT_LPAREN] = ACTIONS(1222), - [sym_word] = ACTIONS(1620), - [sym_comment] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(2573), + [anon_sym_RPAREN] = ACTIONS(2573), + [anon_sym_SEMI_SEMI] = ACTIONS(2573), + [anon_sym_PIPE_AMP] = ACTIONS(2573), + [anon_sym_AMP_AMP] = ACTIONS(2573), + [anon_sym_PIPE_PIPE] = ACTIONS(2573), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2573), + [anon_sym_LF] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), }, [1003] = { - [sym__concat] = ACTIONS(1274), - [anon_sym_RPAREN] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_raw_string] = ACTIONS(1274), - [anon_sym_DOLLAR] = ACTIONS(1622), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1274), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1274), - [anon_sym_BQUOTE] = ACTIONS(1274), - [anon_sym_LT_LPAREN] = ACTIONS(1274), - [anon_sym_GT_LPAREN] = ACTIONS(1274), - [sym_word] = ACTIONS(1622), - [sym_comment] = ACTIONS(52), - }, - [1004] = { - [sym_file_descriptor] = ACTIONS(1712), - [sym__concat] = ACTIONS(1712), - [sym_variable_name] = ACTIONS(1712), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_RPAREN] = ACTIONS(1714), - [anon_sym_SEMI_SEMI] = ACTIONS(1714), - [anon_sym_PIPE_AMP] = ACTIONS(1714), - [anon_sym_AMP_AMP] = ACTIONS(1714), - [anon_sym_PIPE_PIPE] = ACTIONS(1714), - [anon_sym_LT] = ACTIONS(1714), - [anon_sym_GT] = ACTIONS(1714), - [anon_sym_GT_GT] = ACTIONS(1714), - [anon_sym_AMP_GT] = ACTIONS(1714), - [anon_sym_AMP_GT_GT] = ACTIONS(1714), - [anon_sym_LT_AMP] = ACTIONS(1714), - [anon_sym_GT_AMP] = ACTIONS(1714), - [anon_sym_DQUOTE] = ACTIONS(1714), - [sym_raw_string] = ACTIONS(1714), - [anon_sym_DOLLAR] = ACTIONS(1714), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1714), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1714), - [anon_sym_BQUOTE] = ACTIONS(1714), - [anon_sym_LT_LPAREN] = ACTIONS(1714), - [anon_sym_GT_LPAREN] = ACTIONS(1714), - [sym_word] = ACTIONS(1714), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_LF] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1714), - }, - [1005] = { - [anon_sym_AT] = ACTIONS(2618), - [sym_comment] = ACTIONS(52), - }, - [1006] = { - [sym_file_descriptor] = ACTIONS(1718), - [sym__concat] = ACTIONS(1718), - [sym_variable_name] = ACTIONS(1718), - [anon_sym_PIPE] = ACTIONS(1720), - [anon_sym_RPAREN] = ACTIONS(1720), - [anon_sym_SEMI_SEMI] = ACTIONS(1720), - [anon_sym_PIPE_AMP] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1720), - [anon_sym_AMP_GT] = ACTIONS(1720), - [anon_sym_AMP_GT_GT] = ACTIONS(1720), - [anon_sym_LT_AMP] = ACTIONS(1720), - [anon_sym_GT_AMP] = ACTIONS(1720), - [anon_sym_DQUOTE] = ACTIONS(1720), - [sym_raw_string] = ACTIONS(1720), - [anon_sym_DOLLAR] = ACTIONS(1720), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1720), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1720), - [anon_sym_BQUOTE] = ACTIONS(1720), - [anon_sym_LT_LPAREN] = ACTIONS(1720), - [anon_sym_GT_LPAREN] = ACTIONS(1720), - [sym_word] = ACTIONS(1720), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_LF] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1720), - }, - [1007] = { - [anon_sym_AT] = ACTIONS(2620), - [sym_comment] = ACTIONS(52), - }, - [1008] = { - [anon_sym_RBRACK] = ACTIONS(2622), - [sym_comment] = ACTIONS(52), - }, - [1009] = { - [sym_file_descriptor] = ACTIONS(1726), - [sym__concat] = ACTIONS(1726), - [sym_variable_name] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_RPAREN] = ACTIONS(1728), - [anon_sym_SEMI_SEMI] = ACTIONS(1728), - [anon_sym_PIPE_AMP] = ACTIONS(1728), - [anon_sym_AMP_AMP] = ACTIONS(1728), - [anon_sym_PIPE_PIPE] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(1728), - [anon_sym_GT] = ACTIONS(1728), - [anon_sym_GT_GT] = ACTIONS(1728), - [anon_sym_AMP_GT] = ACTIONS(1728), - [anon_sym_AMP_GT_GT] = ACTIONS(1728), - [anon_sym_LT_AMP] = ACTIONS(1728), - [anon_sym_GT_AMP] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_raw_string] = ACTIONS(1728), - [anon_sym_DOLLAR] = ACTIONS(1728), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1728), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1728), - [anon_sym_BQUOTE] = ACTIONS(1728), - [anon_sym_LT_LPAREN] = ACTIONS(1728), - [anon_sym_GT_LPAREN] = ACTIONS(1728), - [sym_word] = ACTIONS(1728), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_LF] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - }, - [1010] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(2624), - [sym_comment] = ACTIONS(52), - }, - [1011] = { - [anon_sym_RBRACE] = ACTIONS(2624), - [sym_comment] = ACTIONS(52), - }, - [1012] = { - [anon_sym_RBRACK] = ACTIONS(2626), - [sym_comment] = ACTIONS(52), - }, - [1013] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(2628), - [sym_comment] = ACTIONS(52), - }, - [1014] = { - [anon_sym_RBRACE] = ACTIONS(2628), - [sym_comment] = ACTIONS(52), - }, - [1015] = { - [sym__concat] = ACTIONS(1080), - [anon_sym_SEMI_SEMI] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(1082), - [anon_sym_DOLLAR] = ACTIONS(1082), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1082), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1082), - [anon_sym_BQUOTE] = ACTIONS(1082), - [anon_sym_LT_LPAREN] = ACTIONS(1082), - [anon_sym_GT_LPAREN] = ACTIONS(1082), - [sym_word] = ACTIONS(1082), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_LF] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - }, - [1016] = { - [sym__concat] = ACTIONS(1101), - [anon_sym_SEMI_SEMI] = ACTIONS(1103), - [anon_sym_DQUOTE] = ACTIONS(1103), - [sym_raw_string] = ACTIONS(1103), - [anon_sym_DOLLAR] = ACTIONS(1103), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1103), - [anon_sym_BQUOTE] = ACTIONS(1103), - [anon_sym_LT_LPAREN] = ACTIONS(1103), - [anon_sym_GT_LPAREN] = ACTIONS(1103), - [sym_word] = ACTIONS(1103), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_LF] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1103), - }, - [1017] = { - [aux_sym_concatenation_repeat1] = STATE(1017), - [sym__concat] = ACTIONS(2630), - [anon_sym_SEMI_SEMI] = ACTIONS(1103), - [anon_sym_DQUOTE] = ACTIONS(1103), - [sym_raw_string] = ACTIONS(1103), - [anon_sym_DOLLAR] = ACTIONS(1103), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1103), - [anon_sym_BQUOTE] = ACTIONS(1103), - [anon_sym_LT_LPAREN] = ACTIONS(1103), - [anon_sym_GT_LPAREN] = ACTIONS(1103), - [sym_word] = ACTIONS(1103), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_LF] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1103), - }, - [1018] = { - [anon_sym_RBRACE] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2635), - [sym_comment] = ACTIONS(52), - }, - [1019] = { - [anon_sym_RBRACE] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2639), - [sym_comment] = ACTIONS(52), - }, - [1020] = { - [sym__concat] = ACTIONS(1116), - [anon_sym_SEMI_SEMI] = ACTIONS(1118), - [anon_sym_DQUOTE] = ACTIONS(1118), - [sym_raw_string] = ACTIONS(1118), - [anon_sym_DOLLAR] = ACTIONS(1118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1118), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1118), - [anon_sym_BQUOTE] = ACTIONS(1118), - [anon_sym_LT_LPAREN] = ACTIONS(1118), - [anon_sym_GT_LPAREN] = ACTIONS(1118), - [sym_word] = ACTIONS(1118), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_LF] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - }, - [1021] = { - [anon_sym_AT] = ACTIONS(2641), - [sym_comment] = ACTIONS(52), - }, - [1022] = { - [sym_concatenation] = STATE(1246), - [sym_string] = STATE(1245), - [sym_simple_expansion] = STATE(1245), - [sym_expansion] = STATE(1245), - [sym_command_substitution] = STATE(1245), - [sym_process_substitution] = STATE(1245), - [anon_sym_RBRACE] = ACTIONS(2643), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(2645), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(2647), - [sym_comment] = ACTIONS(52), - }, - [1023] = { - [sym__concat] = ACTIONS(1128), - [anon_sym_SEMI_SEMI] = ACTIONS(1130), - [anon_sym_DQUOTE] = ACTIONS(1130), - [sym_raw_string] = ACTIONS(1130), - [anon_sym_DOLLAR] = ACTIONS(1130), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1130), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1130), - [anon_sym_BQUOTE] = ACTIONS(1130), - [anon_sym_LT_LPAREN] = ACTIONS(1130), - [anon_sym_GT_LPAREN] = ACTIONS(1130), - [sym_word] = ACTIONS(1130), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1130), - [anon_sym_LF] = ACTIONS(1130), - [anon_sym_AMP] = ACTIONS(1130), - }, - [1024] = { - [anon_sym_AT] = ACTIONS(2649), - [sym_comment] = ACTIONS(52), - }, - [1025] = { - [sym_concatenation] = STATE(1249), - [sym_string] = STATE(1248), - [sym_simple_expansion] = STATE(1248), - [sym_expansion] = STATE(1248), - [sym_command_substitution] = STATE(1248), - [sym_process_substitution] = STATE(1248), - [anon_sym_RBRACE] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(2651), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(2653), - [sym_comment] = ACTIONS(52), - }, - [1026] = { - [sym__concat] = ACTIONS(1222), - [anon_sym_SEMI_SEMI] = ACTIONS(1224), - [anon_sym_DQUOTE] = ACTIONS(1224), - [sym_raw_string] = ACTIONS(1224), - [anon_sym_DOLLAR] = ACTIONS(1224), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1224), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1224), - [anon_sym_BQUOTE] = ACTIONS(1224), - [anon_sym_LT_LPAREN] = ACTIONS(1224), - [anon_sym_GT_LPAREN] = ACTIONS(1224), - [sym_word] = ACTIONS(1224), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym_LF] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - }, - [1027] = { - [sym__concat] = ACTIONS(1274), - [anon_sym_SEMI_SEMI] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_raw_string] = ACTIONS(1276), - [anon_sym_DOLLAR] = ACTIONS(1276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), - [anon_sym_BQUOTE] = ACTIONS(1276), - [anon_sym_LT_LPAREN] = ACTIONS(1276), - [anon_sym_GT_LPAREN] = ACTIONS(1276), - [sym_word] = ACTIONS(1276), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_LF] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - }, - [1028] = { - [anon_sym_PIPE] = ACTIONS(2655), - [anon_sym_RPAREN] = ACTIONS(2655), - [anon_sym_SEMI_SEMI] = ACTIONS(2655), - [anon_sym_PIPE_AMP] = ACTIONS(2655), - [anon_sym_AMP_AMP] = ACTIONS(2655), - [anon_sym_PIPE_PIPE] = ACTIONS(2655), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2655), - [anon_sym_LF] = ACTIONS(2655), - [anon_sym_AMP] = ACTIONS(2655), - }, - [1029] = { - [anon_sym_PIPE] = ACTIONS(2657), - [anon_sym_RPAREN] = ACTIONS(2657), - [anon_sym_SEMI_SEMI] = ACTIONS(2657), - [anon_sym_PIPE_AMP] = ACTIONS(2657), - [anon_sym_AMP_AMP] = ACTIONS(2657), - [anon_sym_PIPE_PIPE] = ACTIONS(2657), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2657), - [anon_sym_LF] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2657), - }, - [1030] = { - [sym__terminated_statement] = STATE(459), - [sym_for_statement] = STATE(460), - [sym_while_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_case_statement] = STATE(460), - [sym_function_definition] = STATE(460), - [sym_subshell] = STATE(460), - [sym_pipeline] = STATE(460), - [sym_list] = STATE(460), - [sym_bracket_command] = STATE(460), - [sym_command] = STATE(460), + [sym__terminated_statement] = STATE(451), + [sym_for_statement] = STATE(452), + [sym_while_statement] = STATE(452), + [sym_if_statement] = STATE(452), + [sym_case_statement] = STATE(452), + [sym_function_definition] = STATE(452), + [sym_subshell] = STATE(452), + [sym_pipeline] = STATE(452), + [sym_list] = STATE(452), + [sym_bracket_command] = STATE(452), + [sym_command] = STATE(452), [sym_command_name] = STATE(25), - [sym_variable_assignment] = STATE(463), - [sym_declaration_command] = STATE(460), + [sym_variable_assignment] = STATE(455), + [sym_declaration_command] = STATE(452), [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(1250), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(1258), [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(2659), - [anon_sym_elif] = ACTIONS(2659), - [anon_sym_else] = ACTIONS(2659), - [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), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_fi] = ACTIONS(2575), + [anon_sym_elif] = ACTIONS(2575), + [anon_sym_else] = ACTIONS(2575), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), [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), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), }, - [1031] = { - [sym_file_descriptor] = ACTIONS(606), - [sym_variable_name] = ACTIONS(606), - [anon_sym_for] = ACTIONS(608), - [anon_sym_while] = ACTIONS(608), - [anon_sym_if] = ACTIONS(608), - [anon_sym_fi] = ACTIONS(608), - [anon_sym_case] = ACTIONS(608), - [anon_sym_function] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(606), - [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_LBRACK_LBRACK] = ACTIONS(608), - [anon_sym_declare] = ACTIONS(608), - [anon_sym_typeset] = ACTIONS(608), - [anon_sym_export] = ACTIONS(608), - [anon_sym_readonly] = ACTIONS(608), - [anon_sym_local] = ACTIONS(608), - [anon_sym_LT] = ACTIONS(608), - [anon_sym_GT] = ACTIONS(608), - [anon_sym_GT_GT] = ACTIONS(606), - [anon_sym_AMP_GT] = ACTIONS(608), - [anon_sym_AMP_GT_GT] = ACTIONS(606), - [anon_sym_LT_AMP] = ACTIONS(606), - [anon_sym_GT_AMP] = ACTIONS(606), - [anon_sym_DQUOTE] = ACTIONS(606), - [sym_raw_string] = ACTIONS(606), - [anon_sym_DOLLAR] = ACTIONS(608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(606), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), - [anon_sym_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(606), - [anon_sym_GT_LPAREN] = ACTIONS(606), - [sym_word] = ACTIONS(610), - [sym_comment] = ACTIONS(52), + [1004] = { + [sym_file_descriptor] = ACTIONS(600), + [sym_word] = ACTIONS(600), + [sym_variable_name] = ACTIONS(600), + [anon_sym_for] = ACTIONS(602), + [anon_sym_while] = ACTIONS(602), + [anon_sym_if] = ACTIONS(602), + [anon_sym_fi] = ACTIONS(602), + [anon_sym_case] = ACTIONS(602), + [anon_sym_function] = ACTIONS(602), + [anon_sym_LPAREN] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(600), + [anon_sym_declare] = ACTIONS(602), + [anon_sym_typeset] = ACTIONS(602), + [anon_sym_export] = ACTIONS(602), + [anon_sym_readonly] = ACTIONS(602), + [anon_sym_local] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_GT_GT] = ACTIONS(600), + [anon_sym_AMP_GT] = ACTIONS(602), + [anon_sym_AMP_GT_GT] = ACTIONS(600), + [anon_sym_LT_AMP] = ACTIONS(600), + [anon_sym_GT_AMP] = ACTIONS(600), + [anon_sym_DQUOTE] = ACTIONS(600), + [sym_raw_string] = ACTIONS(600), + [anon_sym_DOLLAR] = ACTIONS(602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(600), + [anon_sym_LT_LPAREN] = ACTIONS(600), + [anon_sym_GT_LPAREN] = ACTIONS(600), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(604), }, - [1032] = { - [sym__terminated_statement] = STATE(751), - [sym_for_statement] = STATE(752), - [sym_while_statement] = STATE(752), - [sym_if_statement] = STATE(752), - [sym_case_statement] = STATE(752), - [sym_function_definition] = STATE(752), - [sym_subshell] = STATE(752), - [sym_pipeline] = STATE(752), - [sym_list] = STATE(752), - [sym_bracket_command] = STATE(752), - [sym_command] = STATE(752), + [1005] = { + [sym__terminated_statement] = STATE(723), + [sym_for_statement] = STATE(724), + [sym_while_statement] = STATE(724), + [sym_if_statement] = STATE(724), + [sym_case_statement] = STATE(724), + [sym_function_definition] = STATE(724), + [sym_subshell] = STATE(724), + [sym_pipeline] = STATE(724), + [sym_list] = STATE(724), + [sym_bracket_command] = STATE(724), + [sym_command] = STATE(724), [sym_command_name] = STATE(25), - [sym_variable_assignment] = STATE(753), - [sym_declaration_command] = STATE(752), + [sym_variable_assignment] = STATE(725), + [sym_declaration_command] = STATE(724), [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(1032), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(1005), [aux_sym_command_repeat1] = STATE(31), - [sym_file_descriptor] = ACTIONS(642), - [sym_variable_name] = ACTIONS(645), - [anon_sym_for] = ACTIONS(650), - [anon_sym_while] = ACTIONS(653), - [anon_sym_if] = ACTIONS(656), - [anon_sym_fi] = ACTIONS(2184), - [anon_sym_case] = ACTIONS(659), - [anon_sym_function] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_LBRACK_LBRACK] = ACTIONS(671), - [anon_sym_declare] = ACTIONS(674), - [anon_sym_typeset] = ACTIONS(674), - [anon_sym_export] = ACTIONS(674), - [anon_sym_readonly] = ACTIONS(674), - [anon_sym_local] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(677), - [anon_sym_GT_GT] = ACTIONS(680), - [anon_sym_AMP_GT] = ACTIONS(677), - [anon_sym_AMP_GT_GT] = ACTIONS(680), - [anon_sym_LT_AMP] = ACTIONS(680), - [anon_sym_GT_AMP] = ACTIONS(680), - [anon_sym_DQUOTE] = ACTIONS(683), - [sym_raw_string] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(692), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), - [anon_sym_BQUOTE] = ACTIONS(698), - [anon_sym_LT_LPAREN] = ACTIONS(701), - [anon_sym_GT_LPAREN] = ACTIONS(701), - [sym_word] = ACTIONS(704), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(640), + [sym_word] = ACTIONS(643), + [sym_variable_name] = ACTIONS(646), + [anon_sym_for] = ACTIONS(651), + [anon_sym_while] = ACTIONS(654), + [anon_sym_if] = ACTIONS(657), + [anon_sym_fi] = ACTIONS(2059), + [anon_sym_case] = ACTIONS(660), + [anon_sym_function] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACK_LBRACK] = ACTIONS(672), + [anon_sym_declare] = ACTIONS(675), + [anon_sym_typeset] = ACTIONS(675), + [anon_sym_export] = ACTIONS(675), + [anon_sym_readonly] = ACTIONS(675), + [anon_sym_local] = ACTIONS(675), + [anon_sym_LT] = ACTIONS(678), + [anon_sym_GT] = ACTIONS(678), + [anon_sym_GT_GT] = ACTIONS(681), + [anon_sym_AMP_GT] = ACTIONS(678), + [anon_sym_AMP_GT_GT] = ACTIONS(681), + [anon_sym_LT_AMP] = ACTIONS(681), + [anon_sym_GT_AMP] = ACTIONS(681), + [anon_sym_DQUOTE] = ACTIONS(684), + [sym_raw_string] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(696), + [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(702), }, - [1033] = { - [anon_sym_PIPE] = ACTIONS(2661), - [anon_sym_RPAREN] = ACTIONS(2661), - [anon_sym_SEMI_SEMI] = ACTIONS(2661), - [anon_sym_PIPE_AMP] = ACTIONS(2661), - [anon_sym_AMP_AMP] = ACTIONS(2661), - [anon_sym_PIPE_PIPE] = ACTIONS(2661), + [1006] = { + [anon_sym_PIPE] = ACTIONS(2577), + [anon_sym_RPAREN] = ACTIONS(2577), + [anon_sym_SEMI_SEMI] = ACTIONS(2577), + [anon_sym_PIPE_AMP] = ACTIONS(2577), + [anon_sym_AMP_AMP] = ACTIONS(2577), + [anon_sym_PIPE_PIPE] = ACTIONS(2577), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2661), - [anon_sym_LF] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2661), + [anon_sym_SEMI] = ACTIONS(2577), + [anon_sym_LF] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(2577), }, - [1034] = { - [anon_sym_fi] = ACTIONS(2663), - [sym_comment] = ACTIONS(52), + [1007] = { + [anon_sym_fi] = ACTIONS(2579), + [sym_comment] = ACTIONS(50), }, - [1035] = { - [sym_concatenation] = STATE(1253), - [sym_string] = STATE(1252), - [sym_simple_expansion] = STATE(1252), - [sym_expansion] = STATE(1252), - [sym_command_substitution] = STATE(1252), - [sym_process_substitution] = STATE(1252), - [anon_sym_DQUOTE] = ACTIONS(282), - [sym_raw_string] = ACTIONS(2665), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_word] = ACTIONS(2667), - [sym_comment] = ACTIONS(52), + [1008] = { + [sym_concatenation] = STATE(1262), + [sym_string] = STATE(1260), + [sym_simple_expansion] = STATE(1260), + [sym_expansion] = STATE(1260), + [sym_command_substitution] = STATE(1260), + [sym_process_substitution] = STATE(1260), + [sym_word] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(2581), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2583), }, - [1036] = { + [1009] = { [sym__terminated_statement] = STATE(23), [sym_for_statement] = STATE(24), [sym_while_statement] = STATE(24), @@ -27025,514 +26179,487 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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(1255), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(1264), [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(2669), - [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), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_SEMI_SEMI] = ACTIONS(2585), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), [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), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), + }, + [1010] = { + [aux_sym_case_item_repeat1] = STATE(1266), + [anon_sym_PIPE] = ACTIONS(2076), + [anon_sym_RPAREN] = ACTIONS(2587), + [sym_comment] = ACTIONS(50), + }, + [1011] = { + [aux_sym_concatenation_repeat1] = STATE(1267), + [sym__concat] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(282), + [anon_sym_RPAREN] = ACTIONS(282), + [sym_comment] = ACTIONS(50), + }, + [1012] = { + [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(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(1269), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_SEMI_SEMI] = ACTIONS(2589), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), + }, + [1013] = { + [aux_sym_case_item_repeat1] = STATE(1266), + [anon_sym_PIPE] = ACTIONS(2076), + [anon_sym_RPAREN] = ACTIONS(2591), + [sym_comment] = ACTIONS(50), + }, + [1014] = { + [aux_sym_concatenation_repeat1] = STATE(1267), + [sym__concat] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_RPAREN] = ACTIONS(596), + [sym_comment] = ACTIONS(50), + }, + [1015] = { + [anon_sym_PIPE] = ACTIONS(2593), + [anon_sym_RPAREN] = ACTIONS(2593), + [anon_sym_SEMI_SEMI] = ACTIONS(2593), + [anon_sym_PIPE_AMP] = ACTIONS(2593), + [anon_sym_AMP_AMP] = ACTIONS(2593), + [anon_sym_PIPE_PIPE] = ACTIONS(2593), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2593), + [anon_sym_LF] = ACTIONS(2593), + [anon_sym_AMP] = ACTIONS(2593), + }, + [1016] = { + [sym_case_item] = STATE(736), + [sym_concatenation] = STATE(737), + [sym_string] = STATE(733), + [sym_simple_expansion] = STATE(733), + [sym_expansion] = STATE(733), + [sym_command_substitution] = STATE(733), + [sym_process_substitution] = STATE(733), + [aux_sym_case_statement_repeat1] = STATE(1016), + [sym_word] = ACTIONS(2595), + [anon_sym_esac] = ACTIONS(2598), + [anon_sym_DQUOTE] = ACTIONS(2600), + [sym_raw_string] = ACTIONS(2595), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2606), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2609), + [anon_sym_BQUOTE] = ACTIONS(2612), + [anon_sym_LT_LPAREN] = ACTIONS(2615), + [anon_sym_GT_LPAREN] = ACTIONS(2615), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2618), + }, + [1017] = { + [sym_case_item] = STATE(736), + [sym_concatenation] = STATE(737), + [sym_string] = STATE(733), + [sym_simple_expansion] = STATE(733), + [sym_expansion] = STATE(733), + [sym_command_substitution] = STATE(733), + [sym_process_substitution] = STATE(733), + [aux_sym_case_statement_repeat1] = STATE(1016), + [sym_word] = ACTIONS(1426), + [anon_sym_esac] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1430), + }, + [1018] = { + [anon_sym_RBRACK] = ACTIONS(2623), + [sym_comment] = ACTIONS(50), + }, + [1019] = { + [anon_sym_RBRACK] = ACTIONS(2625), + [sym_comment] = ACTIONS(50), + }, + [1020] = { + [anon_sym_RBRACE] = ACTIONS(2627), + [sym_comment] = ACTIONS(50), + }, + [1021] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1022] = { + [sym__concat] = ACTIONS(2268), + [anon_sym_in] = ACTIONS(2270), + [anon_sym_SEMI_SEMI] = ACTIONS(2270), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym_LF] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(2270), + }, + [1023] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1024] = { + [sym__concat] = ACTIONS(2274), + [anon_sym_in] = ACTIONS(2276), + [anon_sym_SEMI_SEMI] = ACTIONS(2276), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_LF] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(2276), + }, + [1025] = { + [anon_sym_RBRACE] = ACTIONS(2631), + [sym_comment] = ACTIONS(50), + }, + [1026] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1027] = { + [sym__concat] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2282), + [anon_sym_SEMI_SEMI] = ACTIONS(2282), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2282), + [anon_sym_LF] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2282), + }, + [1028] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1029] = { + [sym__concat] = ACTIONS(2286), + [anon_sym_in] = ACTIONS(2288), + [anon_sym_SEMI_SEMI] = ACTIONS(2288), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_LF] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + }, + [1030] = { + [anon_sym_PIPE] = ACTIONS(2635), + [anon_sym_RPAREN] = ACTIONS(2635), + [anon_sym_SEMI_SEMI] = ACTIONS(2635), + [anon_sym_PIPE_AMP] = ACTIONS(2635), + [anon_sym_AMP_AMP] = ACTIONS(2635), + [anon_sym_PIPE_PIPE] = ACTIONS(2635), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2635), + [anon_sym_LF] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2635), + }, + [1031] = { + [sym_case_item] = STATE(736), + [sym_concatenation] = STATE(737), + [sym_string] = STATE(733), + [sym_simple_expansion] = STATE(733), + [sym_expansion] = STATE(733), + [sym_command_substitution] = STATE(733), + [sym_process_substitution] = STATE(733), + [aux_sym_case_statement_repeat1] = STATE(1016), + [sym_word] = ACTIONS(1426), + [anon_sym_esac] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1430), + }, + [1032] = { + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_RPAREN] = ACTIONS(2639), + [anon_sym_SEMI_SEMI] = ACTIONS(2639), + [anon_sym_PIPE_AMP] = ACTIONS(2639), + [anon_sym_AMP_AMP] = ACTIONS(2639), + [anon_sym_PIPE_PIPE] = ACTIONS(2639), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2639), + [anon_sym_LF] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2639), + }, + [1033] = { + [aux_sym_concatenation_repeat1] = STATE(1037), + [sym__concat] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), + }, + [1034] = { + [aux_sym_concatenation_repeat1] = STATE(1052), + [sym__concat] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + }, + [1035] = { + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), + }, + [1036] = { + [sym_string] = STATE(1279), + [sym_simple_expansion] = STATE(1279), + [sym_expansion] = STATE(1279), + [sym_command_substitution] = STATE(1279), + [sym_process_substitution] = STATE(1279), + [sym_word] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym_raw_string] = ACTIONS(2641), + [anon_sym_DOLLAR] = ACTIONS(1477), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1479), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1481), + [anon_sym_BQUOTE] = ACTIONS(1483), + [anon_sym_LT_LPAREN] = ACTIONS(1485), + [anon_sym_GT_LPAREN] = ACTIONS(1485), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2643), }, [1037] = { - [aux_sym_case_item_repeat1] = STATE(1257), - [anon_sym_PIPE] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2671), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(1281), + [sym__concat] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_SEMI_SEMI] = ACTIONS(284), + [anon_sym_PIPE_AMP] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_LF] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(284), }, [1038] = { - [aux_sym_concatenation_repeat1] = STATE(1258), - [sym__concat] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(474), - [sym_comment] = ACTIONS(52), + [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(64), + [anon_sym_SEMI] = ACTIONS(448), + [anon_sym_LF] = ACTIONS(448), + [anon_sym_AMP] = ACTIONS(448), }, [1039] = { - [anon_sym_PIPE] = ACTIONS(2673), - [anon_sym_RPAREN] = ACTIONS(2673), - [anon_sym_SEMI_SEMI] = ACTIONS(2673), - [anon_sym_PIPE_AMP] = ACTIONS(2673), - [anon_sym_AMP_AMP] = ACTIONS(2673), - [anon_sym_PIPE_PIPE] = ACTIONS(2673), + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(291), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2673), - [anon_sym_LF] = ACTIONS(2673), - [anon_sym_AMP] = ACTIONS(2673), }, [1040] = { - [sym_case_item] = STATE(763), - [sym_concatenation] = STATE(764), - [sym_string] = STATE(762), - [sym_simple_expansion] = STATE(762), - [sym_expansion] = STATE(762), - [sym_command_substitution] = STATE(762), - [sym_process_substitution] = STATE(762), - [aux_sym_case_statement_repeat1] = STATE(1040), - [anon_sym_esac] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2677), - [sym_raw_string] = ACTIONS(2680), - [anon_sym_DOLLAR] = ACTIONS(2683), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2686), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2689), - [anon_sym_BQUOTE] = ACTIONS(2692), - [anon_sym_LT_LPAREN] = ACTIONS(2695), - [anon_sym_GT_LPAREN] = ACTIONS(2695), - [sym_word] = ACTIONS(2698), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(466), + [anon_sym_PIPE] = ACTIONS(468), + [anon_sym_RPAREN] = ACTIONS(468), + [anon_sym_SEMI_SEMI] = ACTIONS(468), + [anon_sym_PIPE_AMP] = ACTIONS(468), + [anon_sym_AMP_AMP] = ACTIONS(468), + [anon_sym_PIPE_PIPE] = ACTIONS(468), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(468), + [anon_sym_LF] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(468), }, [1041] = { - [sym_case_item] = STATE(763), - [sym_concatenation] = STATE(764), - [sym_string] = STATE(762), - [sym_simple_expansion] = STATE(762), - [sym_expansion] = STATE(762), - [sym_command_substitution] = STATE(762), - [sym_process_substitution] = STATE(762), - [aux_sym_case_statement_repeat1] = STATE(1040), - [anon_sym_esac] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(282), - [sym_raw_string] = ACTIONS(1498), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_word] = ACTIONS(1500), - [sym_comment] = ACTIONS(52), + [sym__concat] = 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(64), + [anon_sym_SEMI] = ACTIONS(472), + [anon_sym_LF] = ACTIONS(472), + [anon_sym_AMP] = ACTIONS(472), }, [1042] = { - [anon_sym_RBRACK] = ACTIONS(2703), - [sym_comment] = ACTIONS(52), - }, - [1043] = { - [anon_sym_RBRACK] = ACTIONS(2705), - [sym_comment] = ACTIONS(52), - }, - [1044] = { - [anon_sym_RBRACE] = ACTIONS(2707), - [sym_comment] = ACTIONS(52), - }, - [1045] = { - [sym__concat] = ACTIONS(2351), - [anon_sym_in] = ACTIONS(2353), - [anon_sym_SEMI_SEMI] = ACTIONS(2353), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_LF] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2353), - }, - [1046] = { - [anon_sym_RBRACE] = ACTIONS(2709), - [sym_comment] = ACTIONS(52), - }, - [1047] = { - [sym__concat] = ACTIONS(2357), - [anon_sym_in] = ACTIONS(2359), - [anon_sym_SEMI_SEMI] = ACTIONS(2359), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2359), - [anon_sym_LF] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - }, - [1048] = { - [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(64), - [anon_sym_SEMI] = ACTIONS(2711), - [anon_sym_LF] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(2711), - }, - [1049] = { - [aux_sym_concatenation_repeat1] = STATE(1054), - [sym__concat] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(1973), - [anon_sym_SEMI_SEMI] = ACTIONS(1973), - [anon_sym_PIPE_AMP] = ACTIONS(1973), - [anon_sym_AMP_AMP] = ACTIONS(1973), - [anon_sym_PIPE_PIPE] = ACTIONS(1973), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_LF] = ACTIONS(1973), - [anon_sym_AMP] = ACTIONS(1973), - }, - [1050] = { - [anon_sym_PIPE] = ACTIONS(1973), - [anon_sym_RPAREN] = ACTIONS(1973), - [anon_sym_SEMI_SEMI] = ACTIONS(1973), - [anon_sym_PIPE_AMP] = ACTIONS(1973), - [anon_sym_AMP_AMP] = ACTIONS(1973), - [anon_sym_PIPE_PIPE] = ACTIONS(1973), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_LF] = ACTIONS(1973), - [anon_sym_AMP] = ACTIONS(1973), - }, - [1051] = { - [sym__concat] = ACTIONS(450), - [anon_sym_PIPE] = ACTIONS(452), - [anon_sym_RPAREN] = ACTIONS(452), - [anon_sym_SEMI_SEMI] = ACTIONS(452), - [anon_sym_PIPE_AMP] = ACTIONS(452), - [anon_sym_AMP_AMP] = ACTIONS(452), - [anon_sym_PIPE_PIPE] = ACTIONS(452), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(452), - [anon_sym_LF] = ACTIONS(452), - [anon_sym_AMP] = ACTIONS(452), - }, - [1052] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(298), - [anon_sym_DQUOTE] = ACTIONS(2713), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), - }, - [1053] = { - [sym_string] = STATE(1265), - [sym_simple_expansion] = STATE(1265), - [sym_expansion] = STATE(1265), - [sym_command_substitution] = STATE(1265), - [sym_process_substitution] = STATE(1265), - [anon_sym_DQUOTE] = ACTIONS(1539), - [sym_raw_string] = ACTIONS(2715), - [anon_sym_DOLLAR] = ACTIONS(1543), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1547), - [anon_sym_BQUOTE] = ACTIONS(1549), - [anon_sym_LT_LPAREN] = ACTIONS(1551), - [anon_sym_GT_LPAREN] = ACTIONS(1551), - [sym_word] = ACTIONS(2717), - [sym_comment] = ACTIONS(52), - }, - [1054] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(2239), - [anon_sym_PIPE] = 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(64), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_LF] = ACTIONS(476), - [anon_sym_AMP] = ACTIONS(476), - }, - [1055] = { - [sym__concat] = ACTIONS(322), - [anon_sym_PIPE] = ACTIONS(478), - [anon_sym_RPAREN] = ACTIONS(478), - [anon_sym_SEMI_SEMI] = ACTIONS(478), - [anon_sym_PIPE_AMP] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(478), - [anon_sym_PIPE_PIPE] = ACTIONS(478), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_LF] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(478), - }, - [1056] = { - [sym__concat] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(482), - [anon_sym_RPAREN] = ACTIONS(482), - [anon_sym_SEMI_SEMI] = ACTIONS(482), - [anon_sym_PIPE_AMP] = ACTIONS(482), - [anon_sym_AMP_AMP] = ACTIONS(482), - [anon_sym_PIPE_PIPE] = ACTIONS(482), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(482), - [anon_sym_LF] = ACTIONS(482), - [anon_sym_AMP] = ACTIONS(482), - }, - [1057] = { - [sym__concat] = ACTIONS(484), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_RPAREN] = ACTIONS(486), - [anon_sym_SEMI_SEMI] = ACTIONS(486), - [anon_sym_PIPE_AMP] = ACTIONS(486), - [anon_sym_AMP_AMP] = ACTIONS(486), - [anon_sym_PIPE_PIPE] = ACTIONS(486), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(486), - [anon_sym_LF] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(486), - }, - [1058] = { - [sym_special_variable_name] = STATE(1268), - [anon_sym_RBRACE] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(62), - [anon_sym_AT] = ACTIONS(62), - [anon_sym_COLON] = ACTIONS(324), - [anon_sym_COLON_QMARK] = ACTIONS(322), - [anon_sym_COLON_DASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(2719), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), - }, - [1059] = { - [anon_sym_RBRACE] = ACTIONS(2721), - [anon_sym_LBRACK] = ACTIONS(2723), - [anon_sym_EQ] = ACTIONS(2725), - [anon_sym_COLON] = ACTIONS(2727), - [anon_sym_COLON_QMARK] = ACTIONS(2725), - [anon_sym_COLON_DASH] = ACTIONS(2725), - [anon_sym_PERCENT] = ACTIONS(2725), - [anon_sym_SLASH] = ACTIONS(2725), - [sym_comment] = ACTIONS(52), - }, - [1060] = { - [anon_sym_RBRACE] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2731), - [anon_sym_EQ] = ACTIONS(2733), - [anon_sym_COLON] = ACTIONS(2735), - [anon_sym_COLON_QMARK] = ACTIONS(2733), - [anon_sym_COLON_DASH] = ACTIONS(2733), - [anon_sym_PERCENT] = ACTIONS(2733), - [anon_sym_SLASH] = ACTIONS(2733), - [sym_comment] = ACTIONS(52), - }, - [1061] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2737), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), - }, - [1062] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2737), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [1063] = { - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_BQUOTE] = ACTIONS(2737), - [sym_comment] = ACTIONS(52), - }, - [1064] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(2737), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [1065] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2739), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), - }, - [1066] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2739), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [1067] = { - [aux_sym_concatenation_repeat1] = STATE(1067), - [sym_file_descriptor] = ACTIONS(1101), - [sym__concat] = ACTIONS(2108), - [sym_variable_name] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1103), - [anon_sym_SEMI_SEMI] = ACTIONS(1103), - [anon_sym_PIPE_AMP] = ACTIONS(1103), - [anon_sym_AMP_AMP] = ACTIONS(1103), - [anon_sym_PIPE_PIPE] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1103), - [anon_sym_GT] = ACTIONS(1103), - [anon_sym_GT_GT] = ACTIONS(1103), - [anon_sym_AMP_GT] = ACTIONS(1103), - [anon_sym_AMP_GT_GT] = ACTIONS(1103), - [anon_sym_LT_AMP] = ACTIONS(1103), - [anon_sym_GT_AMP] = ACTIONS(1103), - [anon_sym_DQUOTE] = ACTIONS(1103), - [sym_raw_string] = ACTIONS(1103), - [anon_sym_DOLLAR] = ACTIONS(1103), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1103), - [anon_sym_BQUOTE] = ACTIONS(1103), - [anon_sym_LT_LPAREN] = ACTIONS(1103), - [anon_sym_GT_LPAREN] = ACTIONS(1103), - [sym_word] = ACTIONS(1103), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_LF] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1103), - }, - [1068] = { - [sym_file_redirect] = STATE(1048), - [sym_file_descriptor] = ACTIONS(1559), - [anon_sym_PIPE] = ACTIONS(2227), - [anon_sym_RPAREN] = ACTIONS(2227), - [anon_sym_SEMI_SEMI] = ACTIONS(2227), - [anon_sym_PIPE_AMP] = ACTIONS(2227), - [anon_sym_AMP_AMP] = ACTIONS(2227), - [anon_sym_PIPE_PIPE] = ACTIONS(2227), - [anon_sym_LT] = ACTIONS(1561), - [anon_sym_GT] = ACTIONS(1561), - [anon_sym_GT_GT] = ACTIONS(1561), - [anon_sym_AMP_GT] = ACTIONS(1561), - [anon_sym_AMP_GT_GT] = ACTIONS(1561), - [anon_sym_LT_AMP] = ACTIONS(1561), - [anon_sym_GT_AMP] = ACTIONS(1561), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2227), - [anon_sym_LF] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(2227), - }, - [1069] = { - [sym_concatenation] = STATE(1050), - [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_DQUOTE] = ACTIONS(1539), - [sym_raw_string] = ACTIONS(2741), - [anon_sym_DOLLAR] = ACTIONS(1543), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1547), - [anon_sym_BQUOTE] = ACTIONS(1549), - [anon_sym_LT_LPAREN] = ACTIONS(1551), - [anon_sym_GT_LPAREN] = ACTIONS(1551), - [sym_word] = ACTIONS(2743), - [sym_comment] = ACTIONS(52), - }, - [1070] = { - [aux_sym_concatenation_repeat1] = STATE(1278), - [sym__concat] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_RPAREN] = ACTIONS(1290), - [anon_sym_SEMI_SEMI] = ACTIONS(1290), - [anon_sym_PIPE_AMP] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - }, - [1071] = { - [aux_sym_concatenation_repeat1] = STATE(1279), - [sym__concat] = ACTIONS(1653), - [sym_variable_name] = ACTIONS(474), + [sym__concat] = ACTIONS(474), [anon_sym_PIPE] = ACTIONS(476), [anon_sym_RPAREN] = ACTIONS(476), [anon_sym_SEMI_SEMI] = ACTIONS(476), @@ -27540,4167 +26667,5696 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(476), [anon_sym_PIPE_PIPE] = ACTIONS(476), [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(476), [anon_sym_SEMI] = ACTIONS(476), [anon_sym_LF] = ACTIONS(476), [anon_sym_AMP] = ACTIONS(476), }, - [1072] = { - [aux_sym_concatenation_repeat1] = STATE(1072), - [sym_file_descriptor] = ACTIONS(1101), - [sym__concat] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1103), - [anon_sym_SEMI_SEMI] = ACTIONS(1103), - [anon_sym_PIPE_AMP] = ACTIONS(1103), - [anon_sym_AMP_AMP] = ACTIONS(1103), - [anon_sym_PIPE_PIPE] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1103), - [anon_sym_GT] = ACTIONS(1103), - [anon_sym_GT_GT] = ACTIONS(1103), - [anon_sym_AMP_GT] = ACTIONS(1103), - [anon_sym_AMP_GT_GT] = ACTIONS(1103), - [anon_sym_LT_AMP] = ACTIONS(1103), - [anon_sym_GT_AMP] = ACTIONS(1103), - [anon_sym_LT_LT] = ACTIONS(1103), - [anon_sym_LT_LT_DASH] = ACTIONS(1103), + [1043] = { + [sym_special_variable_name] = STATE(1284), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(466), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(478), + [anon_sym_COLON_QMARK] = ACTIONS(466), + [anon_sym_COLON_DASH] = ACTIONS(466), + [anon_sym_PERCENT] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(466), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_LF] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1103), + [sym_identifier] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + }, + [1044] = { + [anon_sym_RBRACE] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2651), + [anon_sym_EQ] = ACTIONS(2653), + [anon_sym_COLON] = ACTIONS(2655), + [anon_sym_COLON_QMARK] = ACTIONS(2653), + [anon_sym_COLON_DASH] = ACTIONS(2653), + [anon_sym_PERCENT] = ACTIONS(2653), + [anon_sym_SLASH] = ACTIONS(2653), + [sym_comment] = ACTIONS(50), + }, + [1045] = { + [anon_sym_RBRACE] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_EQ] = ACTIONS(2661), + [anon_sym_COLON] = ACTIONS(2663), + [anon_sym_COLON_QMARK] = ACTIONS(2661), + [anon_sym_COLON_DASH] = ACTIONS(2661), + [anon_sym_PERCENT] = ACTIONS(2661), + [anon_sym_SLASH] = ACTIONS(2661), + [sym_comment] = ACTIONS(50), + }, + [1046] = { + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(2665), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), + }, + [1047] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(2665), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [1048] = { + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_BQUOTE] = ACTIONS(2665), + [sym_comment] = ACTIONS(50), + }, + [1049] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(2665), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [1050] = { + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(2667), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), + }, + [1051] = { + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(2667), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), + }, + [1052] = { + [aux_sym_concatenation_repeat1] = STATE(1281), + [sym__concat] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(598), + [anon_sym_SEMI_SEMI] = ACTIONS(598), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(598), + [anon_sym_PIPE_PIPE] = ACTIONS(598), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(598), + [anon_sym_LF] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(598), + }, + [1053] = { + [aux_sym_concatenation_repeat1] = STATE(1053), + [sym_file_descriptor] = ACTIONS(731), + [sym_word] = ACTIONS(731), + [sym__concat] = ACTIONS(1967), + [sym_variable_name] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(733), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(733), + [anon_sym_LT_AMP] = ACTIONS(733), + [anon_sym_GT_AMP] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [sym_raw_string] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(733), + [anon_sym_AMP] = ACTIONS(733), + }, + [1054] = { + [sym_file_redirect] = STATE(1032), + [sym_file_descriptor] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_RPAREN] = ACTIONS(2120), + [anon_sym_SEMI_SEMI] = ACTIONS(2120), + [anon_sym_PIPE_AMP] = ACTIONS(2120), + [anon_sym_AMP_AMP] = ACTIONS(2120), + [anon_sym_PIPE_PIPE] = ACTIONS(2120), + [anon_sym_LT] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1495), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_AMP_GT] = ACTIONS(1495), + [anon_sym_AMP_GT_GT] = ACTIONS(1495), + [anon_sym_LT_AMP] = ACTIONS(1495), + [anon_sym_GT_AMP] = ACTIONS(1495), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_LF] = ACTIONS(2120), + [anon_sym_AMP] = ACTIONS(2120), + }, + [1055] = { + [sym_concatenation] = STATE(1035), + [sym_string] = STATE(1293), + [sym_simple_expansion] = STATE(1293), + [sym_expansion] = STATE(1293), + [sym_command_substitution] = STATE(1293), + [sym_process_substitution] = STATE(1293), + [sym_word] = ACTIONS(2669), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym_raw_string] = ACTIONS(2669), + [anon_sym_DOLLAR] = ACTIONS(1477), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1479), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1481), + [anon_sym_BQUOTE] = ACTIONS(1483), + [anon_sym_LT_LPAREN] = ACTIONS(1485), + [anon_sym_GT_LPAREN] = ACTIONS(1485), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2671), + }, + [1056] = { + [aux_sym_concatenation_repeat1] = STATE(1295), + [sym__concat] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(1228), + [anon_sym_RPAREN] = ACTIONS(1228), + [anon_sym_SEMI_SEMI] = ACTIONS(1228), + [anon_sym_PIPE_AMP] = ACTIONS(1228), + [anon_sym_AMP_AMP] = ACTIONS(1228), + [anon_sym_PIPE_PIPE] = ACTIONS(1228), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1228), + [anon_sym_LF] = ACTIONS(1228), + [anon_sym_AMP] = ACTIONS(1228), + }, + [1057] = { + [aux_sym_concatenation_repeat1] = STATE(1296), + [sym__concat] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_RPAREN] = ACTIONS(1242), + [anon_sym_SEMI_SEMI] = ACTIONS(1242), + [anon_sym_PIPE_AMP] = ACTIONS(1242), + [anon_sym_AMP_AMP] = ACTIONS(1242), + [anon_sym_PIPE_PIPE] = ACTIONS(1242), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_LF] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + }, + [1058] = { + [aux_sym_concatenation_repeat1] = STATE(1297), + [sym_word] = ACTIONS(282), + [sym__concat] = ACTIONS(1566), + [sym_variable_name] = ACTIONS(282), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_RPAREN] = ACTIONS(284), + [anon_sym_SEMI_SEMI] = ACTIONS(284), + [anon_sym_PIPE_AMP] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_LF] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(284), + }, + [1059] = { + [aux_sym_concatenation_repeat1] = STATE(1297), + [sym_word] = ACTIONS(596), + [sym__concat] = ACTIONS(1566), + [sym_variable_name] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(598), + [anon_sym_RPAREN] = ACTIONS(598), + [anon_sym_SEMI_SEMI] = ACTIONS(598), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(598), + [anon_sym_PIPE_PIPE] = ACTIONS(598), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(598), + [anon_sym_SEMI] = ACTIONS(598), + [anon_sym_LF] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(598), + }, + [1060] = { + [aux_sym_concatenation_repeat1] = STATE(1060), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_GT_GT] = ACTIONS(733), + [anon_sym_AMP_GT] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(733), + [anon_sym_LT_AMP] = ACTIONS(733), + [anon_sym_GT_AMP] = ACTIONS(733), + [anon_sym_LT_LT] = ACTIONS(733), + [anon_sym_LT_LT_DASH] = ACTIONS(733), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(733), + [anon_sym_AMP] = ACTIONS(733), + }, + [1061] = { + [anon_sym_RBRACK] = ACTIONS(2673), + [sym_comment] = ACTIONS(50), + }, + [1062] = { + [anon_sym_RBRACK] = ACTIONS(2675), + [sym_comment] = ACTIONS(50), + }, + [1063] = { + [anon_sym_RBRACE] = ACTIONS(2677), + [sym_comment] = ACTIONS(50), + }, + [1064] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2677), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1065] = { + [sym_word] = ACTIONS(2268), + [sym__concat] = ACTIONS(2268), + [anon_sym_RPAREN] = ACTIONS(2268), + [anon_sym_RBRACK] = ACTIONS(2679), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2268), + [anon_sym_DQUOTE] = ACTIONS(2268), + [sym_raw_string] = ACTIONS(2268), + [anon_sym_DOLLAR] = ACTIONS(2679), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2268), + [anon_sym_BQUOTE] = ACTIONS(2268), + [anon_sym_LT_LPAREN] = ACTIONS(2268), + [anon_sym_GT_LPAREN] = ACTIONS(2268), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2679), + }, + [1066] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2681), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1067] = { + [sym_word] = ACTIONS(2274), + [sym__concat] = ACTIONS(2274), + [anon_sym_RPAREN] = ACTIONS(2274), + [anon_sym_RBRACK] = ACTIONS(2683), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_raw_string] = ACTIONS(2274), + [anon_sym_DOLLAR] = ACTIONS(2683), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2274), + [anon_sym_BQUOTE] = ACTIONS(2274), + [anon_sym_LT_LPAREN] = ACTIONS(2274), + [anon_sym_GT_LPAREN] = ACTIONS(2274), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2683), + }, + [1068] = { + [anon_sym_RBRACE] = ACTIONS(2685), + [sym_comment] = ACTIONS(50), + }, + [1069] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1070] = { + [sym_word] = ACTIONS(2280), + [sym__concat] = ACTIONS(2280), + [anon_sym_RPAREN] = ACTIONS(2280), + [anon_sym_RBRACK] = ACTIONS(2687), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2280), + [anon_sym_DQUOTE] = ACTIONS(2280), + [sym_raw_string] = ACTIONS(2280), + [anon_sym_DOLLAR] = ACTIONS(2687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2280), + [anon_sym_BQUOTE] = ACTIONS(2280), + [anon_sym_LT_LPAREN] = ACTIONS(2280), + [anon_sym_GT_LPAREN] = ACTIONS(2280), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2687), + }, + [1071] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2689), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1072] = { + [sym_word] = ACTIONS(2286), + [sym__concat] = ACTIONS(2286), + [anon_sym_RPAREN] = ACTIONS(2286), + [anon_sym_RBRACK] = ACTIONS(2691), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [sym_raw_string] = ACTIONS(2286), + [anon_sym_DOLLAR] = ACTIONS(2691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2286), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2286), + [anon_sym_LT_LPAREN] = ACTIONS(2286), + [anon_sym_GT_LPAREN] = ACTIONS(2286), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2691), }, [1073] = { - [anon_sym_RBRACK] = ACTIONS(2745), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(731), + [sym__concat] = ACTIONS(731), + [sym_variable_name] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(733), + [anon_sym_AMP] = ACTIONS(733), }, [1074] = { - [anon_sym_RBRACK] = ACTIONS(2747), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(735), + [sym__concat] = ACTIONS(735), + [sym_variable_name] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_RPAREN] = ACTIONS(737), + [anon_sym_SEMI_SEMI] = ACTIONS(737), + [anon_sym_PIPE_AMP] = ACTIONS(737), + [anon_sym_AMP_AMP] = ACTIONS(737), + [anon_sym_PIPE_PIPE] = ACTIONS(737), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(737), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(737), + [anon_sym_AMP] = ACTIONS(737), }, [1075] = { - [anon_sym_RBRACE] = ACTIONS(2749), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(1075), + [sym_word] = ACTIONS(731), + [sym__concat] = ACTIONS(2693), + [sym_variable_name] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(733), + [anon_sym_AMP] = ACTIONS(733), }, [1076] = { - [sym__concat] = ACTIONS(2351), - [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym_RBRACK] = ACTIONS(2751), - [anon_sym_DQUOTE] = ACTIONS(2351), - [sym_raw_string] = ACTIONS(2351), - [anon_sym_DOLLAR] = ACTIONS(2751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2351), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2351), - [anon_sym_BQUOTE] = ACTIONS(2351), - [anon_sym_LT_LPAREN] = ACTIONS(2351), - [anon_sym_GT_LPAREN] = ACTIONS(2351), - [sym_word] = ACTIONS(2353), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(1970), + [sym_variable_name] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_RPAREN] = ACTIONS(1972), + [anon_sym_SEMI_SEMI] = ACTIONS(1972), + [anon_sym_PIPE_AMP] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1972), + [anon_sym_PIPE_PIPE] = ACTIONS(1972), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1972), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_LF] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(1972), }, [1077] = { - [anon_sym_RBRACE] = ACTIONS(2753), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(1037), + [sym__concat] = ACTIONS(1037), + [sym_variable_name] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1039), + [anon_sym_SEMI_SEMI] = ACTIONS(1039), + [anon_sym_PIPE_AMP] = ACTIONS(1039), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_AMP] = ACTIONS(1039), }, [1078] = { - [sym__concat] = ACTIONS(2357), - [anon_sym_RBRACE] = ACTIONS(2357), - [anon_sym_RBRACK] = ACTIONS(2755), - [anon_sym_DQUOTE] = ACTIONS(2357), - [sym_raw_string] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2755), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2357), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2357), - [anon_sym_BQUOTE] = ACTIONS(2357), - [anon_sym_LT_LPAREN] = ACTIONS(2357), - [anon_sym_GT_LPAREN] = ACTIONS(2357), - [sym_word] = ACTIONS(2359), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(2696), + [anon_sym_LBRACK] = ACTIONS(2698), + [sym_comment] = ACTIONS(50), }, [1079] = { - [anon_sym_RBRACK] = ACTIONS(2757), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(2700), + [anon_sym_LBRACK] = ACTIONS(2702), + [sym_comment] = ACTIONS(50), }, [1080] = { - [anon_sym_RBRACK] = ACTIONS(2759), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(1066), + [sym__concat] = ACTIONS(1066), + [sym_variable_name] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_RPAREN] = ACTIONS(1068), + [anon_sym_SEMI_SEMI] = ACTIONS(1068), + [anon_sym_PIPE_AMP] = ACTIONS(1068), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE_PIPE] = ACTIONS(1068), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_LF] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1068), }, [1081] = { - [anon_sym_RBRACE] = ACTIONS(2761), - [sym_comment] = ACTIONS(52), + [anon_sym_AT] = ACTIONS(2704), + [sym_comment] = ACTIONS(50), }, [1082] = { - [sym__concat] = ACTIONS(2351), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2751), - [anon_sym_DQUOTE] = ACTIONS(2351), - [sym_raw_string] = ACTIONS(2351), - [anon_sym_DOLLAR] = ACTIONS(2751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2351), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2351), - [anon_sym_BQUOTE] = ACTIONS(2351), - [anon_sym_LT_LPAREN] = ACTIONS(2351), - [anon_sym_GT_LPAREN] = ACTIONS(2351), - [sym_word] = ACTIONS(2353), - [sym_comment] = ACTIONS(52), + [sym_concatenation] = STATE(1312), + [sym_string] = STATE(1309), + [sym_simple_expansion] = STATE(1309), + [sym_expansion] = STATE(1309), + [sym_command_substitution] = STATE(1309), + [sym_process_substitution] = STATE(1309), + [sym_word] = ACTIONS(2706), + [anon_sym_RBRACE] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(2706), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2710), }, [1083] = { - [anon_sym_RBRACE] = ACTIONS(2763), - [sym_comment] = ACTIONS(52), - }, - [1084] = { - [sym__concat] = ACTIONS(2357), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2755), - [anon_sym_DQUOTE] = ACTIONS(2357), - [sym_raw_string] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2755), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2357), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2357), - [anon_sym_BQUOTE] = ACTIONS(2357), - [anon_sym_LT_LPAREN] = ACTIONS(2357), - [anon_sym_GT_LPAREN] = ACTIONS(2357), - [sym_word] = ACTIONS(2359), - [sym_comment] = ACTIONS(52), - }, - [1085] = { - [sym_variable_name] = ACTIONS(2080), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_SEMI_SEMI] = ACTIONS(2082), - [anon_sym_PIPE_AMP] = ACTIONS(2082), - [anon_sym_AMP_AMP] = ACTIONS(2082), - [anon_sym_PIPE_PIPE] = ACTIONS(2082), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_LF] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - }, - [1086] = { - [sym__concat] = ACTIONS(1080), - [sym_variable_name] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1082), - [anon_sym_RPAREN] = ACTIONS(1082), - [anon_sym_SEMI_SEMI] = ACTIONS(1082), - [anon_sym_PIPE_AMP] = ACTIONS(1082), - [anon_sym_AMP_AMP] = ACTIONS(1082), - [anon_sym_PIPE_PIPE] = ACTIONS(1082), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_LF] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - }, - [1087] = { - [sym__concat] = ACTIONS(1101), - [sym_variable_name] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1103), - [anon_sym_SEMI_SEMI] = ACTIONS(1103), - [anon_sym_PIPE_AMP] = ACTIONS(1103), - [anon_sym_AMP_AMP] = ACTIONS(1103), - [anon_sym_PIPE_PIPE] = ACTIONS(1103), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1103), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_LF] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1103), - }, - [1088] = { - [aux_sym_concatenation_repeat1] = STATE(1088), - [sym__concat] = ACTIONS(2765), - [sym_variable_name] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_SEMI_SEMI] = ACTIONS(1103), - [anon_sym_PIPE_AMP] = ACTIONS(1103), - [anon_sym_AMP_AMP] = ACTIONS(1103), - [anon_sym_PIPE_PIPE] = ACTIONS(1103), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1103), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_LF] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1103), - }, - [1089] = { - [anon_sym_RBRACE] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2770), - [sym_comment] = ACTIONS(52), - }, - [1090] = { - [anon_sym_RBRACE] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2774), - [sym_comment] = ACTIONS(52), - }, - [1091] = { - [sym__concat] = ACTIONS(1116), - [sym_variable_name] = ACTIONS(1116), - [anon_sym_PIPE] = ACTIONS(1118), - [anon_sym_RPAREN] = ACTIONS(1118), - [anon_sym_SEMI_SEMI] = ACTIONS(1118), - [anon_sym_PIPE_AMP] = ACTIONS(1118), - [anon_sym_AMP_AMP] = ACTIONS(1118), - [anon_sym_PIPE_PIPE] = ACTIONS(1118), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_LF] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - }, - [1092] = { - [anon_sym_AT] = ACTIONS(2776), - [sym_comment] = ACTIONS(52), - }, - [1093] = { - [sym_concatenation] = STATE(1295), - [sym_string] = STATE(1294), - [sym_simple_expansion] = STATE(1294), - [sym_expansion] = STATE(1294), - [sym_command_substitution] = STATE(1294), - [sym_process_substitution] = STATE(1294), - [anon_sym_RBRACE] = ACTIONS(2778), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(2780), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(2782), - [sym_comment] = ACTIONS(52), - }, - [1094] = { - [sym__concat] = ACTIONS(1128), - [sym_variable_name] = ACTIONS(1128), - [anon_sym_PIPE] = ACTIONS(1130), - [anon_sym_RPAREN] = ACTIONS(1130), - [anon_sym_SEMI_SEMI] = ACTIONS(1130), - [anon_sym_PIPE_AMP] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1130), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1130), - [anon_sym_SEMI] = ACTIONS(1130), - [anon_sym_LF] = ACTIONS(1130), - [anon_sym_AMP] = ACTIONS(1130), - }, - [1095] = { - [anon_sym_AT] = ACTIONS(2784), - [sym_comment] = ACTIONS(52), - }, - [1096] = { - [sym_concatenation] = STATE(1298), - [sym_string] = STATE(1297), - [sym_simple_expansion] = STATE(1297), - [sym_expansion] = STATE(1297), - [sym_command_substitution] = STATE(1297), - [sym_process_substitution] = STATE(1297), - [anon_sym_RBRACE] = ACTIONS(2772), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(2786), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(2788), - [sym_comment] = ACTIONS(52), - }, - [1097] = { - [sym__concat] = ACTIONS(1222), - [sym_variable_name] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1224), - [anon_sym_SEMI_SEMI] = ACTIONS(1224), - [anon_sym_PIPE_AMP] = ACTIONS(1224), - [anon_sym_AMP_AMP] = ACTIONS(1224), - [anon_sym_PIPE_PIPE] = ACTIONS(1224), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1224), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym_LF] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - }, - [1098] = { - [sym__concat] = ACTIONS(1274), - [sym_variable_name] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_RPAREN] = ACTIONS(1276), - [anon_sym_SEMI_SEMI] = ACTIONS(1276), - [anon_sym_PIPE_AMP] = ACTIONS(1276), - [anon_sym_AMP_AMP] = ACTIONS(1276), - [anon_sym_PIPE_PIPE] = ACTIONS(1276), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_LF] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - }, - [1099] = { - [anon_sym_RBRACK] = ACTIONS(2790), - [sym_comment] = ACTIONS(52), - }, - [1100] = { - [anon_sym_RBRACK] = ACTIONS(2792), - [sym_comment] = ACTIONS(52), - }, - [1101] = { - [anon_sym_RBRACE] = ACTIONS(2794), - [sym_comment] = ACTIONS(52), - }, - [1102] = { - [sym_file_descriptor] = ACTIONS(2351), - [sym__concat] = ACTIONS(2351), - [sym_variable_name] = ACTIONS(2351), - [anon_sym_LT] = ACTIONS(2751), - [anon_sym_GT] = ACTIONS(2751), - [anon_sym_GT_GT] = ACTIONS(2351), - [anon_sym_AMP_GT] = ACTIONS(2751), - [anon_sym_AMP_GT_GT] = ACTIONS(2351), - [anon_sym_LT_AMP] = ACTIONS(2351), - [anon_sym_GT_AMP] = ACTIONS(2351), - [anon_sym_DQUOTE] = ACTIONS(2351), - [sym_raw_string] = ACTIONS(2351), - [anon_sym_DOLLAR] = ACTIONS(2751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2351), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2351), - [anon_sym_BQUOTE] = ACTIONS(2351), - [anon_sym_LT_LPAREN] = ACTIONS(2351), - [anon_sym_GT_LPAREN] = ACTIONS(2351), - [sym_word] = ACTIONS(2751), - [sym_comment] = ACTIONS(52), - }, - [1103] = { - [anon_sym_RBRACE] = ACTIONS(2796), - [sym_comment] = ACTIONS(52), - }, - [1104] = { - [sym_file_descriptor] = ACTIONS(2357), - [sym__concat] = ACTIONS(2357), - [sym_variable_name] = ACTIONS(2357), - [anon_sym_LT] = ACTIONS(2755), - [anon_sym_GT] = ACTIONS(2755), - [anon_sym_GT_GT] = ACTIONS(2357), - [anon_sym_AMP_GT] = ACTIONS(2755), - [anon_sym_AMP_GT_GT] = ACTIONS(2357), - [anon_sym_LT_AMP] = ACTIONS(2357), - [anon_sym_GT_AMP] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2357), - [sym_raw_string] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2755), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2357), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2357), - [anon_sym_BQUOTE] = ACTIONS(2357), - [anon_sym_LT_LPAREN] = ACTIONS(2357), - [anon_sym_GT_LPAREN] = ACTIONS(2357), - [sym_word] = ACTIONS(2755), - [sym_comment] = ACTIONS(52), - }, - [1105] = { - [anon_sym_RBRACK] = ACTIONS(2798), - [sym_comment] = ACTIONS(52), - }, - [1106] = { - [anon_sym_RBRACK] = ACTIONS(2800), - [sym_comment] = ACTIONS(52), - }, - [1107] = { - [anon_sym_RBRACE] = ACTIONS(2802), - [sym_comment] = ACTIONS(52), - }, - [1108] = { - [anon_sym_DQUOTE] = ACTIONS(2353), - [sym__string_content] = ACTIONS(2751), - [anon_sym_DOLLAR] = ACTIONS(2353), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2353), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2353), - [anon_sym_BQUOTE] = ACTIONS(2353), - [sym_comment] = ACTIONS(64), - }, - [1109] = { - [anon_sym_RBRACE] = ACTIONS(2804), - [sym_comment] = ACTIONS(52), - }, - [1110] = { - [anon_sym_DQUOTE] = ACTIONS(2359), - [sym__string_content] = ACTIONS(2755), - [anon_sym_DOLLAR] = ACTIONS(2359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2359), - [anon_sym_BQUOTE] = ACTIONS(2359), - [sym_comment] = ACTIONS(64), - }, - [1111] = { - [anon_sym_RBRACE] = ACTIONS(2806), - [sym_comment] = ACTIONS(52), - }, - [1112] = { - [anon_sym_RBRACE] = ACTIONS(2808), - [sym_comment] = ACTIONS(52), - }, - [1113] = { - [sym_file_descriptor] = ACTIONS(2810), - [sym__concat] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_RPAREN] = ACTIONS(2812), - [anon_sym_SEMI_SEMI] = ACTIONS(2812), - [anon_sym_PIPE_AMP] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_PIPE_PIPE] = ACTIONS(2812), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_GT] = ACTIONS(2812), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_AMP_GT] = ACTIONS(2812), - [anon_sym_AMP_GT_GT] = ACTIONS(2812), - [anon_sym_LT_AMP] = ACTIONS(2812), - [anon_sym_GT_AMP] = ACTIONS(2812), - [anon_sym_LT_LT] = ACTIONS(2812), - [anon_sym_LT_LT_DASH] = ACTIONS(2812), - [anon_sym_DQUOTE] = ACTIONS(2812), - [sym_raw_string] = ACTIONS(2812), - [anon_sym_DOLLAR] = ACTIONS(2812), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2812), - [anon_sym_BQUOTE] = ACTIONS(2812), - [anon_sym_LT_LPAREN] = ACTIONS(2812), - [anon_sym_GT_LPAREN] = ACTIONS(2812), - [sym_word] = ACTIONS(2812), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_LF] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2812), - }, - [1114] = { - [aux_sym_concatenation_repeat1] = STATE(1114), - [sym__concat] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1101), - [sym_comment] = ACTIONS(52), - }, - [1115] = { - [sym_file_descriptor] = ACTIONS(2814), - [sym__concat] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_RPAREN] = ACTIONS(2816), - [anon_sym_SEMI_SEMI] = ACTIONS(2816), - [anon_sym_PIPE_AMP] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_PIPE_PIPE] = ACTIONS(2816), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(2816), - [anon_sym_AMP_GT] = ACTIONS(2816), - [anon_sym_AMP_GT_GT] = ACTIONS(2816), - [anon_sym_LT_AMP] = ACTIONS(2816), - [anon_sym_GT_AMP] = ACTIONS(2816), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_LT_LT_DASH] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(2816), - [anon_sym_DOLLAR] = ACTIONS(2816), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2816), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2816), - [anon_sym_BQUOTE] = ACTIONS(2816), - [anon_sym_LT_LPAREN] = ACTIONS(2816), - [anon_sym_GT_LPAREN] = ACTIONS(2816), - [sym_word] = ACTIONS(2816), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_LF] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), - }, - [1116] = { - [sym_file_descriptor] = ACTIONS(2080), - [sym_variable_name] = ACTIONS(2080), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_RPAREN] = ACTIONS(2080), - [anon_sym_PIPE_AMP] = ACTIONS(2080), - [anon_sym_AMP_AMP] = ACTIONS(2080), - [anon_sym_PIPE_PIPE] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2818), - [anon_sym_GT] = ACTIONS(2818), - [anon_sym_GT_GT] = ACTIONS(2080), - [anon_sym_AMP_GT] = ACTIONS(2818), - [anon_sym_AMP_GT_GT] = ACTIONS(2080), - [anon_sym_LT_AMP] = ACTIONS(2080), - [anon_sym_GT_AMP] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_raw_string] = ACTIONS(2080), - [anon_sym_DOLLAR] = ACTIONS(2818), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2080), - [anon_sym_BQUOTE] = ACTIONS(2080), - [anon_sym_LT_LPAREN] = ACTIONS(2080), - [anon_sym_GT_LPAREN] = ACTIONS(2080), - [sym_word] = ACTIONS(2082), - [sym_comment] = ACTIONS(52), - }, - [1117] = { - [sym_file_descriptor] = ACTIONS(1080), - [sym__concat] = ACTIONS(1080), - [sym_variable_name] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1587), + [sym_word] = ACTIONS(1078), + [sym__concat] = ACTIONS(1078), + [sym_variable_name] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1080), [anon_sym_RPAREN] = ACTIONS(1080), + [anon_sym_SEMI_SEMI] = ACTIONS(1080), [anon_sym_PIPE_AMP] = ACTIONS(1080), [anon_sym_AMP_AMP] = ACTIONS(1080), - [anon_sym_PIPE_PIPE] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_GT] = ACTIONS(1080), - [anon_sym_AMP_GT] = ACTIONS(1587), - [anon_sym_AMP_GT_GT] = ACTIONS(1080), - [anon_sym_LT_AMP] = ACTIONS(1080), - [anon_sym_GT_AMP] = ACTIONS(1080), - [anon_sym_DQUOTE] = ACTIONS(1080), - [sym_raw_string] = ACTIONS(1080), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1080), - [anon_sym_BQUOTE] = ACTIONS(1080), - [anon_sym_LT_LPAREN] = ACTIONS(1080), - [anon_sym_GT_LPAREN] = ACTIONS(1080), - [sym_word] = ACTIONS(1082), - [sym_comment] = ACTIONS(52), + [anon_sym_PIPE_PIPE] = ACTIONS(1080), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_LF] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + }, + [1084] = { + [anon_sym_AT] = ACTIONS(2712), + [sym_comment] = ACTIONS(50), + }, + [1085] = { + [sym_concatenation] = STATE(1316), + [sym_string] = STATE(1314), + [sym_simple_expansion] = STATE(1314), + [sym_expansion] = STATE(1314), + [sym_command_substitution] = STATE(1314), + [sym_process_substitution] = STATE(1314), + [sym_word] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(2700), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(2714), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2716), + }, + [1086] = { + [sym_word] = ACTIONS(1162), + [sym__concat] = ACTIONS(1162), + [sym_variable_name] = ACTIONS(1162), + [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_RPAREN] = ACTIONS(1164), + [anon_sym_SEMI_SEMI] = ACTIONS(1164), + [anon_sym_PIPE_AMP] = ACTIONS(1164), + [anon_sym_AMP_AMP] = ACTIONS(1164), + [anon_sym_PIPE_PIPE] = ACTIONS(1164), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym_LF] = ACTIONS(1164), + [anon_sym_AMP] = ACTIONS(1164), + }, + [1087] = { + [sym_word] = ACTIONS(1214), + [sym__concat] = ACTIONS(1214), + [sym_variable_name] = ACTIONS(1214), + [anon_sym_PIPE] = ACTIONS(1216), + [anon_sym_RPAREN] = ACTIONS(1216), + [anon_sym_SEMI_SEMI] = ACTIONS(1216), + [anon_sym_PIPE_AMP] = ACTIONS(1216), + [anon_sym_AMP_AMP] = ACTIONS(1216), + [anon_sym_PIPE_PIPE] = ACTIONS(1216), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1216), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym_LF] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(1216), + }, + [1088] = { + [anon_sym_RBRACK] = ACTIONS(2718), + [sym_comment] = ACTIONS(50), + }, + [1089] = { + [anon_sym_RBRACK] = ACTIONS(2720), + [sym_comment] = ACTIONS(50), + }, + [1090] = { + [anon_sym_RBRACE] = ACTIONS(2722), + [sym_comment] = ACTIONS(50), + }, + [1091] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2722), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1092] = { + [sym_file_descriptor] = ACTIONS(2268), + [sym_word] = ACTIONS(2268), + [sym__concat] = ACTIONS(2268), + [sym_variable_name] = ACTIONS(2268), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_RPAREN] = ACTIONS(2268), + [anon_sym_PIPE_AMP] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2268), + [anon_sym_PIPE_PIPE] = ACTIONS(2268), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_GT_GT] = ACTIONS(2268), + [anon_sym_AMP_GT] = ACTIONS(2679), + [anon_sym_AMP_GT_GT] = ACTIONS(2268), + [anon_sym_LT_AMP] = ACTIONS(2268), + [anon_sym_GT_AMP] = ACTIONS(2268), + [anon_sym_DQUOTE] = ACTIONS(2268), + [sym_raw_string] = ACTIONS(2268), + [anon_sym_DOLLAR] = ACTIONS(2679), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2268), + [anon_sym_BQUOTE] = ACTIONS(2268), + [anon_sym_LT_LPAREN] = ACTIONS(2268), + [anon_sym_GT_LPAREN] = ACTIONS(2268), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2679), + }, + [1093] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2724), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1094] = { + [sym_file_descriptor] = ACTIONS(2274), + [sym_word] = ACTIONS(2274), + [sym__concat] = ACTIONS(2274), + [sym_variable_name] = ACTIONS(2274), + [anon_sym_PIPE] = ACTIONS(2683), + [anon_sym_RPAREN] = ACTIONS(2274), + [anon_sym_PIPE_AMP] = ACTIONS(2274), + [anon_sym_AMP_AMP] = ACTIONS(2274), + [anon_sym_PIPE_PIPE] = ACTIONS(2274), + [anon_sym_LT] = ACTIONS(2683), + [anon_sym_GT] = ACTIONS(2683), + [anon_sym_GT_GT] = ACTIONS(2274), + [anon_sym_AMP_GT] = ACTIONS(2683), + [anon_sym_AMP_GT_GT] = ACTIONS(2274), + [anon_sym_LT_AMP] = ACTIONS(2274), + [anon_sym_GT_AMP] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_raw_string] = ACTIONS(2274), + [anon_sym_DOLLAR] = ACTIONS(2683), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2274), + [anon_sym_BQUOTE] = ACTIONS(2274), + [anon_sym_LT_LPAREN] = ACTIONS(2274), + [anon_sym_GT_LPAREN] = ACTIONS(2274), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2683), + }, + [1095] = { + [anon_sym_RBRACE] = ACTIONS(2726), + [sym_comment] = ACTIONS(50), + }, + [1096] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2726), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1097] = { + [sym_file_descriptor] = ACTIONS(2280), + [sym_word] = ACTIONS(2280), + [sym__concat] = ACTIONS(2280), + [sym_variable_name] = ACTIONS(2280), + [anon_sym_PIPE] = ACTIONS(2687), + [anon_sym_RPAREN] = ACTIONS(2280), + [anon_sym_PIPE_AMP] = ACTIONS(2280), + [anon_sym_AMP_AMP] = ACTIONS(2280), + [anon_sym_PIPE_PIPE] = ACTIONS(2280), + [anon_sym_LT] = ACTIONS(2687), + [anon_sym_GT] = ACTIONS(2687), + [anon_sym_GT_GT] = ACTIONS(2280), + [anon_sym_AMP_GT] = ACTIONS(2687), + [anon_sym_AMP_GT_GT] = ACTIONS(2280), + [anon_sym_LT_AMP] = ACTIONS(2280), + [anon_sym_GT_AMP] = ACTIONS(2280), + [anon_sym_DQUOTE] = ACTIONS(2280), + [sym_raw_string] = ACTIONS(2280), + [anon_sym_DOLLAR] = ACTIONS(2687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2280), + [anon_sym_BQUOTE] = ACTIONS(2280), + [anon_sym_LT_LPAREN] = ACTIONS(2280), + [anon_sym_GT_LPAREN] = ACTIONS(2280), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2687), + }, + [1098] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2728), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1099] = { + [sym_file_descriptor] = ACTIONS(2286), + [sym_word] = ACTIONS(2286), + [sym__concat] = ACTIONS(2286), + [sym_variable_name] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2691), + [anon_sym_RPAREN] = ACTIONS(2286), + [anon_sym_PIPE_AMP] = ACTIONS(2286), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2691), + [anon_sym_GT] = ACTIONS(2691), + [anon_sym_GT_GT] = ACTIONS(2286), + [anon_sym_AMP_GT] = ACTIONS(2691), + [anon_sym_AMP_GT_GT] = ACTIONS(2286), + [anon_sym_LT_AMP] = ACTIONS(2286), + [anon_sym_GT_AMP] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [sym_raw_string] = ACTIONS(2286), + [anon_sym_DOLLAR] = ACTIONS(2691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2286), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2286), + [anon_sym_LT_LPAREN] = ACTIONS(2286), + [anon_sym_GT_LPAREN] = ACTIONS(2286), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2691), + }, + [1100] = { + [anon_sym_RBRACK] = ACTIONS(2730), + [sym_comment] = ACTIONS(50), + }, + [1101] = { + [anon_sym_RBRACK] = ACTIONS(2732), + [sym_comment] = ACTIONS(50), + }, + [1102] = { + [anon_sym_RBRACE] = ACTIONS(2734), + [sym_comment] = ACTIONS(50), + }, + [1103] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2734), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1104] = { + [anon_sym_DQUOTE] = ACTIONS(2270), + [sym__string_content] = ACTIONS(2679), + [anon_sym_DOLLAR] = ACTIONS(2270), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2270), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2270), + [anon_sym_BQUOTE] = ACTIONS(2270), + [sym_comment] = ACTIONS(64), + }, + [1105] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2736), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1106] = { + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym__string_content] = ACTIONS(2683), + [anon_sym_DOLLAR] = ACTIONS(2276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2276), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2276), + [anon_sym_BQUOTE] = ACTIONS(2276), + [sym_comment] = ACTIONS(64), + }, + [1107] = { + [anon_sym_RBRACE] = ACTIONS(2738), + [sym_comment] = ACTIONS(50), + }, + [1108] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2738), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1109] = { + [anon_sym_DQUOTE] = ACTIONS(2282), + [sym__string_content] = ACTIONS(2687), + [anon_sym_DOLLAR] = ACTIONS(2282), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2282), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2282), + [anon_sym_BQUOTE] = ACTIONS(2282), + [sym_comment] = ACTIONS(64), + }, + [1110] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2740), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1111] = { + [anon_sym_DQUOTE] = ACTIONS(2288), + [sym__string_content] = ACTIONS(2691), + [anon_sym_DOLLAR] = ACTIONS(2288), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2288), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2288), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_comment] = ACTIONS(64), + }, + [1112] = { + [anon_sym_RBRACE] = ACTIONS(2742), + [sym_comment] = ACTIONS(50), + }, + [1113] = { + [anon_sym_RBRACE] = ACTIONS(2744), + [sym_comment] = ACTIONS(50), + }, + [1114] = { + [sym_file_descriptor] = ACTIONS(2746), + [sym_word] = ACTIONS(2746), + [sym__concat] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_RPAREN] = ACTIONS(2748), + [anon_sym_SEMI_SEMI] = ACTIONS(2748), + [anon_sym_PIPE_AMP] = ACTIONS(2748), + [anon_sym_AMP_AMP] = ACTIONS(2748), + [anon_sym_PIPE_PIPE] = ACTIONS(2748), + [anon_sym_LT] = ACTIONS(2748), + [anon_sym_GT] = ACTIONS(2748), + [anon_sym_GT_GT] = ACTIONS(2748), + [anon_sym_AMP_GT] = ACTIONS(2748), + [anon_sym_AMP_GT_GT] = ACTIONS(2748), + [anon_sym_LT_AMP] = ACTIONS(2748), + [anon_sym_GT_AMP] = ACTIONS(2748), + [anon_sym_LT_LT] = ACTIONS(2748), + [anon_sym_LT_LT_DASH] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_raw_string] = ACTIONS(2748), + [anon_sym_DOLLAR] = ACTIONS(2748), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2748), + [anon_sym_BQUOTE] = ACTIONS(2748), + [anon_sym_LT_LPAREN] = ACTIONS(2748), + [anon_sym_GT_LPAREN] = ACTIONS(2748), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2748), + [anon_sym_SEMI] = ACTIONS(2748), + [anon_sym_LF] = ACTIONS(2748), + [anon_sym_AMP] = ACTIONS(2748), + }, + [1115] = { + [aux_sym_concatenation_repeat1] = STATE(1115), + [sym__concat] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(731), + [sym_comment] = ACTIONS(50), + }, + [1116] = { + [sym_file_descriptor] = ACTIONS(2750), + [sym_word] = ACTIONS(2750), + [sym__concat] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_RPAREN] = ACTIONS(2752), + [anon_sym_SEMI_SEMI] = ACTIONS(2752), + [anon_sym_PIPE_AMP] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(2752), + [anon_sym_GT] = ACTIONS(2752), + [anon_sym_GT_GT] = ACTIONS(2752), + [anon_sym_AMP_GT] = ACTIONS(2752), + [anon_sym_AMP_GT_GT] = ACTIONS(2752), + [anon_sym_LT_AMP] = ACTIONS(2752), + [anon_sym_GT_AMP] = ACTIONS(2752), + [anon_sym_LT_LT] = ACTIONS(2752), + [anon_sym_LT_LT_DASH] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [sym_raw_string] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2752), + [anon_sym_BQUOTE] = ACTIONS(2752), + [anon_sym_LT_LPAREN] = ACTIONS(2752), + [anon_sym_GT_LPAREN] = ACTIONS(2752), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2752), + [anon_sym_LF] = ACTIONS(2752), + [anon_sym_AMP] = ACTIONS(2752), + }, + [1117] = { + [sym_file_descriptor] = ACTIONS(2754), + [sym_word] = ACTIONS(2754), + [sym__concat] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_SEMI_SEMI] = ACTIONS(2756), + [anon_sym_PIPE_AMP] = ACTIONS(2756), + [anon_sym_AMP_AMP] = ACTIONS(2756), + [anon_sym_PIPE_PIPE] = ACTIONS(2756), + [anon_sym_LT] = ACTIONS(2756), + [anon_sym_GT] = ACTIONS(2756), + [anon_sym_GT_GT] = ACTIONS(2756), + [anon_sym_AMP_GT] = ACTIONS(2756), + [anon_sym_AMP_GT_GT] = ACTIONS(2756), + [anon_sym_LT_AMP] = ACTIONS(2756), + [anon_sym_GT_AMP] = ACTIONS(2756), + [anon_sym_LT_LT] = ACTIONS(2756), + [anon_sym_LT_LT_DASH] = ACTIONS(2756), + [anon_sym_DQUOTE] = ACTIONS(2756), + [sym_raw_string] = ACTIONS(2756), + [anon_sym_DOLLAR] = ACTIONS(2756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2756), + [anon_sym_BQUOTE] = ACTIONS(2756), + [anon_sym_LT_LPAREN] = ACTIONS(2756), + [anon_sym_GT_LPAREN] = ACTIONS(2756), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2756), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_LF] = ACTIONS(2756), + [anon_sym_AMP] = ACTIONS(2756), }, [1118] = { - [sym_file_descriptor] = ACTIONS(1101), - [sym__concat] = ACTIONS(1101), - [sym_variable_name] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(1101), - [anon_sym_PIPE_AMP] = ACTIONS(1101), - [anon_sym_AMP_AMP] = ACTIONS(1101), - [anon_sym_PIPE_PIPE] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1589), - [anon_sym_GT_GT] = ACTIONS(1101), - [anon_sym_AMP_GT] = ACTIONS(1589), - [anon_sym_AMP_GT_GT] = ACTIONS(1101), - [anon_sym_LT_AMP] = ACTIONS(1101), - [anon_sym_GT_AMP] = ACTIONS(1101), - [anon_sym_DQUOTE] = ACTIONS(1101), - [sym_raw_string] = ACTIONS(1101), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1101), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), - [anon_sym_BQUOTE] = ACTIONS(1101), - [anon_sym_LT_LPAREN] = ACTIONS(1101), - [anon_sym_GT_LPAREN] = ACTIONS(1101), - [sym_word] = ACTIONS(1103), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2758), + [sym_word] = ACTIONS(2758), + [sym__concat] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2760), + [anon_sym_RPAREN] = ACTIONS(2760), + [anon_sym_SEMI_SEMI] = ACTIONS(2760), + [anon_sym_PIPE_AMP] = ACTIONS(2760), + [anon_sym_AMP_AMP] = ACTIONS(2760), + [anon_sym_PIPE_PIPE] = ACTIONS(2760), + [anon_sym_LT] = ACTIONS(2760), + [anon_sym_GT] = ACTIONS(2760), + [anon_sym_GT_GT] = ACTIONS(2760), + [anon_sym_AMP_GT] = ACTIONS(2760), + [anon_sym_AMP_GT_GT] = ACTIONS(2760), + [anon_sym_LT_AMP] = ACTIONS(2760), + [anon_sym_GT_AMP] = ACTIONS(2760), + [anon_sym_LT_LT] = ACTIONS(2760), + [anon_sym_LT_LT_DASH] = ACTIONS(2760), + [anon_sym_DQUOTE] = ACTIONS(2760), + [sym_raw_string] = ACTIONS(2760), + [anon_sym_DOLLAR] = ACTIONS(2760), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2760), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2760), + [anon_sym_BQUOTE] = ACTIONS(2760), + [anon_sym_LT_LPAREN] = ACTIONS(2760), + [anon_sym_GT_LPAREN] = ACTIONS(2760), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2760), + [anon_sym_SEMI] = ACTIONS(2760), + [anon_sym_LF] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2760), }, [1119] = { [aux_sym_concatenation_repeat1] = STATE(1119), - [sym_file_descriptor] = ACTIONS(1101), - [sym__concat] = ACTIONS(2820), - [sym_variable_name] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(1101), - [anon_sym_PIPE_AMP] = ACTIONS(1101), - [anon_sym_AMP_AMP] = ACTIONS(1101), - [anon_sym_PIPE_PIPE] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1589), - [anon_sym_GT_GT] = ACTIONS(1101), - [anon_sym_AMP_GT] = ACTIONS(1589), - [anon_sym_AMP_GT_GT] = ACTIONS(1101), - [anon_sym_LT_AMP] = ACTIONS(1101), - [anon_sym_GT_AMP] = ACTIONS(1101), - [anon_sym_DQUOTE] = ACTIONS(1101), - [sym_raw_string] = ACTIONS(1101), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1101), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), - [anon_sym_BQUOTE] = ACTIONS(1101), - [anon_sym_LT_LPAREN] = ACTIONS(1101), - [anon_sym_GT_LPAREN] = ACTIONS(1101), - [sym_word] = ACTIONS(1103), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(731), + [sym_word] = ACTIONS(731), + [sym__concat] = ACTIONS(1582), + [sym_variable_name] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(1527), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(1527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1527), }, [1120] = { - [anon_sym_RBRACE] = ACTIONS(2823), - [anon_sym_LBRACK] = ACTIONS(2825), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(1970), + [sym_word] = ACTIONS(1970), + [sym_variable_name] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_PIPE_AMP] = ACTIONS(1970), + [anon_sym_AMP_AMP] = ACTIONS(1970), + [anon_sym_PIPE_PIPE] = ACTIONS(1970), + [anon_sym_LT] = ACTIONS(2762), + [anon_sym_GT] = ACTIONS(2762), + [anon_sym_GT_GT] = ACTIONS(1970), + [anon_sym_AMP_GT] = ACTIONS(2762), + [anon_sym_AMP_GT_GT] = ACTIONS(1970), + [anon_sym_LT_AMP] = ACTIONS(1970), + [anon_sym_GT_AMP] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_raw_string] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(2762), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), + [anon_sym_BQUOTE] = ACTIONS(1970), + [anon_sym_LT_LPAREN] = ACTIONS(1970), + [anon_sym_GT_LPAREN] = ACTIONS(1970), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2762), }, [1121] = { - [anon_sym_RBRACE] = ACTIONS(2827), - [anon_sym_LBRACK] = ACTIONS(2829), - [sym_comment] = ACTIONS(52), + [sym_do_group] = STATE(1331), + [anon_sym_do] = ACTIONS(1104), + [sym_comment] = ACTIONS(50), }, [1122] = { - [sym_file_descriptor] = ACTIONS(1116), - [sym__concat] = ACTIONS(1116), - [sym_variable_name] = ACTIONS(1116), - [anon_sym_PIPE] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(1116), - [anon_sym_PIPE_AMP] = ACTIONS(1116), - [anon_sym_AMP_AMP] = ACTIONS(1116), - [anon_sym_PIPE_PIPE] = ACTIONS(1602), - [anon_sym_LT] = ACTIONS(1602), - [anon_sym_GT] = ACTIONS(1602), - [anon_sym_GT_GT] = ACTIONS(1116), - [anon_sym_AMP_GT] = ACTIONS(1602), - [anon_sym_AMP_GT_GT] = ACTIONS(1116), - [anon_sym_LT_AMP] = ACTIONS(1116), - [anon_sym_GT_AMP] = ACTIONS(1116), - [anon_sym_DQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1116), - [anon_sym_DOLLAR] = ACTIONS(1602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1116), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1116), - [anon_sym_BQUOTE] = ACTIONS(1116), - [anon_sym_LT_LPAREN] = ACTIONS(1116), - [anon_sym_GT_LPAREN] = ACTIONS(1116), - [sym_word] = ACTIONS(1118), - [sym_comment] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(2764), + [anon_sym_RPAREN] = ACTIONS(2766), + [anon_sym_PIPE_AMP] = ACTIONS(2766), + [anon_sym_AMP_AMP] = ACTIONS(2766), + [anon_sym_PIPE_PIPE] = ACTIONS(2766), + [anon_sym_BQUOTE] = ACTIONS(2766), + [sym_comment] = ACTIONS(50), }, [1123] = { - [anon_sym_AT] = ACTIONS(2831), - [sym_comment] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_RPAREN] = ACTIONS(2770), + [anon_sym_PIPE_AMP] = ACTIONS(2770), + [anon_sym_AMP_AMP] = ACTIONS(2770), + [anon_sym_PIPE_PIPE] = ACTIONS(2770), + [anon_sym_BQUOTE] = ACTIONS(2770), + [sym_comment] = ACTIONS(50), }, [1124] = { - [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(2833), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(2835), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(2837), - [sym_comment] = ACTIONS(52), + [anon_sym_fi] = ACTIONS(2772), + [sym_comment] = ACTIONS(50), }, [1125] = { - [sym_file_descriptor] = ACTIONS(1128), - [sym__concat] = ACTIONS(1128), - [sym_variable_name] = ACTIONS(1128), - [anon_sym_PIPE] = ACTIONS(1612), - [anon_sym_RPAREN] = ACTIONS(1128), - [anon_sym_PIPE_AMP] = ACTIONS(1128), - [anon_sym_AMP_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(1612), - [anon_sym_GT] = ACTIONS(1612), - [anon_sym_GT_GT] = ACTIONS(1128), - [anon_sym_AMP_GT] = ACTIONS(1612), - [anon_sym_AMP_GT_GT] = ACTIONS(1128), - [anon_sym_LT_AMP] = ACTIONS(1128), - [anon_sym_GT_AMP] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1128), - [sym_raw_string] = ACTIONS(1128), - [anon_sym_DOLLAR] = ACTIONS(1612), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1128), - [anon_sym_LT_LPAREN] = ACTIONS(1128), - [anon_sym_GT_LPAREN] = ACTIONS(1128), - [sym_word] = ACTIONS(1130), - [sym_comment] = ACTIONS(52), + [sym_elif_clause] = STATE(453), + [sym_else_clause] = STATE(1333), + [aux_sym_if_statement_repeat1] = STATE(732), + [anon_sym_fi] = ACTIONS(2772), + [anon_sym_elif] = ACTIONS(1422), + [anon_sym_else] = ACTIONS(1424), + [sym_comment] = ACTIONS(50), }, [1126] = { - [anon_sym_AT] = ACTIONS(2839), - [sym_comment] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(2774), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_PIPE_AMP] = ACTIONS(2776), + [anon_sym_AMP_AMP] = ACTIONS(2776), + [anon_sym_PIPE_PIPE] = ACTIONS(2776), + [anon_sym_BQUOTE] = ACTIONS(2776), + [sym_comment] = ACTIONS(50), }, [1127] = { - [sym_concatenation] = STATE(1319), - [sym_string] = STATE(1318), - [sym_simple_expansion] = STATE(1318), - [sym_expansion] = STATE(1318), - [sym_command_substitution] = STATE(1318), - [sym_process_substitution] = STATE(1318), - [anon_sym_RBRACE] = ACTIONS(2827), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(2841), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(2843), - [sym_comment] = ACTIONS(52), + [sym_case_item] = STATE(736), + [sym_concatenation] = STATE(737), + [sym_string] = STATE(733), + [sym_simple_expansion] = STATE(733), + [sym_expansion] = STATE(733), + [sym_command_substitution] = STATE(733), + [sym_process_substitution] = STATE(733), + [aux_sym_case_statement_repeat1] = STATE(1016), + [sym_word] = ACTIONS(1426), + [anon_sym_esac] = ACTIONS(2778), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1430), }, [1128] = { - [sym_file_descriptor] = ACTIONS(1222), - [sym__concat] = ACTIONS(1222), - [sym_variable_name] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1620), - [anon_sym_RPAREN] = ACTIONS(1222), - [anon_sym_PIPE_AMP] = ACTIONS(1222), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1620), - [anon_sym_GT] = ACTIONS(1620), - [anon_sym_GT_GT] = ACTIONS(1222), - [anon_sym_AMP_GT] = ACTIONS(1620), - [anon_sym_AMP_GT_GT] = ACTIONS(1222), - [anon_sym_LT_AMP] = ACTIONS(1222), - [anon_sym_GT_AMP] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_raw_string] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1620), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1222), - [anon_sym_BQUOTE] = ACTIONS(1222), - [anon_sym_LT_LPAREN] = ACTIONS(1222), - [anon_sym_GT_LPAREN] = ACTIONS(1222), - [sym_word] = ACTIONS(1224), - [sym_comment] = ACTIONS(52), + [sym_case_item] = STATE(736), + [sym_concatenation] = STATE(737), + [sym_string] = STATE(733), + [sym_simple_expansion] = STATE(733), + [sym_expansion] = STATE(733), + [sym_command_substitution] = STATE(733), + [sym_process_substitution] = STATE(733), + [aux_sym_case_statement_repeat1] = STATE(1335), + [sym_word] = ACTIONS(1426), + [anon_sym_esac] = ACTIONS(2778), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1430), }, [1129] = { - [sym_file_descriptor] = ACTIONS(1274), - [sym__concat] = ACTIONS(1274), - [sym_variable_name] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1622), - [anon_sym_RPAREN] = ACTIONS(1274), - [anon_sym_PIPE_AMP] = ACTIONS(1274), - [anon_sym_AMP_AMP] = ACTIONS(1274), - [anon_sym_PIPE_PIPE] = ACTIONS(1622), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_GT_GT] = ACTIONS(1274), - [anon_sym_AMP_GT] = ACTIONS(1622), - [anon_sym_AMP_GT_GT] = ACTIONS(1274), - [anon_sym_LT_AMP] = ACTIONS(1274), - [anon_sym_GT_AMP] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_raw_string] = ACTIONS(1274), - [anon_sym_DOLLAR] = ACTIONS(1622), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1274), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1274), - [anon_sym_BQUOTE] = ACTIONS(1274), - [anon_sym_LT_LPAREN] = ACTIONS(1274), - [anon_sym_GT_LPAREN] = ACTIONS(1274), - [sym_word] = ACTIONS(1276), - [sym_comment] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(2780), + [anon_sym_RPAREN] = ACTIONS(2782), + [anon_sym_PIPE_AMP] = ACTIONS(2782), + [anon_sym_AMP_AMP] = ACTIONS(2782), + [anon_sym_PIPE_PIPE] = ACTIONS(2782), + [anon_sym_BQUOTE] = ACTIONS(2782), + [sym_comment] = ACTIONS(50), }, [1130] = { - [sym_do_group] = STATE(1320), - [anon_sym_do] = ACTIONS(1164), - [sym_comment] = ACTIONS(52), + [sym_case_item] = STATE(736), + [sym_concatenation] = STATE(737), + [sym_string] = STATE(733), + [sym_simple_expansion] = STATE(733), + [sym_expansion] = STATE(733), + [sym_command_substitution] = STATE(733), + [sym_process_substitution] = STATE(733), + [aux_sym_case_statement_repeat1] = STATE(1016), + [sym_word] = ACTIONS(1426), + [anon_sym_esac] = ACTIONS(2784), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1430), }, [1131] = { - [sym_do_group] = STATE(1321), - [anon_sym_do] = ACTIONS(1164), - [sym_comment] = ACTIONS(52), + [sym_case_item] = STATE(736), + [sym_concatenation] = STATE(737), + [sym_string] = STATE(733), + [sym_simple_expansion] = STATE(733), + [sym_expansion] = STATE(733), + [sym_command_substitution] = STATE(733), + [sym_process_substitution] = STATE(733), + [aux_sym_case_statement_repeat1] = STATE(1337), + [sym_word] = ACTIONS(1426), + [anon_sym_esac] = ACTIONS(2784), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1430), }, [1132] = { - [anon_sym_PIPE] = ACTIONS(2845), - [anon_sym_RPAREN] = ACTIONS(2847), - [anon_sym_PIPE_AMP] = ACTIONS(2847), - [anon_sym_AMP_AMP] = ACTIONS(2847), - [anon_sym_PIPE_PIPE] = ACTIONS(2847), - [anon_sym_BQUOTE] = ACTIONS(2847), - [sym_comment] = ACTIONS(52), + [sym_file_redirect] = STATE(1338), + [sym_file_descriptor] = ACTIONS(1694), + [anon_sym_PIPE] = ACTIONS(2786), + [anon_sym_RPAREN] = ACTIONS(2788), + [anon_sym_PIPE_AMP] = ACTIONS(2788), + [anon_sym_AMP_AMP] = ACTIONS(2788), + [anon_sym_PIPE_PIPE] = ACTIONS(2788), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1700), + [anon_sym_GT_GT] = ACTIONS(1702), + [anon_sym_AMP_GT] = ACTIONS(1700), + [anon_sym_AMP_GT_GT] = ACTIONS(1702), + [anon_sym_LT_AMP] = ACTIONS(1702), + [anon_sym_GT_AMP] = ACTIONS(1702), + [sym_comment] = ACTIONS(50), }, [1133] = { - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_RPAREN] = ACTIONS(2851), - [anon_sym_PIPE_AMP] = ACTIONS(2851), - [anon_sym_AMP_AMP] = ACTIONS(2851), - [anon_sym_PIPE_PIPE] = ACTIONS(2851), - [anon_sym_BQUOTE] = ACTIONS(2851), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2122), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_RPAREN] = ACTIONS(2122), + [anon_sym_PIPE_AMP] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_PIPE_PIPE] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2790), + [anon_sym_GT] = ACTIONS(2790), + [anon_sym_GT_GT] = ACTIONS(2122), + [anon_sym_AMP_GT] = ACTIONS(2790), + [anon_sym_AMP_GT_GT] = ACTIONS(2122), + [anon_sym_LT_AMP] = ACTIONS(2122), + [anon_sym_GT_AMP] = ACTIONS(2122), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_comment] = ACTIONS(50), }, [1134] = { - [anon_sym_fi] = ACTIONS(2853), - [sym_comment] = ACTIONS(52), + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(1339), + [sym_simple_expansion] = STATE(1339), + [sym_expansion] = STATE(1339), + [sym_command_substitution] = STATE(1339), + [sym_process_substitution] = STATE(1339), + [sym_word] = ACTIONS(2792), + [anon_sym_DQUOTE] = ACTIONS(2328), + [sym_raw_string] = ACTIONS(2792), + [anon_sym_DOLLAR] = ACTIONS(2330), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2332), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2334), + [anon_sym_BQUOTE] = ACTIONS(2336), + [anon_sym_LT_LPAREN] = ACTIONS(2338), + [anon_sym_GT_LPAREN] = ACTIONS(2338), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2794), }, [1135] = { - [sym_elif_clause] = STATE(461), - [sym_else_clause] = STATE(1323), - [aux_sym_if_statement_repeat1] = STATE(760), - [anon_sym_fi] = ACTIONS(2853), - [anon_sym_elif] = ACTIONS(1492), - [anon_sym_else] = ACTIONS(1494), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(1343), + [sym__concat] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(428), + [anon_sym_RPAREN] = ACTIONS(424), + [anon_sym_PIPE_AMP] = ACTIONS(424), + [anon_sym_AMP_AMP] = ACTIONS(424), + [anon_sym_PIPE_PIPE] = ACTIONS(424), + [sym_comment] = ACTIONS(50), }, [1136] = { - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_RPAREN] = ACTIONS(2857), - [anon_sym_PIPE_AMP] = ACTIONS(2857), - [anon_sym_AMP_AMP] = ACTIONS(2857), - [anon_sym_PIPE_PIPE] = ACTIONS(2857), - [anon_sym_BQUOTE] = ACTIONS(2857), - [sym_comment] = ACTIONS(52), + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(1345), + [anon_sym_DQUOTE] = ACTIONS(2798), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_comment] = ACTIONS(64), }, [1137] = { - [sym_case_item] = STATE(763), - [sym_concatenation] = STATE(764), - [sym_string] = STATE(762), - [sym_simple_expansion] = STATE(762), - [sym_expansion] = STATE(762), - [sym_command_substitution] = STATE(762), - [sym_process_substitution] = STATE(762), - [aux_sym_case_statement_repeat1] = STATE(1040), - [anon_sym_esac] = ACTIONS(2859), - [anon_sym_DQUOTE] = ACTIONS(282), - [sym_raw_string] = ACTIONS(1498), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_word] = ACTIONS(1500), - [sym_comment] = ACTIONS(52), + [sym_special_variable_name] = STATE(1348), + [anon_sym_DOLLAR] = ACTIONS(2800), + [anon_sym_POUND] = ACTIONS(2800), + [anon_sym_AT] = ACTIONS(2800), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2802), + [anon_sym_STAR] = ACTIONS(2800), + [anon_sym_QMARK] = ACTIONS(2800), + [anon_sym_DASH] = ACTIONS(2800), + [anon_sym_BANG] = ACTIONS(2800), + [anon_sym_0] = ACTIONS(2804), + [anon_sym__] = ACTIONS(2804), }, [1138] = { - [sym_case_item] = STATE(763), - [sym_concatenation] = STATE(764), - [sym_string] = STATE(762), - [sym_simple_expansion] = STATE(762), - [sym_expansion] = STATE(762), - [sym_command_substitution] = STATE(762), - [sym_process_substitution] = STATE(762), - [aux_sym_case_statement_repeat1] = STATE(1325), - [anon_sym_esac] = ACTIONS(2859), - [anon_sym_DQUOTE] = ACTIONS(282), - [sym_raw_string] = ACTIONS(1498), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_word] = ACTIONS(1500), - [sym_comment] = ACTIONS(52), + [sym_special_variable_name] = STATE(1351), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(2806), + [anon_sym_AT] = ACTIONS(162), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2808), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), }, [1139] = { - [sym_file_redirect] = STATE(1326), - [sym_file_descriptor] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(2861), - [anon_sym_RPAREN] = ACTIONS(2863), - [anon_sym_PIPE_AMP] = ACTIONS(2863), - [anon_sym_AMP_AMP] = ACTIONS(2863), - [anon_sym_PIPE_PIPE] = ACTIONS(2863), - [anon_sym_LT] = ACTIONS(1776), - [anon_sym_GT] = ACTIONS(1776), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_AMP_GT] = ACTIONS(1776), - [anon_sym_AMP_GT_GT] = ACTIONS(1778), - [anon_sym_LT_AMP] = ACTIONS(1778), - [anon_sym_GT_AMP] = ACTIONS(1778), - [sym_comment] = ACTIONS(52), + [sym_for_statement] = STATE(1352), + [sym_while_statement] = STATE(1352), + [sym_if_statement] = STATE(1352), + [sym_case_statement] = STATE(1352), + [sym_function_definition] = STATE(1352), + [sym_subshell] = STATE(1352), + [sym_pipeline] = STATE(1352), + [sym_list] = STATE(1352), + [sym_bracket_command] = STATE(1352), + [sym_command] = STATE(1352), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(1353), + [sym_declaration_command] = STATE(1352), + [sym_subscript] = STATE(126), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), }, [1140] = { - [sym_file_descriptor] = ACTIONS(2229), - [anon_sym_PIPE] = ACTIONS(2865), - [anon_sym_RPAREN] = ACTIONS(2229), - [anon_sym_PIPE_AMP] = ACTIONS(2229), - [anon_sym_AMP_AMP] = ACTIONS(2229), - [anon_sym_PIPE_PIPE] = ACTIONS(2229), - [anon_sym_LT] = ACTIONS(2865), - [anon_sym_GT] = ACTIONS(2865), - [anon_sym_GT_GT] = ACTIONS(2229), - [anon_sym_AMP_GT] = ACTIONS(2865), - [anon_sym_AMP_GT_GT] = ACTIONS(2229), - [anon_sym_LT_AMP] = ACTIONS(2229), - [anon_sym_GT_AMP] = ACTIONS(2229), - [anon_sym_BQUOTE] = ACTIONS(2229), - [sym_comment] = ACTIONS(52), + [sym_for_statement] = STATE(1354), + [sym_while_statement] = STATE(1354), + [sym_if_statement] = STATE(1354), + [sym_case_statement] = STATE(1354), + [sym_function_definition] = STATE(1354), + [sym_subshell] = STATE(1354), + [sym_pipeline] = STATE(1354), + [sym_list] = STATE(1354), + [sym_bracket_command] = STATE(1354), + [sym_command] = STATE(1354), + [sym_command_name] = STATE(135), + [sym_variable_assignment] = STATE(1355), + [sym_declaration_command] = STATE(1354), + [sym_subscript] = STATE(137), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(129), + [sym_simple_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [sym_process_substitution] = STATE(129), + [aux_sym_command_repeat1] = STATE(138), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(206), + [sym_variable_name] = ACTIONS(208), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(212), + [anon_sym_typeset] = ACTIONS(212), + [anon_sym_export] = ACTIONS(212), + [anon_sym_readonly] = ACTIONS(212), + [anon_sym_local] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(206), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(214), }, [1141] = { - [sym_concatenation] = STATE(1328), - [sym_string] = STATE(1327), - [sym_simple_expansion] = STATE(1327), - [sym_expansion] = STATE(1327), - [sym_command_substitution] = STATE(1327), - [sym_process_substitution] = STATE(1327), - [anon_sym_DQUOTE] = ACTIONS(2423), - [sym_raw_string] = ACTIONS(2867), - [anon_sym_DOLLAR] = ACTIONS(2427), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2431), - [anon_sym_BQUOTE] = ACTIONS(2433), - [anon_sym_LT_LPAREN] = ACTIONS(2435), - [anon_sym_GT_LPAREN] = ACTIONS(2435), - [sym_word] = ACTIONS(2869), - [sym_comment] = ACTIONS(52), + [sym_for_statement] = STATE(1356), + [sym_while_statement] = STATE(1356), + [sym_if_statement] = STATE(1356), + [sym_case_statement] = STATE(1356), + [sym_function_definition] = STATE(1356), + [sym_subshell] = STATE(1356), + [sym_pipeline] = STATE(1356), + [sym_list] = STATE(1356), + [sym_bracket_command] = STATE(1356), + [sym_command] = STATE(1356), + [sym_command_name] = STATE(124), + [sym_variable_assignment] = STATE(1357), + [sym_declaration_command] = STATE(1356), + [sym_subscript] = STATE(126), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(127), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [aux_sym_command_repeat1] = STATE(128), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(170), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(188), + [anon_sym_declare] = ACTIONS(190), + [anon_sym_typeset] = ACTIONS(190), + [anon_sym_export] = ACTIONS(190), + [anon_sym_readonly] = ACTIONS(190), + [anon_sym_local] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(192), + [sym_raw_string] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(204), }, [1142] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(1330), - [anon_sym_DQUOTE] = ACTIONS(2871), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), - [sym_comment] = ACTIONS(64), + [aux_sym_concatenation_repeat1] = STATE(1358), + [sym__concat] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(444), + [anon_sym_RPAREN] = ACTIONS(442), + [anon_sym_PIPE_AMP] = ACTIONS(442), + [anon_sym_AMP_AMP] = ACTIONS(442), + [anon_sym_PIPE_PIPE] = ACTIONS(442), + [sym_comment] = ACTIONS(50), }, [1143] = { - [aux_sym_concatenation_repeat1] = STATE(1332), - [sym__concat] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(438), - [anon_sym_RPAREN] = ACTIONS(434), - [anon_sym_PIPE_AMP] = ACTIONS(434), - [anon_sym_AMP_AMP] = ACTIONS(434), - [anon_sym_PIPE_PIPE] = ACTIONS(434), - [sym_comment] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(428), + [anon_sym_RPAREN] = ACTIONS(424), + [anon_sym_PIPE_AMP] = ACTIONS(424), + [anon_sym_AMP_AMP] = ACTIONS(424), + [anon_sym_PIPE_PIPE] = ACTIONS(424), + [anon_sym_BQUOTE] = ACTIONS(424), + [sym_comment] = ACTIONS(50), }, [1144] = { - [sym_special_variable_name] = STATE(1335), - [anon_sym_DASH] = ACTIONS(2875), - [anon_sym_DOLLAR] = ACTIONS(2875), - [anon_sym_POUND] = ACTIONS(2875), - [anon_sym_AT] = ACTIONS(2875), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(2877), - [anon_sym_STAR] = ACTIONS(2875), - [anon_sym_QMARK] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2875), - [anon_sym_0] = ACTIONS(2879), - [anon_sym__] = ACTIONS(2879), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2812), + [anon_sym_PIPE_AMP] = ACTIONS(2812), + [anon_sym_AMP_AMP] = ACTIONS(2812), + [anon_sym_PIPE_PIPE] = ACTIONS(2812), + [anon_sym_BQUOTE] = ACTIONS(2812), + [sym_comment] = ACTIONS(50), }, [1145] = { - [sym_special_variable_name] = STATE(1338), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(2881), - [anon_sym_AT] = ACTIONS(62), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(2883), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), + [sym_string] = STATE(1359), + [sym_simple_expansion] = STATE(1359), + [sym_expansion] = STATE(1359), + [sym_command_substitution] = STATE(1359), + [sym_process_substitution] = STATE(1359), + [sym_word] = ACTIONS(2814), + [anon_sym_DQUOTE] = ACTIONS(1724), + [sym_raw_string] = ACTIONS(2814), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), + [anon_sym_BQUOTE] = ACTIONS(1732), + [anon_sym_LT_LPAREN] = ACTIONS(1734), + [anon_sym_GT_LPAREN] = ACTIONS(1734), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2816), }, [1146] = { - [sym_for_statement] = STATE(1339), - [sym_while_statement] = STATE(1339), - [sym_if_statement] = STATE(1339), - [sym_case_statement] = STATE(1339), - [sym_function_definition] = STATE(1339), - [sym_subshell] = STATE(1339), - [sym_pipeline] = STATE(1339), - [sym_list] = STATE(1339), - [sym_bracket_command] = STATE(1339), - [sym_command] = STATE(1339), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(1340), - [sym_declaration_command] = STATE(1339), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), + [aux_sym_concatenation_repeat1] = STATE(1361), + [sym_word] = ACTIONS(282), + [sym__concat] = ACTIONS(2352), + [sym_variable_name] = ACTIONS(282), + [anon_sym_PIPE] = ACTIONS(890), + [anon_sym_RPAREN] = ACTIONS(282), + [anon_sym_PIPE_AMP] = ACTIONS(282), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(890), }, [1147] = { - [sym_for_statement] = STATE(1341), - [sym_while_statement] = STATE(1341), - [sym_if_statement] = STATE(1341), - [sym_case_statement] = STATE(1341), - [sym_function_definition] = STATE(1341), - [sym_subshell] = STATE(1341), - [sym_pipeline] = STATE(1341), - [sym_list] = STATE(1341), - [sym_bracket_command] = STATE(1341), - [sym_command] = STATE(1341), - [sym_command_name] = STATE(140), - [sym_variable_assignment] = STATE(1342), - [sym_declaration_command] = STATE(1341), - [sym_subscript] = STATE(142), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(137), - [sym_simple_expansion] = STATE(137), - [sym_expansion] = STATE(137), - [sym_command_substitution] = STATE(137), - [sym_process_substitution] = STATE(137), - [aux_sym_command_repeat1] = STATE(143), - [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), + [sym_word] = ACTIONS(1342), + [sym_variable_name] = ACTIONS(1342), + [anon_sym_PIPE] = ACTIONS(2290), + [anon_sym_RPAREN] = ACTIONS(1342), + [anon_sym_PIPE_AMP] = ACTIONS(1342), + [anon_sym_AMP_AMP] = ACTIONS(1342), + [anon_sym_PIPE_PIPE] = ACTIONS(1342), + [anon_sym_BQUOTE] = ACTIONS(1342), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2290), }, [1148] = { - [sym_for_statement] = STATE(1343), - [sym_while_statement] = STATE(1343), - [sym_if_statement] = STATE(1343), - [sym_case_statement] = STATE(1343), - [sym_function_definition] = STATE(1343), - [sym_subshell] = STATE(1343), - [sym_pipeline] = STATE(1343), - [sym_list] = STATE(1343), - [sym_bracket_command] = STATE(1343), - [sym_command] = STATE(1343), - [sym_command_name] = STATE(129), - [sym_variable_assignment] = STATE(1344), - [sym_declaration_command] = STATE(1343), - [sym_subscript] = STATE(131), - [sym_file_redirect] = STATE(28), - [sym_concatenation] = STATE(132), - [sym_string] = STATE(121), - [sym_simple_expansion] = STATE(121), - [sym_expansion] = STATE(121), - [sym_command_substitution] = STATE(121), - [sym_process_substitution] = STATE(121), - [aux_sym_command_repeat1] = STATE(133), - [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), + [sym_concatenation] = STATE(72), + [sym_string] = STATE(414), + [sym_simple_expansion] = STATE(414), + [sym_expansion] = STATE(414), + [sym_command_substitution] = STATE(414), + [sym_process_substitution] = STATE(414), + [aux_sym_for_statement_repeat1] = STATE(688), + [sym_word] = ACTIONS(766), + [anon_sym_RPAREN] = ACTIONS(2818), + [anon_sym_DQUOTE] = ACTIONS(102), + [sym_raw_string] = ACTIONS(766), + [anon_sym_DOLLAR] = ACTIONS(104), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(108), + [anon_sym_BQUOTE] = ACTIONS(110), + [anon_sym_LT_LPAREN] = ACTIONS(112), + [anon_sym_GT_LPAREN] = ACTIONS(112), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(770), }, [1149] = { - [anon_sym_PIPE] = ACTIONS(438), - [anon_sym_RPAREN] = ACTIONS(434), - [anon_sym_PIPE_AMP] = ACTIONS(434), - [anon_sym_AMP_AMP] = ACTIONS(434), - [anon_sym_PIPE_PIPE] = ACTIONS(434), - [anon_sym_BQUOTE] = ACTIONS(434), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(446), + [sym__concat] = ACTIONS(446), + [sym_variable_name] = ACTIONS(446), + [anon_sym_PIPE] = ACTIONS(892), + [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(50), + [sym_identifier] = ACTIONS(892), }, [1150] = { - [anon_sym_PIPE] = ACTIONS(2885), - [anon_sym_RPAREN] = ACTIONS(2887), - [anon_sym_PIPE_AMP] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_PIPE_PIPE] = ACTIONS(2887), - [anon_sym_BQUOTE] = ACTIONS(2887), - [sym_comment] = ACTIONS(52), + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(291), + [anon_sym_DQUOTE] = ACTIONS(2820), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_comment] = ACTIONS(64), }, [1151] = { - [sym_variable_name] = ACTIONS(1394), - [anon_sym_PIPE] = ACTIONS(2361), - [anon_sym_RPAREN] = ACTIONS(1394), - [anon_sym_PIPE_AMP] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1394), - [anon_sym_PIPE_PIPE] = ACTIONS(1394), - [anon_sym_BQUOTE] = ACTIONS(1394), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(2361), + [sym_word] = ACTIONS(466), + [sym__concat] = ACTIONS(466), + [sym_variable_name] = ACTIONS(466), + [anon_sym_PIPE] = ACTIONS(478), + [anon_sym_RPAREN] = ACTIONS(466), + [anon_sym_PIPE_AMP] = ACTIONS(466), + [anon_sym_AMP_AMP] = ACTIONS(466), + [anon_sym_PIPE_PIPE] = ACTIONS(466), + [anon_sym_BQUOTE] = ACTIONS(466), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(478), }, [1152] = { - [sym_concatenation] = STATE(423), - [sym_string] = STATE(417), - [sym_simple_expansion] = STATE(417), - [sym_expansion] = STATE(417), - [sym_command_substitution] = STATE(417), - [sym_process_substitution] = STATE(417), - [aux_sym_for_statement_repeat1] = STATE(714), - [anon_sym_RPAREN] = ACTIONS(2889), - [anon_sym_DQUOTE] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(755), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(759), - [anon_sym_BQUOTE] = ACTIONS(761), - [anon_sym_LT_LPAREN] = ACTIONS(763), - [anon_sym_GT_LPAREN] = ACTIONS(763), - [sym_word] = ACTIONS(765), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(470), + [sym__concat] = ACTIONS(470), + [sym_variable_name] = ACTIONS(470), + [anon_sym_PIPE] = ACTIONS(896), + [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_BQUOTE] = ACTIONS(470), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(896), }, [1153] = { - [sym__concat] = ACTIONS(450), - [sym_variable_name] = ACTIONS(450), - [anon_sym_PIPE] = ACTIONS(875), - [anon_sym_RPAREN] = ACTIONS(450), - [anon_sym_PIPE_AMP] = ACTIONS(450), - [anon_sym_AMP_AMP] = ACTIONS(450), - [anon_sym_PIPE_PIPE] = ACTIONS(450), - [anon_sym_BQUOTE] = ACTIONS(450), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(875), + [sym_word] = ACTIONS(474), + [sym__concat] = ACTIONS(474), + [sym_variable_name] = ACTIONS(474), + [anon_sym_PIPE] = ACTIONS(898), + [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(50), + [sym_identifier] = ACTIONS(898), }, [1154] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(298), - [anon_sym_DQUOTE] = ACTIONS(2891), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), + [sym_special_variable_name] = STATE(1365), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(466), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(478), + [anon_sym_COLON_QMARK] = ACTIONS(466), + [anon_sym_COLON_DASH] = ACTIONS(466), + [anon_sym_PERCENT] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(466), [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2822), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), }, [1155] = { - [sym_string] = STATE(1347), - [sym_simple_expansion] = STATE(1347), - [sym_expansion] = STATE(1347), - [sym_command_substitution] = STATE(1347), - [sym_process_substitution] = STATE(1347), - [anon_sym_DQUOTE] = ACTIONS(1798), - [sym_raw_string] = ACTIONS(2893), - [anon_sym_DOLLAR] = ACTIONS(1802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1806), - [anon_sym_BQUOTE] = ACTIONS(1808), - [anon_sym_LT_LPAREN] = ACTIONS(1810), - [anon_sym_GT_LPAREN] = ACTIONS(1810), - [sym_word] = ACTIONS(2895), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(2824), + [anon_sym_LBRACK] = ACTIONS(2826), + [anon_sym_EQ] = ACTIONS(2828), + [anon_sym_COLON] = ACTIONS(2830), + [anon_sym_COLON_QMARK] = ACTIONS(2828), + [anon_sym_COLON_DASH] = ACTIONS(2828), + [anon_sym_PERCENT] = ACTIONS(2828), + [anon_sym_SLASH] = ACTIONS(2828), + [sym_comment] = ACTIONS(50), }, [1156] = { - [aux_sym_concatenation_repeat1] = STATE(1348), - [sym__concat] = ACTIONS(2453), - [sym_variable_name] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(883), - [anon_sym_RPAREN] = ACTIONS(474), - [anon_sym_PIPE_AMP] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(883), + [anon_sym_RBRACE] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2834), + [anon_sym_EQ] = ACTIONS(2836), + [anon_sym_COLON] = ACTIONS(2838), + [anon_sym_COLON_QMARK] = ACTIONS(2836), + [anon_sym_COLON_DASH] = ACTIONS(2836), + [anon_sym_PERCENT] = ACTIONS(2836), + [anon_sym_SLASH] = ACTIONS(2836), + [sym_comment] = ACTIONS(50), }, [1157] = { - [sym__concat] = ACTIONS(322), - [sym_variable_name] = ACTIONS(322), - [anon_sym_PIPE] = ACTIONS(324), - [anon_sym_RPAREN] = ACTIONS(322), - [anon_sym_PIPE_AMP] = ACTIONS(322), - [anon_sym_AMP_AMP] = ACTIONS(322), - [anon_sym_PIPE_PIPE] = ACTIONS(322), - [anon_sym_BQUOTE] = ACTIONS(322), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(324), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(2840), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), }, [1158] = { - [sym__concat] = ACTIONS(480), - [sym_variable_name] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(480), - [anon_sym_PIPE_AMP] = ACTIONS(480), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), - [anon_sym_BQUOTE] = ACTIONS(480), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(885), + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(2840), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), }, [1159] = { - [sym__concat] = ACTIONS(484), - [sym_variable_name] = ACTIONS(484), - [anon_sym_PIPE] = ACTIONS(887), - [anon_sym_RPAREN] = ACTIONS(484), - [anon_sym_PIPE_AMP] = ACTIONS(484), - [anon_sym_AMP_AMP] = ACTIONS(484), - [anon_sym_PIPE_PIPE] = ACTIONS(484), - [anon_sym_BQUOTE] = ACTIONS(484), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_BQUOTE] = ACTIONS(2840), + [sym_comment] = ACTIONS(50), }, [1160] = { - [sym_special_variable_name] = STATE(1350), - [anon_sym_RBRACE] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(62), - [anon_sym_AT] = ACTIONS(62), - [anon_sym_COLON] = ACTIONS(324), - [anon_sym_COLON_QMARK] = ACTIONS(322), - [anon_sym_COLON_DASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(2840), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), }, [1161] = { - [anon_sym_RBRACE] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_EQ] = ACTIONS(2903), - [anon_sym_COLON] = ACTIONS(2905), - [anon_sym_COLON_QMARK] = ACTIONS(2903), - [anon_sym_COLON_DASH] = ACTIONS(2903), - [anon_sym_PERCENT] = ACTIONS(2903), - [anon_sym_SLASH] = ACTIONS(2903), - [sym_comment] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(2842), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), }, [1162] = { - [anon_sym_RBRACE] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_EQ] = ACTIONS(2911), - [anon_sym_COLON] = ACTIONS(2913), - [anon_sym_COLON_QMARK] = ACTIONS(2911), - [anon_sym_COLON_DASH] = ACTIONS(2911), - [anon_sym_PERCENT] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2911), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(2842), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), }, [1163] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2915), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(1361), + [sym_word] = ACTIONS(596), + [sym__concat] = ACTIONS(2352), + [sym_variable_name] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_RPAREN] = ACTIONS(596), + [anon_sym_PIPE_AMP] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(922), }, [1164] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2915), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACK] = ACTIONS(2844), + [sym_comment] = ACTIONS(50), }, [1165] = { - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_BQUOTE] = ACTIONS(2915), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACK] = ACTIONS(2846), + [sym_comment] = ACTIONS(50), }, [1166] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(2915), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(2848), + [sym_comment] = ACTIONS(50), }, [1167] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2917), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2848), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), }, [1168] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(2917), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2268), + [sym_word] = ACTIONS(2268), + [sym__concat] = ACTIONS(2268), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_RPAREN] = ACTIONS(2268), + [anon_sym_PIPE_AMP] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2268), + [anon_sym_PIPE_PIPE] = ACTIONS(2268), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_GT_GT] = ACTIONS(2268), + [anon_sym_AMP_GT] = ACTIONS(2679), + [anon_sym_AMP_GT_GT] = ACTIONS(2268), + [anon_sym_LT_AMP] = ACTIONS(2268), + [anon_sym_GT_AMP] = ACTIONS(2268), + [anon_sym_LT_LT] = ACTIONS(2679), + [anon_sym_LT_LT_DASH] = ACTIONS(2268), + [anon_sym_DQUOTE] = ACTIONS(2268), + [sym_raw_string] = ACTIONS(2268), + [anon_sym_DOLLAR] = ACTIONS(2679), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2268), + [anon_sym_BQUOTE] = ACTIONS(2268), + [anon_sym_LT_LPAREN] = ACTIONS(2268), + [anon_sym_GT_LPAREN] = ACTIONS(2268), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2679), }, [1169] = { - [anon_sym_RBRACK] = ACTIONS(2919), - [sym_comment] = ACTIONS(52), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2850), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), }, [1170] = { - [anon_sym_RBRACK] = ACTIONS(2921), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2274), + [sym_word] = ACTIONS(2274), + [sym__concat] = ACTIONS(2274), + [anon_sym_PIPE] = ACTIONS(2683), + [anon_sym_RPAREN] = ACTIONS(2274), + [anon_sym_PIPE_AMP] = ACTIONS(2274), + [anon_sym_AMP_AMP] = ACTIONS(2274), + [anon_sym_PIPE_PIPE] = ACTIONS(2274), + [anon_sym_LT] = ACTIONS(2683), + [anon_sym_GT] = ACTIONS(2683), + [anon_sym_GT_GT] = ACTIONS(2274), + [anon_sym_AMP_GT] = ACTIONS(2683), + [anon_sym_AMP_GT_GT] = ACTIONS(2274), + [anon_sym_LT_AMP] = ACTIONS(2274), + [anon_sym_GT_AMP] = ACTIONS(2274), + [anon_sym_LT_LT] = ACTIONS(2683), + [anon_sym_LT_LT_DASH] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_raw_string] = ACTIONS(2274), + [anon_sym_DOLLAR] = ACTIONS(2683), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2274), + [anon_sym_BQUOTE] = ACTIONS(2274), + [anon_sym_LT_LPAREN] = ACTIONS(2274), + [anon_sym_GT_LPAREN] = ACTIONS(2274), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2683), }, [1171] = { - [anon_sym_RBRACE] = ACTIONS(2923), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(2852), + [sym_comment] = ACTIONS(50), }, [1172] = { - [sym_file_descriptor] = ACTIONS(2351), - [sym__concat] = ACTIONS(2351), - [anon_sym_PIPE] = ACTIONS(2751), - [anon_sym_RPAREN] = ACTIONS(2351), - [anon_sym_PIPE_AMP] = ACTIONS(2351), - [anon_sym_AMP_AMP] = ACTIONS(2351), - [anon_sym_PIPE_PIPE] = ACTIONS(2751), - [anon_sym_LT] = ACTIONS(2751), - [anon_sym_GT] = ACTIONS(2751), - [anon_sym_GT_GT] = ACTIONS(2351), - [anon_sym_AMP_GT] = ACTIONS(2751), - [anon_sym_AMP_GT_GT] = ACTIONS(2351), - [anon_sym_LT_AMP] = ACTIONS(2351), - [anon_sym_GT_AMP] = ACTIONS(2351), - [anon_sym_LT_LT] = ACTIONS(2751), - [anon_sym_LT_LT_DASH] = ACTIONS(2351), - [anon_sym_DQUOTE] = ACTIONS(2351), - [sym_raw_string] = ACTIONS(2351), - [anon_sym_DOLLAR] = ACTIONS(2751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2351), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2351), - [anon_sym_BQUOTE] = ACTIONS(2351), - [anon_sym_LT_LPAREN] = ACTIONS(2351), - [anon_sym_GT_LPAREN] = ACTIONS(2351), - [sym_word] = ACTIONS(2353), - [sym_comment] = ACTIONS(52), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), }, [1173] = { - [anon_sym_RBRACE] = ACTIONS(2925), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2280), + [sym_word] = ACTIONS(2280), + [sym__concat] = ACTIONS(2280), + [anon_sym_PIPE] = ACTIONS(2687), + [anon_sym_RPAREN] = ACTIONS(2280), + [anon_sym_PIPE_AMP] = ACTIONS(2280), + [anon_sym_AMP_AMP] = ACTIONS(2280), + [anon_sym_PIPE_PIPE] = ACTIONS(2280), + [anon_sym_LT] = ACTIONS(2687), + [anon_sym_GT] = ACTIONS(2687), + [anon_sym_GT_GT] = ACTIONS(2280), + [anon_sym_AMP_GT] = ACTIONS(2687), + [anon_sym_AMP_GT_GT] = ACTIONS(2280), + [anon_sym_LT_AMP] = ACTIONS(2280), + [anon_sym_GT_AMP] = ACTIONS(2280), + [anon_sym_LT_LT] = ACTIONS(2687), + [anon_sym_LT_LT_DASH] = ACTIONS(2280), + [anon_sym_DQUOTE] = ACTIONS(2280), + [sym_raw_string] = ACTIONS(2280), + [anon_sym_DOLLAR] = ACTIONS(2687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2280), + [anon_sym_BQUOTE] = ACTIONS(2280), + [anon_sym_LT_LPAREN] = ACTIONS(2280), + [anon_sym_GT_LPAREN] = ACTIONS(2280), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2687), }, [1174] = { - [sym_file_descriptor] = ACTIONS(2357), - [sym__concat] = ACTIONS(2357), - [anon_sym_PIPE] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2357), - [anon_sym_PIPE_AMP] = ACTIONS(2357), - [anon_sym_AMP_AMP] = ACTIONS(2357), - [anon_sym_PIPE_PIPE] = ACTIONS(2755), - [anon_sym_LT] = ACTIONS(2755), - [anon_sym_GT] = ACTIONS(2755), - [anon_sym_GT_GT] = ACTIONS(2357), - [anon_sym_AMP_GT] = ACTIONS(2755), - [anon_sym_AMP_GT_GT] = ACTIONS(2357), - [anon_sym_LT_AMP] = ACTIONS(2357), - [anon_sym_GT_AMP] = ACTIONS(2357), - [anon_sym_LT_LT] = ACTIONS(2755), - [anon_sym_LT_LT_DASH] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2357), - [sym_raw_string] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2755), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2357), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2357), - [anon_sym_BQUOTE] = ACTIONS(2357), - [anon_sym_LT_LPAREN] = ACTIONS(2357), - [anon_sym_GT_LPAREN] = ACTIONS(2357), - [sym_word] = ACTIONS(2359), - [sym_comment] = ACTIONS(52), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), }, [1175] = { - [anon_sym_PIPE] = ACTIONS(2861), - [anon_sym_RPAREN] = ACTIONS(2863), - [anon_sym_PIPE_AMP] = ACTIONS(2863), - [anon_sym_AMP_AMP] = ACTIONS(2863), - [anon_sym_PIPE_PIPE] = ACTIONS(2863), - [anon_sym_BQUOTE] = ACTIONS(2863), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2286), + [sym_word] = ACTIONS(2286), + [sym__concat] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2691), + [anon_sym_RPAREN] = ACTIONS(2286), + [anon_sym_PIPE_AMP] = ACTIONS(2286), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2691), + [anon_sym_GT] = ACTIONS(2691), + [anon_sym_GT_GT] = ACTIONS(2286), + [anon_sym_AMP_GT] = ACTIONS(2691), + [anon_sym_AMP_GT_GT] = ACTIONS(2286), + [anon_sym_LT_AMP] = ACTIONS(2286), + [anon_sym_GT_AMP] = ACTIONS(2286), + [anon_sym_LT_LT] = ACTIONS(2691), + [anon_sym_LT_LT_DASH] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [sym_raw_string] = ACTIONS(2286), + [anon_sym_DOLLAR] = ACTIONS(2691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2286), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2286), + [anon_sym_LT_LPAREN] = ACTIONS(2286), + [anon_sym_GT_LPAREN] = ACTIONS(2286), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2691), }, [1176] = { - [sym_file_descriptor] = ACTIONS(1080), - [sym__concat] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(2856), + [anon_sym_RPAREN] = ACTIONS(2858), + [anon_sym_PIPE_AMP] = ACTIONS(2858), + [anon_sym_AMP_AMP] = ACTIONS(2858), + [anon_sym_PIPE_PIPE] = ACTIONS(2858), + [anon_sym_BQUOTE] = ACTIONS(2858), + [sym_comment] = ACTIONS(50), + }, + [1177] = { + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(1527), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_LT_LT_DASH] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [sym_comment] = ACTIONS(50), + }, + [1178] = { + [sym_file_descriptor] = ACTIONS(735), + [sym__concat] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(1529), + [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(1529), + [anon_sym_GT] = ACTIONS(1529), + [anon_sym_GT_GT] = ACTIONS(735), + [anon_sym_AMP_GT] = ACTIONS(1529), + [anon_sym_AMP_GT_GT] = ACTIONS(735), + [anon_sym_LT_AMP] = ACTIONS(735), + [anon_sym_GT_AMP] = ACTIONS(735), + [anon_sym_LT_LT] = ACTIONS(1529), + [anon_sym_LT_LT_DASH] = ACTIONS(735), + [anon_sym_BQUOTE] = ACTIONS(735), + [sym_comment] = ACTIONS(50), + }, + [1179] = { + [aux_sym_concatenation_repeat1] = STATE(1179), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(2860), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(1527), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_LT_LT_DASH] = ACTIONS(731), + [sym_comment] = ACTIONS(50), + }, + [1180] = { + [sym_file_descriptor] = ACTIONS(1037), + [sym__concat] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1534), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_PIPE_AMP] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1037), + [anon_sym_PIPE_PIPE] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1534), + [anon_sym_GT] = ACTIONS(1534), + [anon_sym_GT_GT] = ACTIONS(1037), + [anon_sym_AMP_GT] = ACTIONS(1534), + [anon_sym_AMP_GT_GT] = ACTIONS(1037), + [anon_sym_LT_AMP] = ACTIONS(1037), + [anon_sym_GT_AMP] = ACTIONS(1037), + [anon_sym_LT_LT] = ACTIONS(1534), + [anon_sym_LT_LT_DASH] = ACTIONS(1037), + [anon_sym_BQUOTE] = ACTIONS(1037), + [sym_comment] = ACTIONS(50), + }, + [1181] = { + [anon_sym_RBRACE] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2865), + [sym_comment] = ACTIONS(50), + }, + [1182] = { + [anon_sym_RBRACE] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2869), + [sym_comment] = ACTIONS(50), + }, + [1183] = { + [sym_file_descriptor] = ACTIONS(1066), + [sym__concat] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_RPAREN] = ACTIONS(1066), + [anon_sym_PIPE_AMP] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_GT_GT] = ACTIONS(1066), + [anon_sym_AMP_GT] = ACTIONS(1544), + [anon_sym_AMP_GT_GT] = ACTIONS(1066), + [anon_sym_LT_AMP] = ACTIONS(1066), + [anon_sym_GT_AMP] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1544), + [anon_sym_LT_LT_DASH] = ACTIONS(1066), + [anon_sym_BQUOTE] = ACTIONS(1066), + [sym_comment] = ACTIONS(50), + }, + [1184] = { + [anon_sym_AT] = ACTIONS(2871), + [sym_comment] = ACTIONS(50), + }, + [1185] = { + [sym_concatenation] = STATE(1388), + [sym_string] = STATE(1385), + [sym_simple_expansion] = STATE(1385), + [sym_expansion] = STATE(1385), + [sym_command_substitution] = STATE(1385), + [sym_process_substitution] = STATE(1385), + [sym_word] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2875), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(2873), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2877), + }, + [1186] = { + [sym_file_descriptor] = ACTIONS(1078), + [sym__concat] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1554), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_PIPE_AMP] = ACTIONS(1078), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_AMP_GT] = ACTIONS(1554), + [anon_sym_AMP_GT_GT] = ACTIONS(1078), + [anon_sym_LT_AMP] = ACTIONS(1078), + [anon_sym_GT_AMP] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1554), + [anon_sym_LT_LT_DASH] = ACTIONS(1078), + [anon_sym_BQUOTE] = ACTIONS(1078), + [sym_comment] = ACTIONS(50), + }, + [1187] = { + [anon_sym_AT] = ACTIONS(2879), + [sym_comment] = ACTIONS(50), + }, + [1188] = { + [sym_concatenation] = STATE(1392), + [sym_string] = STATE(1390), + [sym_simple_expansion] = STATE(1390), + [sym_expansion] = STATE(1390), + [sym_command_substitution] = STATE(1390), + [sym_process_substitution] = STATE(1390), + [sym_word] = ACTIONS(2881), + [anon_sym_RBRACE] = ACTIONS(2867), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(2881), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2883), + }, + [1189] = { + [sym_file_descriptor] = ACTIONS(1162), + [sym__concat] = ACTIONS(1162), + [anon_sym_PIPE] = ACTIONS(1562), + [anon_sym_RPAREN] = ACTIONS(1162), + [anon_sym_PIPE_AMP] = ACTIONS(1162), + [anon_sym_AMP_AMP] = ACTIONS(1162), + [anon_sym_PIPE_PIPE] = ACTIONS(1162), + [anon_sym_LT] = ACTIONS(1562), + [anon_sym_GT] = ACTIONS(1562), + [anon_sym_GT_GT] = ACTIONS(1162), + [anon_sym_AMP_GT] = ACTIONS(1562), + [anon_sym_AMP_GT_GT] = ACTIONS(1162), + [anon_sym_LT_AMP] = ACTIONS(1162), + [anon_sym_GT_AMP] = ACTIONS(1162), + [anon_sym_LT_LT] = ACTIONS(1562), + [anon_sym_LT_LT_DASH] = ACTIONS(1162), + [anon_sym_BQUOTE] = ACTIONS(1162), + [sym_comment] = ACTIONS(50), + }, + [1190] = { + [sym_file_descriptor] = ACTIONS(1214), + [sym__concat] = ACTIONS(1214), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_RPAREN] = ACTIONS(1214), + [anon_sym_PIPE_AMP] = ACTIONS(1214), + [anon_sym_AMP_AMP] = ACTIONS(1214), + [anon_sym_PIPE_PIPE] = ACTIONS(1214), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(1564), + [anon_sym_GT_GT] = ACTIONS(1214), + [anon_sym_AMP_GT] = ACTIONS(1564), + [anon_sym_AMP_GT_GT] = ACTIONS(1214), + [anon_sym_LT_AMP] = ACTIONS(1214), + [anon_sym_GT_AMP] = ACTIONS(1214), + [anon_sym_LT_LT] = ACTIONS(1564), + [anon_sym_LT_LT_DASH] = ACTIONS(1214), + [anon_sym_BQUOTE] = ACTIONS(1214), + [sym_comment] = ACTIONS(50), + }, + [1191] = { + [sym_file_descriptor] = ACTIONS(2485), + [anon_sym_PIPE] = ACTIONS(2885), + [anon_sym_RPAREN] = ACTIONS(2485), + [anon_sym_PIPE_AMP] = ACTIONS(2485), + [anon_sym_AMP_AMP] = ACTIONS(2485), + [anon_sym_PIPE_PIPE] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2885), + [anon_sym_GT] = ACTIONS(2885), + [anon_sym_GT_GT] = ACTIONS(2485), + [anon_sym_AMP_GT] = ACTIONS(2885), + [anon_sym_AMP_GT_GT] = ACTIONS(2485), + [anon_sym_LT_AMP] = ACTIONS(2485), + [anon_sym_GT_AMP] = ACTIONS(2485), + [anon_sym_LT_LT] = ACTIONS(2885), + [anon_sym_LT_LT_DASH] = ACTIONS(2485), + [anon_sym_BQUOTE] = ACTIONS(2485), + [sym_comment] = ACTIONS(50), + }, + [1192] = { + [aux_sym_concatenation_repeat1] = STATE(1192), + [sym_file_descriptor] = ACTIONS(731), + [sym_word] = ACTIONS(731), + [sym__concat] = ACTIONS(1582), + [sym_variable_name] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(1527), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(1527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1527), + }, + [1193] = { + [sym_file_redirect] = STATE(1338), + [sym_file_descriptor] = ACTIONS(1854), + [anon_sym_PIPE] = ACTIONS(2786), + [anon_sym_PIPE_AMP] = ACTIONS(2788), + [anon_sym_AMP_AMP] = ACTIONS(2788), + [anon_sym_PIPE_PIPE] = ACTIONS(2788), + [anon_sym_LT] = ACTIONS(1856), + [anon_sym_GT] = ACTIONS(1856), + [anon_sym_GT_GT] = ACTIONS(1858), + [anon_sym_AMP_GT] = ACTIONS(1856), + [anon_sym_AMP_GT_GT] = ACTIONS(1858), + [anon_sym_LT_AMP] = ACTIONS(1858), + [anon_sym_GT_AMP] = ACTIONS(1858), + [anon_sym_BQUOTE] = ACTIONS(2788), + [sym_comment] = ACTIONS(50), + }, + [1194] = { + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(1393), + [sym_simple_expansion] = STATE(1393), + [sym_expansion] = STATE(1393), + [sym_command_substitution] = STATE(1393), + [sym_process_substitution] = STATE(1393), + [sym_word] = ACTIONS(2887), + [anon_sym_DQUOTE] = ACTIONS(2328), + [sym_raw_string] = ACTIONS(2887), + [anon_sym_DOLLAR] = ACTIONS(2330), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2332), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2334), + [anon_sym_BQUOTE] = ACTIONS(2336), + [anon_sym_LT_LPAREN] = ACTIONS(2338), + [anon_sym_GT_LPAREN] = ACTIONS(2338), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2889), + }, + [1195] = { + [aux_sym_concatenation_repeat1] = STATE(1395), + [sym__concat] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(428), + [anon_sym_PIPE_AMP] = ACTIONS(424), + [anon_sym_AMP_AMP] = ACTIONS(424), + [anon_sym_PIPE_PIPE] = ACTIONS(424), + [anon_sym_BQUOTE] = ACTIONS(424), + [sym_comment] = ACTIONS(50), + }, + [1196] = { + [aux_sym_concatenation_repeat1] = STATE(1396), + [sym__concat] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(444), + [anon_sym_PIPE_AMP] = ACTIONS(442), + [anon_sym_AMP_AMP] = ACTIONS(442), + [anon_sym_PIPE_PIPE] = ACTIONS(442), + [anon_sym_BQUOTE] = ACTIONS(442), + [sym_comment] = ACTIONS(50), + }, + [1197] = { + [aux_sym_concatenation_repeat1] = STATE(1397), + [sym_word] = ACTIONS(282), + [sym__concat] = ACTIONS(2352), + [sym_variable_name] = ACTIONS(282), + [anon_sym_PIPE] = ACTIONS(890), + [anon_sym_PIPE_AMP] = ACTIONS(282), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(282), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(890), + }, + [1198] = { + [aux_sym_concatenation_repeat1] = STATE(1397), + [sym_word] = ACTIONS(596), + [sym__concat] = ACTIONS(2352), + [sym_variable_name] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_PIPE_AMP] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [anon_sym_BQUOTE] = ACTIONS(596), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(922), + }, + [1199] = { + [aux_sym_concatenation_repeat1] = STATE(1199), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(2860), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(1527), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_LT_LT_DASH] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [sym_comment] = ACTIONS(50), + }, + [1200] = { + [sym_file_descriptor] = ACTIONS(1629), + [sym__concat] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_RPAREN] = ACTIONS(1631), + [anon_sym_SEMI_SEMI] = ACTIONS(1631), + [anon_sym_PIPE_AMP] = ACTIONS(1631), + [anon_sym_AMP_AMP] = ACTIONS(1631), + [anon_sym_PIPE_PIPE] = ACTIONS(1631), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_GT_GT] = ACTIONS(1631), + [anon_sym_AMP_GT] = ACTIONS(1631), + [anon_sym_AMP_GT_GT] = ACTIONS(1631), + [anon_sym_LT_AMP] = ACTIONS(1631), + [anon_sym_GT_AMP] = ACTIONS(1631), + [anon_sym_LT_LT] = ACTIONS(1631), + [anon_sym_LT_LT_DASH] = ACTIONS(1631), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_LF] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1631), + }, + [1201] = { + [anon_sym_AT] = ACTIONS(2891), + [sym_comment] = ACTIONS(50), + }, + [1202] = { + [sym_file_descriptor] = ACTIONS(1635), + [sym__concat] = ACTIONS(1635), + [anon_sym_PIPE] = ACTIONS(1637), + [anon_sym_RPAREN] = ACTIONS(1637), + [anon_sym_SEMI_SEMI] = ACTIONS(1637), + [anon_sym_PIPE_AMP] = ACTIONS(1637), + [anon_sym_AMP_AMP] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1637), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_GT_GT] = ACTIONS(1637), + [anon_sym_AMP_GT] = ACTIONS(1637), + [anon_sym_AMP_GT_GT] = ACTIONS(1637), + [anon_sym_LT_AMP] = ACTIONS(1637), + [anon_sym_GT_AMP] = ACTIONS(1637), + [anon_sym_LT_LT] = ACTIONS(1637), + [anon_sym_LT_LT_DASH] = ACTIONS(1637), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1637), + [anon_sym_LF] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1637), + }, + [1203] = { + [anon_sym_AT] = ACTIONS(2893), + [sym_comment] = ACTIONS(50), + }, + [1204] = { + [anon_sym_RBRACK] = ACTIONS(2895), + [sym_comment] = ACTIONS(50), + }, + [1205] = { + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(2897), + [anon_sym_RBRACE] = ACTIONS(2899), + [sym_comment] = ACTIONS(50), + }, + [1206] = { + [sym_file_descriptor] = ACTIONS(1647), + [sym__concat] = ACTIONS(1647), + [anon_sym_PIPE] = ACTIONS(1649), + [anon_sym_RPAREN] = ACTIONS(1649), + [anon_sym_SEMI_SEMI] = ACTIONS(1649), + [anon_sym_PIPE_AMP] = ACTIONS(1649), + [anon_sym_AMP_AMP] = ACTIONS(1649), + [anon_sym_PIPE_PIPE] = ACTIONS(1649), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_GT_GT] = ACTIONS(1649), + [anon_sym_AMP_GT] = ACTIONS(1649), + [anon_sym_AMP_GT_GT] = ACTIONS(1649), + [anon_sym_LT_AMP] = ACTIONS(1649), + [anon_sym_GT_AMP] = ACTIONS(1649), + [anon_sym_LT_LT] = ACTIONS(1649), + [anon_sym_LT_LT_DASH] = ACTIONS(1649), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1649), + [anon_sym_LF] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + }, + [1207] = { + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(2901), + [anon_sym_RBRACE] = ACTIONS(2903), + [sym_comment] = ACTIONS(50), + }, + [1208] = { + [sym__concat] = ACTIONS(2895), + [anon_sym_RBRACE] = ACTIONS(2899), + [sym_comment] = ACTIONS(50), + }, + [1209] = { + [anon_sym_RBRACK] = ACTIONS(2905), + [sym_comment] = ACTIONS(50), + }, + [1210] = { + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(2907), + [anon_sym_RBRACE] = ACTIONS(2909), + [sym_comment] = ACTIONS(50), + }, + [1211] = { + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(2911), + [anon_sym_RBRACE] = ACTIONS(2913), + [sym_comment] = ACTIONS(50), + }, + [1212] = { + [sym__concat] = ACTIONS(2905), + [anon_sym_RBRACE] = ACTIONS(2909), + [sym_comment] = ACTIONS(50), + }, + [1213] = { + [anon_sym_RBRACE] = ACTIONS(2915), + [anon_sym_LBRACK] = ACTIONS(2917), + [sym_comment] = ACTIONS(50), + }, + [1214] = { + [anon_sym_RBRACE] = ACTIONS(2919), + [anon_sym_LBRACK] = ACTIONS(2921), + [sym_comment] = ACTIONS(50), + }, + [1215] = { + [sym__heredoc_middle] = ACTIONS(1066), + [sym__heredoc_end] = ACTIONS(1066), + [anon_sym_DOLLAR] = ACTIONS(1544), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1066), + [sym_comment] = ACTIONS(50), + }, + [1216] = { + [anon_sym_AT] = ACTIONS(2923), + [sym_comment] = ACTIONS(50), + }, + [1217] = { + [sym_concatenation] = STATE(1418), + [sym_string] = STATE(1415), + [sym_simple_expansion] = STATE(1415), + [sym_expansion] = STATE(1415), + [sym_command_substitution] = STATE(1415), + [sym_process_substitution] = STATE(1415), + [sym_word] = ACTIONS(2925), + [anon_sym_RBRACE] = ACTIONS(2927), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(2925), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2929), + }, + [1218] = { + [sym__heredoc_middle] = ACTIONS(1078), + [sym__heredoc_end] = ACTIONS(1078), + [anon_sym_DOLLAR] = ACTIONS(1554), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1078), + [sym_comment] = ACTIONS(50), + }, + [1219] = { + [anon_sym_AT] = ACTIONS(2931), + [sym_comment] = ACTIONS(50), + }, + [1220] = { + [sym_concatenation] = STATE(1422), + [sym_string] = STATE(1420), + [sym_simple_expansion] = STATE(1420), + [sym_expansion] = STATE(1420), + [sym_command_substitution] = STATE(1420), + [sym_process_substitution] = STATE(1420), + [sym_word] = ACTIONS(2933), + [anon_sym_RBRACE] = ACTIONS(2919), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(2933), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2935), + }, + [1221] = { + [anon_sym_RBRACK] = ACTIONS(2937), + [sym_comment] = ACTIONS(50), + }, + [1222] = { + [anon_sym_RBRACK] = ACTIONS(2939), + [sym_comment] = ACTIONS(50), + }, + [1223] = { + [anon_sym_RBRACE] = ACTIONS(2941), + [sym_comment] = ACTIONS(50), + }, + [1224] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2941), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1225] = { + [sym__concat] = ACTIONS(2268), + [anon_sym_PIPE] = ACTIONS(2268), + [anon_sym_RPAREN] = ACTIONS(2268), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_RBRACK] = ACTIONS(2268), + [sym_comment] = ACTIONS(50), + }, + [1226] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2943), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1227] = { + [sym__concat] = ACTIONS(2274), + [anon_sym_PIPE] = ACTIONS(2274), + [anon_sym_RPAREN] = ACTIONS(2274), + [anon_sym_RBRACE] = ACTIONS(2274), + [anon_sym_RBRACK] = ACTIONS(2274), + [sym_comment] = ACTIONS(50), + }, + [1228] = { + [anon_sym_RBRACE] = ACTIONS(2945), + [sym_comment] = ACTIONS(50), + }, + [1229] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1230] = { + [sym__concat] = ACTIONS(2280), + [anon_sym_PIPE] = ACTIONS(2280), + [anon_sym_RPAREN] = ACTIONS(2280), + [anon_sym_RBRACE] = ACTIONS(2280), + [anon_sym_RBRACK] = ACTIONS(2280), + [sym_comment] = ACTIONS(50), + }, + [1231] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2947), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1232] = { + [sym__concat] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2286), + [anon_sym_RPAREN] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_RBRACK] = ACTIONS(2286), + [sym_comment] = ACTIONS(50), + }, + [1233] = { + [anon_sym_RBRACK] = ACTIONS(2949), + [sym_comment] = ACTIONS(50), + }, + [1234] = { + [anon_sym_RBRACK] = ACTIONS(2951), + [sym_comment] = ACTIONS(50), + }, + [1235] = { + [anon_sym_RBRACE] = ACTIONS(2953), + [sym_comment] = ACTIONS(50), + }, + [1236] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1237] = { + [sym_file_descriptor] = ACTIONS(2268), + [sym_word] = ACTIONS(2268), + [sym__concat] = ACTIONS(2268), + [sym_variable_name] = ACTIONS(2268), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_RPAREN] = ACTIONS(2270), + [anon_sym_SEMI_SEMI] = ACTIONS(2270), + [anon_sym_PIPE_AMP] = ACTIONS(2270), + [anon_sym_AMP_AMP] = ACTIONS(2270), + [anon_sym_PIPE_PIPE] = ACTIONS(2270), + [anon_sym_LT] = ACTIONS(2270), + [anon_sym_GT] = ACTIONS(2270), + [anon_sym_GT_GT] = ACTIONS(2270), + [anon_sym_AMP_GT] = ACTIONS(2270), + [anon_sym_AMP_GT_GT] = ACTIONS(2270), + [anon_sym_LT_AMP] = ACTIONS(2270), + [anon_sym_GT_AMP] = ACTIONS(2270), + [anon_sym_DQUOTE] = ACTIONS(2270), + [sym_raw_string] = ACTIONS(2270), + [anon_sym_DOLLAR] = ACTIONS(2270), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2270), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2270), + [anon_sym_BQUOTE] = ACTIONS(2270), + [anon_sym_LT_LPAREN] = ACTIONS(2270), + [anon_sym_GT_LPAREN] = ACTIONS(2270), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2270), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym_LF] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(2270), + }, + [1238] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2955), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1239] = { + [sym_file_descriptor] = ACTIONS(2274), + [sym_word] = ACTIONS(2274), + [sym__concat] = ACTIONS(2274), + [sym_variable_name] = ACTIONS(2274), + [anon_sym_PIPE] = ACTIONS(2276), + [anon_sym_RPAREN] = ACTIONS(2276), + [anon_sym_SEMI_SEMI] = ACTIONS(2276), + [anon_sym_PIPE_AMP] = ACTIONS(2276), + [anon_sym_AMP_AMP] = ACTIONS(2276), + [anon_sym_PIPE_PIPE] = ACTIONS(2276), + [anon_sym_LT] = ACTIONS(2276), + [anon_sym_GT] = ACTIONS(2276), + [anon_sym_GT_GT] = ACTIONS(2276), + [anon_sym_AMP_GT] = ACTIONS(2276), + [anon_sym_AMP_GT_GT] = ACTIONS(2276), + [anon_sym_LT_AMP] = ACTIONS(2276), + [anon_sym_GT_AMP] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_raw_string] = ACTIONS(2276), + [anon_sym_DOLLAR] = ACTIONS(2276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2276), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2276), + [anon_sym_BQUOTE] = ACTIONS(2276), + [anon_sym_LT_LPAREN] = ACTIONS(2276), + [anon_sym_GT_LPAREN] = ACTIONS(2276), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_LF] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(2276), + }, + [1240] = { + [anon_sym_RBRACE] = ACTIONS(2957), + [sym_comment] = ACTIONS(50), + }, + [1241] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1242] = { + [sym_file_descriptor] = ACTIONS(2280), + [sym_word] = ACTIONS(2280), + [sym__concat] = ACTIONS(2280), + [sym_variable_name] = ACTIONS(2280), + [anon_sym_PIPE] = ACTIONS(2282), + [anon_sym_RPAREN] = ACTIONS(2282), + [anon_sym_SEMI_SEMI] = ACTIONS(2282), + [anon_sym_PIPE_AMP] = ACTIONS(2282), + [anon_sym_AMP_AMP] = ACTIONS(2282), + [anon_sym_PIPE_PIPE] = ACTIONS(2282), + [anon_sym_LT] = ACTIONS(2282), + [anon_sym_GT] = ACTIONS(2282), + [anon_sym_GT_GT] = ACTIONS(2282), + [anon_sym_AMP_GT] = ACTIONS(2282), + [anon_sym_AMP_GT_GT] = ACTIONS(2282), + [anon_sym_LT_AMP] = ACTIONS(2282), + [anon_sym_GT_AMP] = ACTIONS(2282), + [anon_sym_DQUOTE] = ACTIONS(2282), + [sym_raw_string] = ACTIONS(2282), + [anon_sym_DOLLAR] = ACTIONS(2282), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2282), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2282), + [anon_sym_BQUOTE] = ACTIONS(2282), + [anon_sym_LT_LPAREN] = ACTIONS(2282), + [anon_sym_GT_LPAREN] = ACTIONS(2282), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2282), + [anon_sym_SEMI] = ACTIONS(2282), + [anon_sym_LF] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2282), + }, + [1243] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1244] = { + [sym_file_descriptor] = ACTIONS(2286), + [sym_word] = ACTIONS(2286), + [sym__concat] = ACTIONS(2286), + [sym_variable_name] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_RPAREN] = ACTIONS(2288), + [anon_sym_SEMI_SEMI] = ACTIONS(2288), + [anon_sym_PIPE_AMP] = ACTIONS(2288), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_AMP_GT] = ACTIONS(2288), + [anon_sym_AMP_GT_GT] = ACTIONS(2288), + [anon_sym_LT_AMP] = ACTIONS(2288), + [anon_sym_GT_AMP] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2288), + [sym_raw_string] = ACTIONS(2288), + [anon_sym_DOLLAR] = ACTIONS(2288), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2288), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2288), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LT_LPAREN] = ACTIONS(2288), + [anon_sym_GT_LPAREN] = ACTIONS(2288), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_LF] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + }, + [1245] = { + [sym_word] = ACTIONS(1629), + [sym__concat] = ACTIONS(1629), + [anon_sym_SEMI_SEMI] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [sym_raw_string] = ACTIONS(1631), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1631), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1631), + [anon_sym_LT_LPAREN] = ACTIONS(1631), + [anon_sym_GT_LPAREN] = ACTIONS(1631), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1631), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_LF] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1631), + }, + [1246] = { + [anon_sym_AT] = ACTIONS(2961), + [sym_comment] = ACTIONS(50), + }, + [1247] = { + [sym_word] = ACTIONS(1635), + [sym__concat] = ACTIONS(1635), + [anon_sym_SEMI_SEMI] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1637), + [sym_raw_string] = ACTIONS(1637), + [anon_sym_DOLLAR] = ACTIONS(1637), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1637), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1637), + [anon_sym_BQUOTE] = ACTIONS(1637), + [anon_sym_LT_LPAREN] = ACTIONS(1637), + [anon_sym_GT_LPAREN] = ACTIONS(1637), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1637), + [anon_sym_LF] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1637), + }, + [1248] = { + [anon_sym_AT] = ACTIONS(2963), + [sym_comment] = ACTIONS(50), + }, + [1249] = { + [anon_sym_RBRACK] = ACTIONS(2965), + [sym_comment] = ACTIONS(50), + }, + [1250] = { + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(2967), + [anon_sym_RBRACE] = ACTIONS(2969), + [sym_comment] = ACTIONS(50), + }, + [1251] = { + [sym_word] = ACTIONS(1647), + [sym__concat] = ACTIONS(1647), + [anon_sym_SEMI_SEMI] = ACTIONS(1649), + [anon_sym_DQUOTE] = ACTIONS(1649), + [sym_raw_string] = ACTIONS(1649), + [anon_sym_DOLLAR] = ACTIONS(1649), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1649), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1649), + [anon_sym_LT_LPAREN] = ACTIONS(1649), + [anon_sym_GT_LPAREN] = ACTIONS(1649), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1649), + [anon_sym_SEMI] = ACTIONS(1649), + [anon_sym_LF] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + }, + [1252] = { + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(2971), + [anon_sym_RBRACE] = ACTIONS(2973), + [sym_comment] = ACTIONS(50), + }, + [1253] = { + [sym__concat] = ACTIONS(2965), + [anon_sym_RBRACE] = ACTIONS(2969), + [sym_comment] = ACTIONS(50), + }, + [1254] = { + [anon_sym_RBRACK] = ACTIONS(2975), + [sym_comment] = ACTIONS(50), + }, + [1255] = { + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(2979), + [sym_comment] = ACTIONS(50), + }, + [1256] = { + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(2981), + [anon_sym_RBRACE] = ACTIONS(2983), + [sym_comment] = ACTIONS(50), + }, + [1257] = { + [sym__concat] = ACTIONS(2975), + [anon_sym_RBRACE] = ACTIONS(2979), + [sym_comment] = ACTIONS(50), + }, + [1258] = { + [sym__terminated_statement] = STATE(451), + [sym_for_statement] = STATE(452), + [sym_while_statement] = STATE(452), + [sym_if_statement] = STATE(452), + [sym_case_statement] = STATE(452), + [sym_function_definition] = STATE(452), + [sym_subshell] = STATE(452), + [sym_pipeline] = STATE(452), + [sym_list] = STATE(452), + [sym_bracket_command] = STATE(452), + [sym_command] = STATE(452), + [sym_command_name] = STATE(25), + [sym_variable_assignment] = STATE(455), + [sym_declaration_command] = STATE(452), + [sym_subscript] = STATE(27), + [sym_file_redirect] = STATE(28), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(730), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_fi] = ACTIONS(2985), + [anon_sym_elif] = ACTIONS(2985), + [anon_sym_else] = ACTIONS(2985), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), + }, + [1259] = { + [anon_sym_PIPE] = ACTIONS(2987), + [anon_sym_RPAREN] = ACTIONS(2987), + [anon_sym_SEMI_SEMI] = ACTIONS(2987), + [anon_sym_PIPE_AMP] = ACTIONS(2987), + [anon_sym_AMP_AMP] = ACTIONS(2987), + [anon_sym_PIPE_PIPE] = ACTIONS(2987), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym_LF] = ACTIONS(2987), + [anon_sym_AMP] = ACTIONS(2987), + }, + [1260] = { + [aux_sym_concatenation_repeat1] = STATE(1011), + [sym__concat] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(2989), + [anon_sym_RPAREN] = ACTIONS(2989), + [sym_comment] = ACTIONS(50), + }, + [1261] = { + [aux_sym_concatenation_repeat1] = STATE(1014), + [sym__concat] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(2991), + [anon_sym_RPAREN] = ACTIONS(2991), + [sym_comment] = ACTIONS(50), + }, + [1262] = { + [anon_sym_PIPE] = ACTIONS(2989), + [anon_sym_RPAREN] = ACTIONS(2989), + [sym_comment] = ACTIONS(50), + }, + [1263] = { + [sym_word] = ACTIONS(2993), + [anon_sym_esac] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2993), + [sym_raw_string] = ACTIONS(2993), + [anon_sym_DOLLAR] = ACTIONS(2995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2993), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2993), + [anon_sym_BQUOTE] = ACTIONS(2993), + [anon_sym_LT_LPAREN] = ACTIONS(2993), + [anon_sym_GT_LPAREN] = ACTIONS(2993), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2997), + }, + [1264] = { + [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(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(1448), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_SEMI_SEMI] = ACTIONS(2999), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), + }, + [1265] = { + [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(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(1449), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_SEMI_SEMI] = ACTIONS(2999), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), + }, + [1266] = { + [aux_sym_case_item_repeat1] = STATE(1266), + [anon_sym_PIPE] = ACTIONS(3001), + [anon_sym_RPAREN] = ACTIONS(2989), + [sym_comment] = ACTIONS(50), + }, + [1267] = { + [aux_sym_concatenation_repeat1] = STATE(1267), + [sym__concat] = ACTIONS(1942), + [anon_sym_PIPE] = ACTIONS(731), + [anon_sym_RPAREN] = ACTIONS(731), + [sym_comment] = ACTIONS(50), + }, + [1268] = { + [sym_word] = ACTIONS(3004), + [anon_sym_esac] = ACTIONS(3006), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym_raw_string] = ACTIONS(3004), + [anon_sym_DOLLAR] = ACTIONS(3006), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3004), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3004), + [anon_sym_BQUOTE] = ACTIONS(3004), + [anon_sym_LT_LPAREN] = ACTIONS(3004), + [anon_sym_GT_LPAREN] = ACTIONS(3004), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3008), + }, + [1269] = { + [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(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(1448), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_SEMI_SEMI] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), + }, + [1270] = { + [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(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(1451), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_SEMI_SEMI] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), + }, + [1271] = { + [anon_sym_PIPE] = ACTIONS(3012), + [anon_sym_RPAREN] = ACTIONS(3012), + [anon_sym_SEMI_SEMI] = ACTIONS(3012), + [anon_sym_PIPE_AMP] = ACTIONS(3012), + [anon_sym_AMP_AMP] = ACTIONS(3012), + [anon_sym_PIPE_PIPE] = ACTIONS(3012), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(3012), + [anon_sym_LF] = ACTIONS(3012), + [anon_sym_AMP] = ACTIONS(3012), + }, + [1272] = { + [anon_sym_RBRACE] = ACTIONS(3014), + [sym_comment] = ACTIONS(50), + }, + [1273] = { + [anon_sym_RBRACE] = ACTIONS(3016), + [sym_comment] = ACTIONS(50), + }, + [1274] = { + [sym__concat] = ACTIONS(2746), + [anon_sym_in] = ACTIONS(2748), + [anon_sym_SEMI_SEMI] = ACTIONS(2748), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2748), + [anon_sym_LF] = ACTIONS(2748), + [anon_sym_AMP] = ACTIONS(2748), + }, + [1275] = { + [sym__concat] = ACTIONS(2750), + [anon_sym_in] = ACTIONS(2752), + [anon_sym_SEMI_SEMI] = ACTIONS(2752), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2752), + [anon_sym_LF] = ACTIONS(2752), + [anon_sym_AMP] = ACTIONS(2752), + }, + [1276] = { + [sym__concat] = ACTIONS(2754), + [anon_sym_in] = ACTIONS(2756), + [anon_sym_SEMI_SEMI] = ACTIONS(2756), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_LF] = ACTIONS(2756), + [anon_sym_AMP] = ACTIONS(2756), + }, + [1277] = { + [sym__concat] = ACTIONS(2758), + [anon_sym_in] = ACTIONS(2760), + [anon_sym_SEMI_SEMI] = ACTIONS(2760), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2760), + [anon_sym_LF] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2760), + }, + [1278] = { + [anon_sym_PIPE] = ACTIONS(3018), + [anon_sym_RPAREN] = ACTIONS(3018), + [anon_sym_SEMI_SEMI] = ACTIONS(3018), + [anon_sym_PIPE_AMP] = ACTIONS(3018), + [anon_sym_AMP_AMP] = ACTIONS(3018), + [anon_sym_PIPE_PIPE] = ACTIONS(3018), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(3018), + [anon_sym_LF] = ACTIONS(3018), + [anon_sym_AMP] = ACTIONS(3018), + }, + [1279] = { + [sym__concat] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(733), + [anon_sym_AMP] = ACTIONS(733), + }, + [1280] = { + [sym__concat] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_RPAREN] = ACTIONS(737), + [anon_sym_SEMI_SEMI] = ACTIONS(737), + [anon_sym_PIPE_AMP] = ACTIONS(737), + [anon_sym_AMP_AMP] = ACTIONS(737), + [anon_sym_PIPE_PIPE] = ACTIONS(737), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(737), + [anon_sym_AMP] = ACTIONS(737), + }, + [1281] = { + [aux_sym_concatenation_repeat1] = STATE(1281), + [sym__concat] = ACTIONS(3020), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(733), + [anon_sym_AMP] = ACTIONS(733), + }, + [1282] = { + [sym__concat] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1039), + [anon_sym_SEMI_SEMI] = ACTIONS(1039), + [anon_sym_PIPE_AMP] = ACTIONS(1039), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_AMP] = ACTIONS(1039), + }, + [1283] = { + [anon_sym_RBRACE] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(3025), + [sym_comment] = ACTIONS(50), + }, + [1284] = { + [anon_sym_RBRACE] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3029), + [sym_comment] = ACTIONS(50), + }, + [1285] = { + [sym__concat] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_RPAREN] = ACTIONS(1068), + [anon_sym_SEMI_SEMI] = ACTIONS(1068), + [anon_sym_PIPE_AMP] = ACTIONS(1068), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE_PIPE] = ACTIONS(1068), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_LF] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1068), + }, + [1286] = { + [anon_sym_AT] = ACTIONS(3031), + [sym_comment] = ACTIONS(50), + }, + [1287] = { + [sym_concatenation] = STATE(1462), + [sym_string] = STATE(1459), + [sym_simple_expansion] = STATE(1459), + [sym_expansion] = STATE(1459), + [sym_command_substitution] = STATE(1459), + [sym_process_substitution] = STATE(1459), + [sym_word] = ACTIONS(3033), + [anon_sym_RBRACE] = ACTIONS(3035), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(3033), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3037), + }, + [1288] = { + [sym__concat] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1080), [anon_sym_RPAREN] = ACTIONS(1080), + [anon_sym_SEMI_SEMI] = ACTIONS(1080), [anon_sym_PIPE_AMP] = ACTIONS(1080), [anon_sym_AMP_AMP] = ACTIONS(1080), [anon_sym_PIPE_PIPE] = ACTIONS(1080), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_GT] = ACTIONS(1080), - [anon_sym_AMP_GT] = ACTIONS(1587), - [anon_sym_AMP_GT_GT] = ACTIONS(1080), - [anon_sym_LT_AMP] = ACTIONS(1080), - [anon_sym_GT_AMP] = ACTIONS(1080), - [anon_sym_LT_LT] = ACTIONS(1587), - [anon_sym_LT_LT_DASH] = ACTIONS(1080), - [anon_sym_BQUOTE] = ACTIONS(1080), - [sym_comment] = ACTIONS(52), - }, - [1177] = { - [sym_file_descriptor] = ACTIONS(1101), - [sym__concat] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(1101), - [anon_sym_PIPE_AMP] = ACTIONS(1101), - [anon_sym_AMP_AMP] = ACTIONS(1101), - [anon_sym_PIPE_PIPE] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1589), - [anon_sym_GT_GT] = ACTIONS(1101), - [anon_sym_AMP_GT] = ACTIONS(1589), - [anon_sym_AMP_GT_GT] = ACTIONS(1101), - [anon_sym_LT_AMP] = ACTIONS(1101), - [anon_sym_GT_AMP] = ACTIONS(1101), - [anon_sym_LT_LT] = ACTIONS(1589), - [anon_sym_LT_LT_DASH] = ACTIONS(1101), - [anon_sym_BQUOTE] = ACTIONS(1101), - [sym_comment] = ACTIONS(52), - }, - [1178] = { - [aux_sym_concatenation_repeat1] = STATE(1178), - [sym_file_descriptor] = ACTIONS(1101), - [sym__concat] = ACTIONS(2927), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(1101), - [anon_sym_PIPE_AMP] = ACTIONS(1101), - [anon_sym_AMP_AMP] = ACTIONS(1101), - [anon_sym_PIPE_PIPE] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1589), - [anon_sym_GT_GT] = ACTIONS(1101), - [anon_sym_AMP_GT] = ACTIONS(1589), - [anon_sym_AMP_GT_GT] = ACTIONS(1101), - [anon_sym_LT_AMP] = ACTIONS(1101), - [anon_sym_GT_AMP] = ACTIONS(1101), - [anon_sym_LT_LT] = ACTIONS(1589), - [anon_sym_LT_LT_DASH] = ACTIONS(1101), - [sym_comment] = ACTIONS(52), - }, - [1179] = { - [anon_sym_RBRACE] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(2932), - [sym_comment] = ACTIONS(52), - }, - [1180] = { - [anon_sym_RBRACE] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2936), - [sym_comment] = ACTIONS(52), - }, - [1181] = { - [sym_file_descriptor] = ACTIONS(1116), - [sym__concat] = ACTIONS(1116), - [anon_sym_PIPE] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(1116), - [anon_sym_PIPE_AMP] = ACTIONS(1116), - [anon_sym_AMP_AMP] = ACTIONS(1116), - [anon_sym_PIPE_PIPE] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(1602), - [anon_sym_GT] = ACTIONS(1602), - [anon_sym_GT_GT] = ACTIONS(1116), - [anon_sym_AMP_GT] = ACTIONS(1602), - [anon_sym_AMP_GT_GT] = ACTIONS(1116), - [anon_sym_LT_AMP] = ACTIONS(1116), - [anon_sym_GT_AMP] = ACTIONS(1116), - [anon_sym_LT_LT] = ACTIONS(1602), - [anon_sym_LT_LT_DASH] = ACTIONS(1116), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_comment] = ACTIONS(52), - }, - [1182] = { - [anon_sym_AT] = ACTIONS(2938), - [sym_comment] = ACTIONS(52), - }, - [1183] = { - [sym_concatenation] = STATE(1370), - [sym_string] = STATE(1369), - [sym_simple_expansion] = STATE(1369), - [sym_expansion] = STATE(1369), - [sym_command_substitution] = STATE(1369), - [sym_process_substitution] = STATE(1369), - [anon_sym_RBRACE] = ACTIONS(2940), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(2942), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(2944), - [sym_comment] = ACTIONS(52), - }, - [1184] = { - [sym_file_descriptor] = ACTIONS(1128), - [sym__concat] = ACTIONS(1128), - [anon_sym_PIPE] = ACTIONS(1612), - [anon_sym_RPAREN] = ACTIONS(1128), - [anon_sym_PIPE_AMP] = ACTIONS(1128), - [anon_sym_AMP_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1612), - [anon_sym_GT] = ACTIONS(1612), - [anon_sym_GT_GT] = ACTIONS(1128), - [anon_sym_AMP_GT] = ACTIONS(1612), - [anon_sym_AMP_GT_GT] = ACTIONS(1128), - [anon_sym_LT_AMP] = ACTIONS(1128), - [anon_sym_GT_AMP] = ACTIONS(1128), - [anon_sym_LT_LT] = ACTIONS(1612), - [anon_sym_LT_LT_DASH] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(52), - }, - [1185] = { - [anon_sym_AT] = ACTIONS(2946), - [sym_comment] = ACTIONS(52), - }, - [1186] = { - [sym_concatenation] = STATE(1373), - [sym_string] = STATE(1372), - [sym_simple_expansion] = STATE(1372), - [sym_expansion] = STATE(1372), - [sym_command_substitution] = STATE(1372), - [sym_process_substitution] = STATE(1372), - [anon_sym_RBRACE] = ACTIONS(2934), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(2950), - [sym_comment] = ACTIONS(52), - }, - [1187] = { - [sym_file_descriptor] = ACTIONS(1222), - [sym__concat] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1620), - [anon_sym_RPAREN] = ACTIONS(1222), - [anon_sym_PIPE_AMP] = ACTIONS(1222), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), - [anon_sym_LT] = ACTIONS(1620), - [anon_sym_GT] = ACTIONS(1620), - [anon_sym_GT_GT] = ACTIONS(1222), - [anon_sym_AMP_GT] = ACTIONS(1620), - [anon_sym_AMP_GT_GT] = ACTIONS(1222), - [anon_sym_LT_AMP] = ACTIONS(1222), - [anon_sym_GT_AMP] = ACTIONS(1222), - [anon_sym_LT_LT] = ACTIONS(1620), - [anon_sym_LT_LT_DASH] = ACTIONS(1222), - [anon_sym_BQUOTE] = ACTIONS(1222), - [sym_comment] = ACTIONS(52), - }, - [1188] = { - [sym_file_descriptor] = ACTIONS(1274), - [sym__concat] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1622), - [anon_sym_RPAREN] = ACTIONS(1274), - [anon_sym_PIPE_AMP] = ACTIONS(1274), - [anon_sym_AMP_AMP] = ACTIONS(1274), - [anon_sym_PIPE_PIPE] = ACTIONS(1274), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_GT_GT] = ACTIONS(1274), - [anon_sym_AMP_GT] = ACTIONS(1622), - [anon_sym_AMP_GT_GT] = ACTIONS(1274), - [anon_sym_LT_AMP] = ACTIONS(1274), - [anon_sym_GT_AMP] = ACTIONS(1274), - [anon_sym_LT_LT] = ACTIONS(1622), - [anon_sym_LT_LT_DASH] = ACTIONS(1274), - [anon_sym_BQUOTE] = ACTIONS(1274), - [sym_comment] = ACTIONS(52), - }, - [1189] = { - [sym_file_descriptor] = ACTIONS(2564), - [anon_sym_PIPE] = ACTIONS(2952), - [anon_sym_RPAREN] = ACTIONS(2564), - [anon_sym_PIPE_AMP] = ACTIONS(2564), - [anon_sym_AMP_AMP] = ACTIONS(2564), - [anon_sym_PIPE_PIPE] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2952), - [anon_sym_GT] = ACTIONS(2952), - [anon_sym_GT_GT] = ACTIONS(2564), - [anon_sym_AMP_GT] = ACTIONS(2952), - [anon_sym_AMP_GT_GT] = ACTIONS(2564), - [anon_sym_LT_AMP] = ACTIONS(2564), - [anon_sym_GT_AMP] = ACTIONS(2564), - [anon_sym_LT_LT] = ACTIONS(2952), - [anon_sym_LT_LT_DASH] = ACTIONS(2564), - [anon_sym_BQUOTE] = ACTIONS(2564), - [sym_comment] = ACTIONS(52), - }, - [1190] = { - [aux_sym_concatenation_repeat1] = STATE(1190), - [sym_file_descriptor] = ACTIONS(1101), - [sym__concat] = ACTIONS(2820), - [sym_variable_name] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_PIPE_AMP] = ACTIONS(1101), - [anon_sym_AMP_AMP] = ACTIONS(1101), - [anon_sym_PIPE_PIPE] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1589), - [anon_sym_GT_GT] = ACTIONS(1101), - [anon_sym_AMP_GT] = ACTIONS(1589), - [anon_sym_AMP_GT_GT] = ACTIONS(1101), - [anon_sym_LT_AMP] = ACTIONS(1101), - [anon_sym_GT_AMP] = ACTIONS(1101), - [anon_sym_DQUOTE] = ACTIONS(1101), - [sym_raw_string] = ACTIONS(1101), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1101), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), - [anon_sym_BQUOTE] = ACTIONS(1101), - [anon_sym_LT_LPAREN] = ACTIONS(1101), - [anon_sym_GT_LPAREN] = ACTIONS(1101), - [sym_word] = ACTIONS(1103), - [sym_comment] = ACTIONS(52), - }, - [1191] = { - [sym_file_redirect] = STATE(1326), - [sym_file_descriptor] = ACTIONS(1941), - [anon_sym_PIPE] = ACTIONS(2861), - [anon_sym_PIPE_AMP] = ACTIONS(2863), - [anon_sym_AMP_AMP] = ACTIONS(2863), - [anon_sym_PIPE_PIPE] = ACTIONS(2863), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_GT_GT] = ACTIONS(1945), - [anon_sym_AMP_GT] = ACTIONS(1943), - [anon_sym_AMP_GT_GT] = ACTIONS(1945), - [anon_sym_LT_AMP] = ACTIONS(1945), - [anon_sym_GT_AMP] = ACTIONS(1945), - [anon_sym_BQUOTE] = ACTIONS(2863), - [sym_comment] = ACTIONS(52), - }, - [1192] = { - [sym_concatenation] = STATE(1328), - [sym_string] = STATE(1374), - [sym_simple_expansion] = STATE(1374), - [sym_expansion] = STATE(1374), - [sym_command_substitution] = STATE(1374), - [sym_process_substitution] = STATE(1374), - [anon_sym_DQUOTE] = ACTIONS(2423), - [sym_raw_string] = ACTIONS(2954), - [anon_sym_DOLLAR] = ACTIONS(2427), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2431), - [anon_sym_BQUOTE] = ACTIONS(2433), - [anon_sym_LT_LPAREN] = ACTIONS(2435), - [anon_sym_GT_LPAREN] = ACTIONS(2435), - [sym_word] = ACTIONS(2956), - [sym_comment] = ACTIONS(52), - }, - [1193] = { - [aux_sym_concatenation_repeat1] = STATE(1375), - [sym__concat] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(438), - [anon_sym_PIPE_AMP] = ACTIONS(434), - [anon_sym_AMP_AMP] = ACTIONS(434), - [anon_sym_PIPE_PIPE] = ACTIONS(434), - [anon_sym_BQUOTE] = ACTIONS(434), - [sym_comment] = ACTIONS(52), - }, - [1194] = { - [aux_sym_concatenation_repeat1] = STATE(1376), - [sym__concat] = ACTIONS(2453), - [sym_variable_name] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(883), - [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(883), - }, - [1195] = { - [aux_sym_concatenation_repeat1] = STATE(1195), - [sym_file_descriptor] = ACTIONS(1101), - [sym__concat] = ACTIONS(2927), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_PIPE_AMP] = ACTIONS(1101), - [anon_sym_AMP_AMP] = ACTIONS(1101), - [anon_sym_PIPE_PIPE] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1589), - [anon_sym_GT_GT] = ACTIONS(1101), - [anon_sym_AMP_GT] = ACTIONS(1589), - [anon_sym_AMP_GT_GT] = ACTIONS(1101), - [anon_sym_LT_AMP] = ACTIONS(1101), - [anon_sym_GT_AMP] = ACTIONS(1101), - [anon_sym_LT_LT] = ACTIONS(1589), - [anon_sym_LT_LT_DASH] = ACTIONS(1101), - [anon_sym_BQUOTE] = ACTIONS(1101), - [sym_comment] = ACTIONS(52), - }, - [1196] = { - [sym_file_descriptor] = ACTIONS(1712), - [sym__concat] = ACTIONS(1712), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_RPAREN] = ACTIONS(1714), - [anon_sym_SEMI_SEMI] = ACTIONS(1714), - [anon_sym_PIPE_AMP] = ACTIONS(1714), - [anon_sym_AMP_AMP] = ACTIONS(1714), - [anon_sym_PIPE_PIPE] = ACTIONS(1714), - [anon_sym_LT] = ACTIONS(1714), - [anon_sym_GT] = ACTIONS(1714), - [anon_sym_GT_GT] = ACTIONS(1714), - [anon_sym_AMP_GT] = ACTIONS(1714), - [anon_sym_AMP_GT_GT] = ACTIONS(1714), - [anon_sym_LT_AMP] = ACTIONS(1714), - [anon_sym_GT_AMP] = ACTIONS(1714), - [anon_sym_LT_LT] = ACTIONS(1714), - [anon_sym_LT_LT_DASH] = ACTIONS(1714), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_LF] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1714), - }, - [1197] = { - [anon_sym_AT] = ACTIONS(2958), - [sym_comment] = ACTIONS(52), - }, - [1198] = { - [sym_file_descriptor] = ACTIONS(1718), - [sym__concat] = ACTIONS(1718), - [anon_sym_PIPE] = ACTIONS(1720), - [anon_sym_RPAREN] = ACTIONS(1720), - [anon_sym_SEMI_SEMI] = ACTIONS(1720), - [anon_sym_PIPE_AMP] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1720), - [anon_sym_AMP_GT] = ACTIONS(1720), - [anon_sym_AMP_GT_GT] = ACTIONS(1720), - [anon_sym_LT_AMP] = ACTIONS(1720), - [anon_sym_GT_AMP] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_LT_LT_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_LF] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1720), - }, - [1199] = { - [anon_sym_AT] = ACTIONS(2960), - [sym_comment] = ACTIONS(52), - }, - [1200] = { - [anon_sym_RBRACK] = ACTIONS(2962), - [sym_comment] = ACTIONS(52), - }, - [1201] = { - [sym_file_descriptor] = ACTIONS(1726), - [sym__concat] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_RPAREN] = ACTIONS(1728), - [anon_sym_SEMI_SEMI] = ACTIONS(1728), - [anon_sym_PIPE_AMP] = ACTIONS(1728), - [anon_sym_AMP_AMP] = ACTIONS(1728), - [anon_sym_PIPE_PIPE] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(1728), - [anon_sym_GT] = ACTIONS(1728), - [anon_sym_GT_GT] = ACTIONS(1728), - [anon_sym_AMP_GT] = ACTIONS(1728), - [anon_sym_AMP_GT_GT] = ACTIONS(1728), - [anon_sym_LT_AMP] = ACTIONS(1728), - [anon_sym_GT_AMP] = ACTIONS(1728), - [anon_sym_LT_LT] = ACTIONS(1728), - [anon_sym_LT_LT_DASH] = ACTIONS(1728), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_LF] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - }, - [1202] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(2964), - [sym_comment] = ACTIONS(52), - }, - [1203] = { - [anon_sym_RBRACE] = ACTIONS(2964), - [sym_comment] = ACTIONS(52), - }, - [1204] = { - [anon_sym_RBRACK] = ACTIONS(2966), - [sym_comment] = ACTIONS(52), - }, - [1205] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(2968), - [sym_comment] = ACTIONS(52), - }, - [1206] = { - [anon_sym_RBRACE] = ACTIONS(2968), - [sym_comment] = ACTIONS(52), - }, - [1207] = { - [anon_sym_RBRACE] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2972), - [sym_comment] = ACTIONS(52), - }, - [1208] = { - [anon_sym_RBRACE] = ACTIONS(2974), - [anon_sym_LBRACK] = ACTIONS(2976), - [sym_comment] = ACTIONS(52), - }, - [1209] = { - [sym__heredoc_middle] = ACTIONS(1116), - [sym__heredoc_end] = ACTIONS(1116), - [anon_sym_DOLLAR] = ACTIONS(1602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1116), - [sym_comment] = ACTIONS(52), - }, - [1210] = { - [anon_sym_AT] = ACTIONS(2978), - [sym_comment] = ACTIONS(52), - }, - [1211] = { - [sym_concatenation] = STATE(1390), - [sym_string] = STATE(1389), - [sym_simple_expansion] = STATE(1389), - [sym_expansion] = STATE(1389), - [sym_command_substitution] = STATE(1389), - [sym_process_substitution] = STATE(1389), - [anon_sym_RBRACE] = ACTIONS(2980), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(2982), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(2984), - [sym_comment] = ACTIONS(52), - }, - [1212] = { - [sym__heredoc_middle] = ACTIONS(1128), - [sym__heredoc_end] = ACTIONS(1128), - [anon_sym_DOLLAR] = ACTIONS(1612), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), - [sym_comment] = ACTIONS(52), - }, - [1213] = { - [anon_sym_AT] = ACTIONS(2986), - [sym_comment] = ACTIONS(52), - }, - [1214] = { - [sym_concatenation] = STATE(1393), - [sym_string] = STATE(1392), - [sym_simple_expansion] = STATE(1392), - [sym_expansion] = STATE(1392), - [sym_command_substitution] = STATE(1392), - [sym_process_substitution] = STATE(1392), - [anon_sym_RBRACE] = ACTIONS(2974), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(2988), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(2990), - [sym_comment] = ACTIONS(52), - }, - [1215] = { - [sym_file_descriptor] = ACTIONS(2080), - [sym_variable_name] = ACTIONS(2080), - [anon_sym_LT] = ACTIONS(2818), - [anon_sym_GT] = ACTIONS(2818), - [anon_sym_GT_GT] = ACTIONS(2080), - [anon_sym_AMP_GT] = ACTIONS(2818), - [anon_sym_AMP_GT_GT] = ACTIONS(2080), - [anon_sym_LT_AMP] = ACTIONS(2080), - [anon_sym_GT_AMP] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_raw_string] = ACTIONS(2080), - [anon_sym_DOLLAR] = ACTIONS(2818), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2080), - [anon_sym_BQUOTE] = ACTIONS(2080), - [anon_sym_LT_LPAREN] = ACTIONS(2080), - [anon_sym_GT_LPAREN] = ACTIONS(2080), - [sym_word] = ACTIONS(2818), - [sym_comment] = ACTIONS(52), - }, - [1216] = { - [anon_sym_RBRACK] = ACTIONS(2992), - [sym_comment] = ACTIONS(52), - }, - [1217] = { - [anon_sym_RBRACK] = ACTIONS(2994), - [sym_comment] = ACTIONS(52), - }, - [1218] = { - [anon_sym_RBRACE] = ACTIONS(2996), - [sym_comment] = ACTIONS(52), - }, - [1219] = { - [sym__concat] = ACTIONS(2351), - [anon_sym_PIPE] = ACTIONS(2351), - [anon_sym_RPAREN] = ACTIONS(2351), - [anon_sym_RBRACK] = ACTIONS(2351), - [sym_comment] = ACTIONS(52), - }, - [1220] = { - [anon_sym_RBRACE] = ACTIONS(2998), - [sym_comment] = ACTIONS(52), - }, - [1221] = { - [sym__concat] = ACTIONS(2357), - [anon_sym_PIPE] = ACTIONS(2357), - [anon_sym_RPAREN] = ACTIONS(2357), - [anon_sym_RBRACK] = ACTIONS(2357), - [sym_comment] = ACTIONS(52), - }, - [1222] = { - [sym__concat] = ACTIONS(1712), - [anon_sym_RPAREN] = ACTIONS(1712), - [anon_sym_DQUOTE] = ACTIONS(1712), - [sym_raw_string] = ACTIONS(1712), - [anon_sym_DOLLAR] = ACTIONS(2261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1712), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1712), - [anon_sym_BQUOTE] = ACTIONS(1712), - [anon_sym_LT_LPAREN] = ACTIONS(1712), - [anon_sym_GT_LPAREN] = ACTIONS(1712), - [sym_word] = ACTIONS(2261), - [sym_comment] = ACTIONS(52), - }, - [1223] = { - [anon_sym_AT] = ACTIONS(3000), - [sym_comment] = ACTIONS(52), - }, - [1224] = { - [sym__concat] = ACTIONS(1718), - [anon_sym_RPAREN] = ACTIONS(1718), - [anon_sym_DQUOTE] = ACTIONS(1718), - [sym_raw_string] = ACTIONS(1718), - [anon_sym_DOLLAR] = ACTIONS(2265), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1718), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), - [anon_sym_BQUOTE] = ACTIONS(1718), - [anon_sym_LT_LPAREN] = ACTIONS(1718), - [anon_sym_GT_LPAREN] = ACTIONS(1718), - [sym_word] = ACTIONS(2265), - [sym_comment] = ACTIONS(52), - }, - [1225] = { - [anon_sym_AT] = ACTIONS(3002), - [sym_comment] = ACTIONS(52), - }, - [1226] = { - [anon_sym_RBRACK] = ACTIONS(3004), - [sym_comment] = ACTIONS(52), - }, - [1227] = { - [sym__concat] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_DQUOTE] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1726), - [anon_sym_DOLLAR] = ACTIONS(2271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), - [anon_sym_BQUOTE] = ACTIONS(1726), - [anon_sym_LT_LPAREN] = ACTIONS(1726), - [anon_sym_GT_LPAREN] = ACTIONS(1726), - [sym_word] = ACTIONS(2271), - [sym_comment] = ACTIONS(52), - }, - [1228] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(3006), - [sym_comment] = ACTIONS(52), - }, - [1229] = { - [anon_sym_RBRACE] = ACTIONS(3006), - [sym_comment] = ACTIONS(52), - }, - [1230] = { - [anon_sym_RBRACK] = ACTIONS(3008), - [sym_comment] = ACTIONS(52), - }, - [1231] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(3010), - [sym_comment] = ACTIONS(52), - }, - [1232] = { - [anon_sym_RBRACE] = ACTIONS(3010), - [sym_comment] = ACTIONS(52), - }, - [1233] = { - [anon_sym_RBRACK] = ACTIONS(3012), - [sym_comment] = ACTIONS(52), - }, - [1234] = { - [anon_sym_RBRACK] = ACTIONS(3014), - [sym_comment] = ACTIONS(52), - }, - [1235] = { - [anon_sym_RBRACE] = ACTIONS(3016), - [sym_comment] = ACTIONS(52), - }, - [1236] = { - [sym_file_descriptor] = ACTIONS(2351), - [sym__concat] = ACTIONS(2351), - [sym_variable_name] = ACTIONS(2351), - [anon_sym_PIPE] = ACTIONS(2353), - [anon_sym_RPAREN] = ACTIONS(2353), - [anon_sym_SEMI_SEMI] = ACTIONS(2353), - [anon_sym_PIPE_AMP] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2353), - [anon_sym_GT] = ACTIONS(2353), - [anon_sym_GT_GT] = ACTIONS(2353), - [anon_sym_AMP_GT] = ACTIONS(2353), - [anon_sym_AMP_GT_GT] = ACTIONS(2353), - [anon_sym_LT_AMP] = ACTIONS(2353), - [anon_sym_GT_AMP] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2353), - [sym_raw_string] = ACTIONS(2353), - [anon_sym_DOLLAR] = ACTIONS(2353), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2353), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2353), - [anon_sym_BQUOTE] = ACTIONS(2353), - [anon_sym_LT_LPAREN] = ACTIONS(2353), - [anon_sym_GT_LPAREN] = ACTIONS(2353), - [sym_word] = ACTIONS(2353), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_LF] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2353), - }, - [1237] = { - [anon_sym_RBRACE] = ACTIONS(3018), - [sym_comment] = ACTIONS(52), - }, - [1238] = { - [sym_file_descriptor] = ACTIONS(2357), - [sym__concat] = ACTIONS(2357), - [sym_variable_name] = ACTIONS(2357), - [anon_sym_PIPE] = ACTIONS(2359), - [anon_sym_RPAREN] = ACTIONS(2359), - [anon_sym_SEMI_SEMI] = ACTIONS(2359), - [anon_sym_PIPE_AMP] = ACTIONS(2359), - [anon_sym_AMP_AMP] = ACTIONS(2359), - [anon_sym_PIPE_PIPE] = ACTIONS(2359), - [anon_sym_LT] = ACTIONS(2359), - [anon_sym_GT] = ACTIONS(2359), - [anon_sym_GT_GT] = ACTIONS(2359), - [anon_sym_AMP_GT] = ACTIONS(2359), - [anon_sym_AMP_GT_GT] = ACTIONS(2359), - [anon_sym_LT_AMP] = ACTIONS(2359), - [anon_sym_GT_AMP] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [sym_raw_string] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(2359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2359), - [anon_sym_BQUOTE] = ACTIONS(2359), - [anon_sym_LT_LPAREN] = ACTIONS(2359), - [anon_sym_GT_LPAREN] = ACTIONS(2359), - [sym_word] = ACTIONS(2359), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2359), - [anon_sym_LF] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - }, - [1239] = { - [sym__concat] = ACTIONS(1712), - [anon_sym_SEMI_SEMI] = ACTIONS(1714), - [anon_sym_DQUOTE] = ACTIONS(1714), - [sym_raw_string] = ACTIONS(1714), - [anon_sym_DOLLAR] = ACTIONS(1714), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1714), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1714), - [anon_sym_BQUOTE] = ACTIONS(1714), - [anon_sym_LT_LPAREN] = ACTIONS(1714), - [anon_sym_GT_LPAREN] = ACTIONS(1714), - [sym_word] = ACTIONS(1714), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_LF] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1714), - }, - [1240] = { - [anon_sym_AT] = ACTIONS(3020), - [sym_comment] = ACTIONS(52), - }, - [1241] = { - [sym__concat] = ACTIONS(1718), - [anon_sym_SEMI_SEMI] = ACTIONS(1720), - [anon_sym_DQUOTE] = ACTIONS(1720), - [sym_raw_string] = ACTIONS(1720), - [anon_sym_DOLLAR] = ACTIONS(1720), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1720), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1720), - [anon_sym_BQUOTE] = ACTIONS(1720), - [anon_sym_LT_LPAREN] = ACTIONS(1720), - [anon_sym_GT_LPAREN] = ACTIONS(1720), - [sym_word] = ACTIONS(1720), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_LF] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1720), - }, - [1242] = { - [anon_sym_AT] = ACTIONS(3022), - [sym_comment] = ACTIONS(52), - }, - [1243] = { - [anon_sym_RBRACK] = ACTIONS(3024), - [sym_comment] = ACTIONS(52), - }, - [1244] = { - [sym__concat] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_raw_string] = ACTIONS(1728), - [anon_sym_DOLLAR] = ACTIONS(1728), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1728), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1728), - [anon_sym_BQUOTE] = ACTIONS(1728), - [anon_sym_LT_LPAREN] = ACTIONS(1728), - [anon_sym_GT_LPAREN] = ACTIONS(1728), - [sym_word] = ACTIONS(1728), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_LF] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - }, - [1245] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(3026), - [sym_comment] = ACTIONS(52), - }, - [1246] = { - [anon_sym_RBRACE] = ACTIONS(3026), - [sym_comment] = ACTIONS(52), - }, - [1247] = { - [anon_sym_RBRACK] = ACTIONS(3028), - [sym_comment] = ACTIONS(52), - }, - [1248] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(3030), - [sym_comment] = ACTIONS(52), - }, - [1249] = { - [anon_sym_RBRACE] = ACTIONS(3030), - [sym_comment] = ACTIONS(52), - }, - [1250] = { - [sym__terminated_statement] = STATE(459), - [sym_for_statement] = STATE(460), - [sym_while_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_case_statement] = STATE(460), - [sym_function_definition] = STATE(460), - [sym_subshell] = STATE(460), - [sym_pipeline] = STATE(460), - [sym_list] = STATE(460), - [sym_bracket_command] = STATE(460), - [sym_command] = STATE(460), - [sym_command_name] = STATE(25), - [sym_variable_assignment] = STATE(463), - [sym_declaration_command] = STATE(460), - [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(758), - [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(3032), - [anon_sym_elif] = ACTIONS(3032), - [anon_sym_else] = ACTIONS(3032), - [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), - }, - [1251] = { - [anon_sym_PIPE] = ACTIONS(3034), - [anon_sym_RPAREN] = ACTIONS(3034), - [anon_sym_SEMI_SEMI] = ACTIONS(3034), - [anon_sym_PIPE_AMP] = ACTIONS(3034), - [anon_sym_AMP_AMP] = ACTIONS(3034), - [anon_sym_PIPE_PIPE] = ACTIONS(3034), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(3034), - [anon_sym_LF] = ACTIONS(3034), - [anon_sym_AMP] = ACTIONS(3034), - }, - [1252] = { - [aux_sym_concatenation_repeat1] = STATE(1038), - [sym__concat] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(3036), - [anon_sym_RPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(52), - }, - [1253] = { - [anon_sym_PIPE] = ACTIONS(3036), - [anon_sym_RPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(52), - }, - [1254] = { - [anon_sym_esac] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [sym_raw_string] = ACTIONS(3040), - [anon_sym_DOLLAR] = ACTIONS(3038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3040), - [anon_sym_BQUOTE] = ACTIONS(3040), - [anon_sym_LT_LPAREN] = ACTIONS(3040), - [anon_sym_GT_LPAREN] = ACTIONS(3040), - [sym_word] = ACTIONS(3042), - [sym_comment] = ACTIONS(52), - }, - [1255] = { - [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(1415), - [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(3044), - [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), - }, - [1256] = { - [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(1416), - [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(3044), - [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), - }, - [1257] = { - [aux_sym_case_item_repeat1] = STATE(1257), - [anon_sym_PIPE] = ACTIONS(3046), - [anon_sym_RPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(52), - }, - [1258] = { - [aux_sym_concatenation_repeat1] = STATE(1258), - [sym__concat] = ACTIONS(2027), - [anon_sym_PIPE] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(1101), - [sym_comment] = ACTIONS(52), - }, - [1259] = { - [anon_sym_PIPE] = ACTIONS(3049), - [anon_sym_RPAREN] = ACTIONS(3049), - [anon_sym_SEMI_SEMI] = ACTIONS(3049), - [anon_sym_PIPE_AMP] = ACTIONS(3049), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_LF] = ACTIONS(3049), - [anon_sym_AMP] = ACTIONS(3049), - }, - [1260] = { - [anon_sym_RBRACE] = ACTIONS(3051), - [sym_comment] = ACTIONS(52), - }, - [1261] = { - [anon_sym_RBRACE] = ACTIONS(3053), - [sym_comment] = ACTIONS(52), - }, - [1262] = { - [sym__concat] = ACTIONS(2810), - [anon_sym_in] = ACTIONS(2812), - [anon_sym_SEMI_SEMI] = ACTIONS(2812), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_LF] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2812), - }, - [1263] = { - [sym__concat] = ACTIONS(2814), - [anon_sym_in] = ACTIONS(2816), - [anon_sym_SEMI_SEMI] = ACTIONS(2816), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_LF] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), - }, - [1264] = { - [sym__concat] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1082), - [anon_sym_RPAREN] = ACTIONS(1082), - [anon_sym_SEMI_SEMI] = ACTIONS(1082), - [anon_sym_PIPE_AMP] = ACTIONS(1082), - [anon_sym_AMP_AMP] = ACTIONS(1082), - [anon_sym_PIPE_PIPE] = ACTIONS(1082), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_LF] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - }, - [1265] = { - [sym__concat] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1103), - [anon_sym_SEMI_SEMI] = ACTIONS(1103), - [anon_sym_PIPE_AMP] = ACTIONS(1103), - [anon_sym_AMP_AMP] = ACTIONS(1103), - [anon_sym_PIPE_PIPE] = ACTIONS(1103), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_LF] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1103), - }, - [1266] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym__concat] = ACTIONS(3055), - [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_SEMI_SEMI] = ACTIONS(1103), - [anon_sym_PIPE_AMP] = ACTIONS(1103), - [anon_sym_AMP_AMP] = ACTIONS(1103), - [anon_sym_PIPE_PIPE] = ACTIONS(1103), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_LF] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1103), - }, - [1267] = { - [anon_sym_RBRACE] = ACTIONS(3058), - [anon_sym_LBRACK] = ACTIONS(3060), - [sym_comment] = ACTIONS(52), - }, - [1268] = { - [anon_sym_RBRACE] = ACTIONS(3062), - [anon_sym_LBRACK] = ACTIONS(3064), - [sym_comment] = ACTIONS(52), - }, - [1269] = { - [sym__concat] = ACTIONS(1116), - [anon_sym_PIPE] = ACTIONS(1118), - [anon_sym_RPAREN] = ACTIONS(1118), - [anon_sym_SEMI_SEMI] = ACTIONS(1118), - [anon_sym_PIPE_AMP] = ACTIONS(1118), - [anon_sym_AMP_AMP] = ACTIONS(1118), - [anon_sym_PIPE_PIPE] = ACTIONS(1118), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_LF] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - }, - [1270] = { - [anon_sym_AT] = ACTIONS(3066), - [sym_comment] = ACTIONS(52), - }, - [1271] = { - [sym_concatenation] = STATE(1426), - [sym_string] = STATE(1425), - [sym_simple_expansion] = STATE(1425), - [sym_expansion] = STATE(1425), - [sym_command_substitution] = STATE(1425), - [sym_process_substitution] = STATE(1425), - [anon_sym_RBRACE] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(3072), - [sym_comment] = ACTIONS(52), - }, - [1272] = { - [sym__concat] = ACTIONS(1128), - [anon_sym_PIPE] = ACTIONS(1130), - [anon_sym_RPAREN] = ACTIONS(1130), - [anon_sym_SEMI_SEMI] = ACTIONS(1130), - [anon_sym_PIPE_AMP] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1130), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1130), - [anon_sym_LF] = ACTIONS(1130), - [anon_sym_AMP] = ACTIONS(1130), - }, - [1273] = { - [anon_sym_AT] = ACTIONS(3074), - [sym_comment] = ACTIONS(52), - }, - [1274] = { - [sym_concatenation] = STATE(1429), - [sym_string] = STATE(1428), - [sym_simple_expansion] = STATE(1428), - [sym_expansion] = STATE(1428), - [sym_command_substitution] = STATE(1428), - [sym_process_substitution] = STATE(1428), - [anon_sym_RBRACE] = ACTIONS(3062), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(3076), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(3078), - [sym_comment] = ACTIONS(52), - }, - [1275] = { - [sym__concat] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1224), - [anon_sym_SEMI_SEMI] = ACTIONS(1224), - [anon_sym_PIPE_AMP] = ACTIONS(1224), - [anon_sym_AMP_AMP] = ACTIONS(1224), - [anon_sym_PIPE_PIPE] = ACTIONS(1224), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym_LF] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - }, - [1276] = { - [sym__concat] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_RPAREN] = ACTIONS(1276), - [anon_sym_SEMI_SEMI] = ACTIONS(1276), - [anon_sym_PIPE_AMP] = ACTIONS(1276), - [anon_sym_AMP_AMP] = ACTIONS(1276), - [anon_sym_PIPE_PIPE] = ACTIONS(1276), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_LF] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - }, - [1277] = { - [aux_sym_concatenation_repeat1] = STATE(1278), - [sym__concat] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(1973), - [anon_sym_RPAREN] = ACTIONS(1973), - [anon_sym_SEMI_SEMI] = ACTIONS(1973), - [anon_sym_PIPE_AMP] = ACTIONS(1973), - [anon_sym_AMP_AMP] = ACTIONS(1973), - [anon_sym_PIPE_PIPE] = ACTIONS(1973), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_LF] = ACTIONS(1973), - [anon_sym_AMP] = ACTIONS(1973), - }, - [1278] = { - [aux_sym_concatenation_repeat1] = STATE(1430), - [sym__concat] = ACTIONS(2239), - [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(64), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_LF] = ACTIONS(476), - [anon_sym_AMP] = ACTIONS(476), - }, - [1279] = { - [aux_sym_concatenation_repeat1] = STATE(1279), - [sym__concat] = ACTIONS(2765), - [sym_variable_name] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1103), - [anon_sym_SEMI_SEMI] = ACTIONS(1103), - [anon_sym_PIPE_AMP] = ACTIONS(1103), - [anon_sym_AMP_AMP] = ACTIONS(1103), - [anon_sym_PIPE_PIPE] = ACTIONS(1103), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1103), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_LF] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1103), - }, - [1280] = { - [anon_sym_RBRACE] = ACTIONS(3080), - [sym_comment] = ACTIONS(52), - }, - [1281] = { - [anon_sym_RBRACE] = ACTIONS(3082), - [sym_comment] = ACTIONS(52), - }, - [1282] = { - [sym__concat] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2810), - [anon_sym_RBRACK] = ACTIONS(3084), - [anon_sym_DQUOTE] = ACTIONS(2810), - [sym_raw_string] = ACTIONS(2810), - [anon_sym_DOLLAR] = ACTIONS(3084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2810), - [anon_sym_BQUOTE] = ACTIONS(2810), - [anon_sym_LT_LPAREN] = ACTIONS(2810), - [anon_sym_GT_LPAREN] = ACTIONS(2810), - [sym_word] = ACTIONS(2812), - [sym_comment] = ACTIONS(52), - }, - [1283] = { - [sym__concat] = ACTIONS(2814), - [anon_sym_RBRACE] = ACTIONS(2814), - [anon_sym_RBRACK] = ACTIONS(3086), - [anon_sym_DQUOTE] = ACTIONS(2814), - [sym_raw_string] = ACTIONS(2814), - [anon_sym_DOLLAR] = ACTIONS(3086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2814), - [anon_sym_BQUOTE] = ACTIONS(2814), - [anon_sym_LT_LPAREN] = ACTIONS(2814), - [anon_sym_GT_LPAREN] = ACTIONS(2814), - [sym_word] = ACTIONS(2816), - [sym_comment] = ACTIONS(52), - }, - [1284] = { - [anon_sym_RBRACE] = ACTIONS(3088), - [sym_comment] = ACTIONS(52), - }, - [1285] = { - [anon_sym_RBRACE] = ACTIONS(3090), - [sym_comment] = ACTIONS(52), - }, - [1286] = { - [sym__concat] = ACTIONS(2810), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3084), - [anon_sym_DQUOTE] = ACTIONS(2810), - [sym_raw_string] = ACTIONS(2810), - [anon_sym_DOLLAR] = ACTIONS(3084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2810), - [anon_sym_BQUOTE] = ACTIONS(2810), - [anon_sym_LT_LPAREN] = ACTIONS(2810), - [anon_sym_GT_LPAREN] = ACTIONS(2810), - [sym_word] = ACTIONS(2812), - [sym_comment] = ACTIONS(52), - }, - [1287] = { - [sym__concat] = ACTIONS(2814), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3086), - [anon_sym_DQUOTE] = ACTIONS(2814), - [sym_raw_string] = ACTIONS(2814), - [anon_sym_DOLLAR] = ACTIONS(3086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2814), - [anon_sym_BQUOTE] = ACTIONS(2814), - [anon_sym_LT_LPAREN] = ACTIONS(2814), - [anon_sym_GT_LPAREN] = ACTIONS(2814), - [sym_word] = ACTIONS(2816), - [sym_comment] = ACTIONS(52), - }, - [1288] = { - [sym__concat] = ACTIONS(1712), - [sym_variable_name] = ACTIONS(1712), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_RPAREN] = ACTIONS(1714), - [anon_sym_SEMI_SEMI] = ACTIONS(1714), - [anon_sym_PIPE_AMP] = ACTIONS(1714), - [anon_sym_AMP_AMP] = ACTIONS(1714), - [anon_sym_PIPE_PIPE] = ACTIONS(1714), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_LF] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_LF] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), }, [1289] = { - [anon_sym_AT] = ACTIONS(3092), - [sym_comment] = ACTIONS(52), + [anon_sym_AT] = ACTIONS(3039), + [sym_comment] = ACTIONS(50), }, [1290] = { - [sym__concat] = ACTIONS(1718), - [sym_variable_name] = ACTIONS(1718), - [anon_sym_PIPE] = ACTIONS(1720), - [anon_sym_RPAREN] = ACTIONS(1720), - [anon_sym_SEMI_SEMI] = ACTIONS(1720), - [anon_sym_PIPE_AMP] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1720), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_LF] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1720), + [sym_concatenation] = STATE(1466), + [sym_string] = STATE(1464), + [sym_simple_expansion] = STATE(1464), + [sym_expansion] = STATE(1464), + [sym_command_substitution] = STATE(1464), + [sym_process_substitution] = STATE(1464), + [sym_word] = ACTIONS(3041), + [anon_sym_RBRACE] = ACTIONS(3027), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(3041), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3043), }, [1291] = { - [anon_sym_AT] = ACTIONS(3094), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(1162), + [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_RPAREN] = ACTIONS(1164), + [anon_sym_SEMI_SEMI] = ACTIONS(1164), + [anon_sym_PIPE_AMP] = ACTIONS(1164), + [anon_sym_AMP_AMP] = ACTIONS(1164), + [anon_sym_PIPE_PIPE] = ACTIONS(1164), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym_LF] = ACTIONS(1164), + [anon_sym_AMP] = ACTIONS(1164), }, [1292] = { - [anon_sym_RBRACK] = ACTIONS(3096), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(1214), + [anon_sym_PIPE] = ACTIONS(1216), + [anon_sym_RPAREN] = ACTIONS(1216), + [anon_sym_SEMI_SEMI] = ACTIONS(1216), + [anon_sym_PIPE_AMP] = ACTIONS(1216), + [anon_sym_AMP_AMP] = ACTIONS(1216), + [anon_sym_PIPE_PIPE] = ACTIONS(1216), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym_LF] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(1216), }, [1293] = { - [sym__concat] = ACTIONS(1726), - [sym_variable_name] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_RPAREN] = ACTIONS(1728), - [anon_sym_SEMI_SEMI] = ACTIONS(1728), - [anon_sym_PIPE_AMP] = ACTIONS(1728), - [anon_sym_AMP_AMP] = ACTIONS(1728), - [anon_sym_PIPE_PIPE] = ACTIONS(1728), + [aux_sym_concatenation_repeat1] = STATE(1295), + [sym__concat] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_LF] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [1294] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(3098), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(1296), + [sym__concat] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(1890), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), }, [1295] = { - [anon_sym_RBRACE] = ACTIONS(3098), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(1467), + [sym__concat] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_RPAREN] = ACTIONS(284), + [anon_sym_SEMI_SEMI] = ACTIONS(284), + [anon_sym_PIPE_AMP] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_LF] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(284), }, [1296] = { - [anon_sym_RBRACK] = ACTIONS(3100), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(1467), + [sym__concat] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(598), + [anon_sym_RPAREN] = ACTIONS(598), + [anon_sym_SEMI_SEMI] = ACTIONS(598), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(598), + [anon_sym_PIPE_PIPE] = ACTIONS(598), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(598), + [anon_sym_LF] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(598), }, [1297] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(3102), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(1297), + [sym_word] = ACTIONS(731), + [sym__concat] = ACTIONS(2693), + [sym_variable_name] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(733), + [anon_sym_AMP] = ACTIONS(733), }, [1298] = { - [anon_sym_RBRACE] = ACTIONS(3102), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(3045), + [sym_comment] = ACTIONS(50), }, [1299] = { - [anon_sym_RBRACE] = ACTIONS(3104), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(3047), + [sym_comment] = ACTIONS(50), }, [1300] = { - [anon_sym_RBRACE] = ACTIONS(3106), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(2746), + [sym__concat] = ACTIONS(2746), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_RBRACK] = ACTIONS(3049), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2746), + [anon_sym_DQUOTE] = ACTIONS(2746), + [sym_raw_string] = ACTIONS(2746), + [anon_sym_DOLLAR] = ACTIONS(3049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2746), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2746), + [anon_sym_BQUOTE] = ACTIONS(2746), + [anon_sym_LT_LPAREN] = ACTIONS(2746), + [anon_sym_GT_LPAREN] = ACTIONS(2746), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3049), }, [1301] = { - [sym_file_descriptor] = ACTIONS(2810), - [sym__concat] = ACTIONS(2810), - [sym_variable_name] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(3084), - [anon_sym_GT] = ACTIONS(3084), - [anon_sym_GT_GT] = ACTIONS(2810), - [anon_sym_AMP_GT] = ACTIONS(3084), - [anon_sym_AMP_GT_GT] = ACTIONS(2810), - [anon_sym_LT_AMP] = ACTIONS(2810), - [anon_sym_GT_AMP] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [sym_raw_string] = ACTIONS(2810), - [anon_sym_DOLLAR] = ACTIONS(3084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2810), - [anon_sym_BQUOTE] = ACTIONS(2810), - [anon_sym_LT_LPAREN] = ACTIONS(2810), - [anon_sym_GT_LPAREN] = ACTIONS(2810), - [sym_word] = ACTIONS(3084), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(2750), + [sym__concat] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_RBRACK] = ACTIONS(3051), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2750), + [anon_sym_DQUOTE] = ACTIONS(2750), + [sym_raw_string] = ACTIONS(2750), + [anon_sym_DOLLAR] = ACTIONS(3051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2750), + [anon_sym_BQUOTE] = ACTIONS(2750), + [anon_sym_LT_LPAREN] = ACTIONS(2750), + [anon_sym_GT_LPAREN] = ACTIONS(2750), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3051), }, [1302] = { - [sym_file_descriptor] = ACTIONS(2814), - [sym__concat] = ACTIONS(2814), - [sym_variable_name] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(3086), - [anon_sym_GT] = ACTIONS(3086), - [anon_sym_GT_GT] = ACTIONS(2814), - [anon_sym_AMP_GT] = ACTIONS(3086), - [anon_sym_AMP_GT_GT] = ACTIONS(2814), - [anon_sym_LT_AMP] = ACTIONS(2814), - [anon_sym_GT_AMP] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [sym_raw_string] = ACTIONS(2814), - [anon_sym_DOLLAR] = ACTIONS(3086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2814), - [anon_sym_BQUOTE] = ACTIONS(2814), - [anon_sym_LT_LPAREN] = ACTIONS(2814), - [anon_sym_GT_LPAREN] = ACTIONS(2814), - [sym_word] = ACTIONS(3086), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(2754), + [sym__concat] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_RBRACK] = ACTIONS(3053), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2754), + [anon_sym_DQUOTE] = ACTIONS(2754), + [sym_raw_string] = ACTIONS(2754), + [anon_sym_DOLLAR] = ACTIONS(3053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2754), + [anon_sym_BQUOTE] = ACTIONS(2754), + [anon_sym_LT_LPAREN] = ACTIONS(2754), + [anon_sym_GT_LPAREN] = ACTIONS(2754), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3053), }, [1303] = { - [anon_sym_RBRACE] = ACTIONS(3108), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(2758), + [sym__concat] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_RBRACK] = ACTIONS(3055), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [sym_raw_string] = ACTIONS(2758), + [anon_sym_DOLLAR] = ACTIONS(3055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2758), + [anon_sym_BQUOTE] = ACTIONS(2758), + [anon_sym_LT_LPAREN] = ACTIONS(2758), + [anon_sym_GT_LPAREN] = ACTIONS(2758), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3055), }, [1304] = { - [anon_sym_RBRACE] = ACTIONS(3110), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(1629), + [sym__concat] = ACTIONS(1629), + [sym_variable_name] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_RPAREN] = ACTIONS(1631), + [anon_sym_SEMI_SEMI] = ACTIONS(1631), + [anon_sym_PIPE_AMP] = ACTIONS(1631), + [anon_sym_AMP_AMP] = ACTIONS(1631), + [anon_sym_PIPE_PIPE] = ACTIONS(1631), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1631), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_LF] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1631), }, [1305] = { - [anon_sym_DQUOTE] = ACTIONS(2812), - [sym__string_content] = ACTIONS(3084), - [anon_sym_DOLLAR] = ACTIONS(2812), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2812), - [anon_sym_BQUOTE] = ACTIONS(2812), - [sym_comment] = ACTIONS(64), + [anon_sym_AT] = ACTIONS(3057), + [sym_comment] = ACTIONS(50), }, [1306] = { - [anon_sym_DQUOTE] = ACTIONS(2816), - [sym__string_content] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(2816), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2816), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2816), - [anon_sym_BQUOTE] = ACTIONS(2816), + [sym_word] = ACTIONS(1635), + [sym__concat] = ACTIONS(1635), + [sym_variable_name] = ACTIONS(1635), + [anon_sym_PIPE] = ACTIONS(1637), + [anon_sym_RPAREN] = ACTIONS(1637), + [anon_sym_SEMI_SEMI] = ACTIONS(1637), + [anon_sym_PIPE_AMP] = ACTIONS(1637), + [anon_sym_AMP_AMP] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1637), [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1637), + [anon_sym_LF] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1637), }, [1307] = { - [sym_file_descriptor] = ACTIONS(3112), - [sym__concat] = ACTIONS(3112), - [anon_sym_PIPE] = ACTIONS(3114), - [anon_sym_RPAREN] = ACTIONS(3114), - [anon_sym_SEMI_SEMI] = ACTIONS(3114), - [anon_sym_PIPE_AMP] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_PIPE_PIPE] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3114), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_GT_GT] = ACTIONS(3114), - [anon_sym_AMP_GT] = ACTIONS(3114), - [anon_sym_AMP_GT_GT] = ACTIONS(3114), - [anon_sym_LT_AMP] = ACTIONS(3114), - [anon_sym_GT_AMP] = ACTIONS(3114), - [anon_sym_LT_LT] = ACTIONS(3114), - [anon_sym_LT_LT_DASH] = ACTIONS(3114), - [anon_sym_DQUOTE] = ACTIONS(3114), - [sym_raw_string] = ACTIONS(3114), - [anon_sym_DOLLAR] = ACTIONS(3114), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3114), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3114), - [anon_sym_BQUOTE] = ACTIONS(3114), - [anon_sym_LT_LPAREN] = ACTIONS(3114), - [anon_sym_GT_LPAREN] = ACTIONS(3114), - [sym_word] = ACTIONS(3114), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(3114), - [anon_sym_LF] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_AT] = ACTIONS(3059), + [sym_comment] = ACTIONS(50), }, [1308] = { - [sym_file_descriptor] = ACTIONS(3116), - [sym__concat] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_SEMI_SEMI] = ACTIONS(3118), - [anon_sym_PIPE_AMP] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3118), - [anon_sym_GT_GT] = ACTIONS(3118), - [anon_sym_AMP_GT] = ACTIONS(3118), - [anon_sym_AMP_GT_GT] = ACTIONS(3118), - [anon_sym_LT_AMP] = ACTIONS(3118), - [anon_sym_GT_AMP] = ACTIONS(3118), - [anon_sym_LT_LT] = ACTIONS(3118), - [anon_sym_LT_LT_DASH] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym_raw_string] = ACTIONS(3118), - [anon_sym_DOLLAR] = ACTIONS(3118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3118), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3118), - [anon_sym_BQUOTE] = ACTIONS(3118), - [anon_sym_LT_LPAREN] = ACTIONS(3118), - [anon_sym_GT_LPAREN] = ACTIONS(3118), - [sym_word] = ACTIONS(3118), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_LF] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_RBRACK] = ACTIONS(3061), + [sym_comment] = ACTIONS(50), }, [1309] = { - [sym_file_descriptor] = ACTIONS(1712), - [sym__concat] = ACTIONS(1712), - [sym_variable_name] = ACTIONS(1712), - [anon_sym_PIPE] = ACTIONS(2261), - [anon_sym_RPAREN] = ACTIONS(1712), - [anon_sym_PIPE_AMP] = ACTIONS(1712), - [anon_sym_AMP_AMP] = ACTIONS(1712), - [anon_sym_PIPE_PIPE] = ACTIONS(2261), - [anon_sym_LT] = ACTIONS(2261), - [anon_sym_GT] = ACTIONS(2261), - [anon_sym_GT_GT] = ACTIONS(1712), - [anon_sym_AMP_GT] = ACTIONS(2261), - [anon_sym_AMP_GT_GT] = ACTIONS(1712), - [anon_sym_LT_AMP] = ACTIONS(1712), - [anon_sym_GT_AMP] = ACTIONS(1712), - [anon_sym_DQUOTE] = ACTIONS(1712), - [sym_raw_string] = ACTIONS(1712), - [anon_sym_DOLLAR] = ACTIONS(2261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1712), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1712), - [anon_sym_BQUOTE] = ACTIONS(1712), - [anon_sym_LT_LPAREN] = ACTIONS(1712), - [anon_sym_GT_LPAREN] = ACTIONS(1712), - [sym_word] = ACTIONS(1714), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(3063), + [anon_sym_RBRACE] = ACTIONS(3065), + [sym_comment] = ACTIONS(50), }, [1310] = { - [anon_sym_AT] = ACTIONS(3120), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(1647), + [sym__concat] = ACTIONS(1647), + [sym_variable_name] = ACTIONS(1647), + [anon_sym_PIPE] = ACTIONS(1649), + [anon_sym_RPAREN] = ACTIONS(1649), + [anon_sym_SEMI_SEMI] = ACTIONS(1649), + [anon_sym_PIPE_AMP] = ACTIONS(1649), + [anon_sym_AMP_AMP] = ACTIONS(1649), + [anon_sym_PIPE_PIPE] = ACTIONS(1649), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1649), + [anon_sym_SEMI] = ACTIONS(1649), + [anon_sym_LF] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), }, [1311] = { - [sym_file_descriptor] = ACTIONS(1718), - [sym__concat] = ACTIONS(1718), - [sym_variable_name] = ACTIONS(1718), - [anon_sym_PIPE] = ACTIONS(2265), - [anon_sym_RPAREN] = ACTIONS(1718), - [anon_sym_PIPE_AMP] = ACTIONS(1718), - [anon_sym_AMP_AMP] = ACTIONS(1718), - [anon_sym_PIPE_PIPE] = ACTIONS(2265), - [anon_sym_LT] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(2265), - [anon_sym_GT_GT] = ACTIONS(1718), - [anon_sym_AMP_GT] = ACTIONS(2265), - [anon_sym_AMP_GT_GT] = ACTIONS(1718), - [anon_sym_LT_AMP] = ACTIONS(1718), - [anon_sym_GT_AMP] = ACTIONS(1718), - [anon_sym_DQUOTE] = ACTIONS(1718), - [sym_raw_string] = ACTIONS(1718), - [anon_sym_DOLLAR] = ACTIONS(2265), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1718), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), - [anon_sym_BQUOTE] = ACTIONS(1718), - [anon_sym_LT_LPAREN] = ACTIONS(1718), - [anon_sym_GT_LPAREN] = ACTIONS(1718), - [sym_word] = ACTIONS(1720), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(3067), + [anon_sym_RBRACE] = ACTIONS(3069), + [sym_comment] = ACTIONS(50), }, [1312] = { - [anon_sym_AT] = ACTIONS(3122), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(3061), + [anon_sym_RBRACE] = ACTIONS(3065), + [sym_comment] = ACTIONS(50), }, [1313] = { - [anon_sym_RBRACK] = ACTIONS(3124), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACK] = ACTIONS(3071), + [sym_comment] = ACTIONS(50), }, [1314] = { - [sym_file_descriptor] = ACTIONS(1726), - [sym__concat] = ACTIONS(1726), - [sym_variable_name] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(2271), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_PIPE_AMP] = ACTIONS(1726), - [anon_sym_AMP_AMP] = ACTIONS(1726), - [anon_sym_PIPE_PIPE] = ACTIONS(2271), - [anon_sym_LT] = ACTIONS(2271), - [anon_sym_GT] = ACTIONS(2271), - [anon_sym_GT_GT] = ACTIONS(1726), - [anon_sym_AMP_GT] = ACTIONS(2271), - [anon_sym_AMP_GT_GT] = ACTIONS(1726), - [anon_sym_LT_AMP] = ACTIONS(1726), - [anon_sym_GT_AMP] = ACTIONS(1726), - [anon_sym_DQUOTE] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1726), - [anon_sym_DOLLAR] = ACTIONS(2271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), - [anon_sym_BQUOTE] = ACTIONS(1726), - [anon_sym_LT_LPAREN] = ACTIONS(1726), - [anon_sym_GT_LPAREN] = ACTIONS(1726), - [sym_word] = ACTIONS(1728), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(3073), + [anon_sym_RBRACE] = ACTIONS(3075), + [sym_comment] = ACTIONS(50), }, [1315] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(3126), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(3077), + [anon_sym_RBRACE] = ACTIONS(3079), + [sym_comment] = ACTIONS(50), }, [1316] = { - [anon_sym_RBRACE] = ACTIONS(3126), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(3071), + [anon_sym_RBRACE] = ACTIONS(3075), + [sym_comment] = ACTIONS(50), }, [1317] = { - [anon_sym_RBRACK] = ACTIONS(3128), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(3081), + [sym_comment] = ACTIONS(50), }, [1318] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(3130), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(3083), + [sym_comment] = ACTIONS(50), }, [1319] = { - [anon_sym_RBRACE] = ACTIONS(3130), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2746), + [sym_word] = ACTIONS(2746), + [sym__concat] = ACTIONS(2746), + [sym_variable_name] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(3049), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_PIPE_AMP] = ACTIONS(2746), + [anon_sym_AMP_AMP] = ACTIONS(2746), + [anon_sym_PIPE_PIPE] = ACTIONS(2746), + [anon_sym_LT] = ACTIONS(3049), + [anon_sym_GT] = ACTIONS(3049), + [anon_sym_GT_GT] = ACTIONS(2746), + [anon_sym_AMP_GT] = ACTIONS(3049), + [anon_sym_AMP_GT_GT] = ACTIONS(2746), + [anon_sym_LT_AMP] = ACTIONS(2746), + [anon_sym_GT_AMP] = ACTIONS(2746), + [anon_sym_DQUOTE] = ACTIONS(2746), + [sym_raw_string] = ACTIONS(2746), + [anon_sym_DOLLAR] = ACTIONS(3049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2746), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2746), + [anon_sym_BQUOTE] = ACTIONS(2746), + [anon_sym_LT_LPAREN] = ACTIONS(2746), + [anon_sym_GT_LPAREN] = ACTIONS(2746), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3049), }, [1320] = { - [anon_sym_PIPE] = ACTIONS(3132), - [anon_sym_RPAREN] = ACTIONS(3134), - [anon_sym_PIPE_AMP] = ACTIONS(3134), - [anon_sym_AMP_AMP] = ACTIONS(3134), - [anon_sym_PIPE_PIPE] = ACTIONS(3134), - [anon_sym_BQUOTE] = ACTIONS(3134), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2750), + [sym_word] = ACTIONS(2750), + [sym__concat] = ACTIONS(2750), + [sym_variable_name] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_PIPE_AMP] = ACTIONS(2750), + [anon_sym_AMP_AMP] = ACTIONS(2750), + [anon_sym_PIPE_PIPE] = ACTIONS(2750), + [anon_sym_LT] = ACTIONS(3051), + [anon_sym_GT] = ACTIONS(3051), + [anon_sym_GT_GT] = ACTIONS(2750), + [anon_sym_AMP_GT] = ACTIONS(3051), + [anon_sym_AMP_GT_GT] = ACTIONS(2750), + [anon_sym_LT_AMP] = ACTIONS(2750), + [anon_sym_GT_AMP] = ACTIONS(2750), + [anon_sym_DQUOTE] = ACTIONS(2750), + [sym_raw_string] = ACTIONS(2750), + [anon_sym_DOLLAR] = ACTIONS(3051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2750), + [anon_sym_BQUOTE] = ACTIONS(2750), + [anon_sym_LT_LPAREN] = ACTIONS(2750), + [anon_sym_GT_LPAREN] = ACTIONS(2750), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3051), }, [1321] = { - [anon_sym_PIPE] = ACTIONS(3136), - [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_file_descriptor] = ACTIONS(2754), + [sym_word] = ACTIONS(2754), + [sym__concat] = ACTIONS(2754), + [sym_variable_name] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(3053), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_PIPE_AMP] = ACTIONS(2754), + [anon_sym_AMP_AMP] = ACTIONS(2754), + [anon_sym_PIPE_PIPE] = ACTIONS(2754), + [anon_sym_LT] = ACTIONS(3053), + [anon_sym_GT] = ACTIONS(3053), + [anon_sym_GT_GT] = ACTIONS(2754), + [anon_sym_AMP_GT] = ACTIONS(3053), + [anon_sym_AMP_GT_GT] = ACTIONS(2754), + [anon_sym_LT_AMP] = ACTIONS(2754), + [anon_sym_GT_AMP] = ACTIONS(2754), + [anon_sym_DQUOTE] = ACTIONS(2754), + [sym_raw_string] = ACTIONS(2754), + [anon_sym_DOLLAR] = ACTIONS(3053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2754), + [anon_sym_BQUOTE] = ACTIONS(2754), + [anon_sym_LT_LPAREN] = ACTIONS(2754), + [anon_sym_GT_LPAREN] = ACTIONS(2754), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3053), }, [1322] = { - [anon_sym_PIPE] = ACTIONS(3140), - [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_file_descriptor] = ACTIONS(2758), + [sym_word] = ACTIONS(2758), + [sym__concat] = ACTIONS(2758), + [sym_variable_name] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(3055), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_PIPE_AMP] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(3055), + [anon_sym_GT] = ACTIONS(3055), + [anon_sym_GT_GT] = ACTIONS(2758), + [anon_sym_AMP_GT] = ACTIONS(3055), + [anon_sym_AMP_GT_GT] = ACTIONS(2758), + [anon_sym_LT_AMP] = ACTIONS(2758), + [anon_sym_GT_AMP] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [sym_raw_string] = ACTIONS(2758), + [anon_sym_DOLLAR] = ACTIONS(3055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2758), + [anon_sym_BQUOTE] = ACTIONS(2758), + [anon_sym_LT_LPAREN] = ACTIONS(2758), + [anon_sym_GT_LPAREN] = ACTIONS(2758), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3055), }, [1323] = { - [anon_sym_fi] = ACTIONS(3144), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(3085), + [sym_comment] = ACTIONS(50), }, [1324] = { - [anon_sym_PIPE] = ACTIONS(3146), - [anon_sym_RPAREN] = ACTIONS(3148), - [anon_sym_PIPE_AMP] = ACTIONS(3148), - [anon_sym_AMP_AMP] = ACTIONS(3148), - [anon_sym_PIPE_PIPE] = ACTIONS(3148), - [anon_sym_BQUOTE] = ACTIONS(3148), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(3087), + [sym_comment] = ACTIONS(50), }, [1325] = { - [sym_case_item] = STATE(763), - [sym_concatenation] = STATE(764), - [sym_string] = STATE(762), - [sym_simple_expansion] = STATE(762), - [sym_expansion] = STATE(762), - [sym_command_substitution] = STATE(762), - [sym_process_substitution] = STATE(762), - [aux_sym_case_statement_repeat1] = STATE(1040), - [anon_sym_esac] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(282), - [sym_raw_string] = ACTIONS(1498), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_word] = ACTIONS(1500), - [sym_comment] = ACTIONS(52), - }, - [1326] = { - [anon_sym_PIPE] = ACTIONS(3152), - [anon_sym_RPAREN] = ACTIONS(3154), - [anon_sym_PIPE_AMP] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_comment] = ACTIONS(52), - }, - [1327] = { - [aux_sym_concatenation_repeat1] = STATE(1332), - [sym__concat] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_RPAREN] = ACTIONS(725), - [anon_sym_PIPE_AMP] = ACTIONS(725), - [anon_sym_AMP_AMP] = ACTIONS(725), - [anon_sym_PIPE_PIPE] = ACTIONS(725), - [sym_comment] = ACTIONS(52), - }, - [1328] = { - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_RPAREN] = ACTIONS(725), - [anon_sym_PIPE_AMP] = ACTIONS(725), - [anon_sym_AMP_AMP] = ACTIONS(725), - [anon_sym_PIPE_PIPE] = ACTIONS(725), - [anon_sym_BQUOTE] = ACTIONS(725), - [sym_comment] = ACTIONS(52), - }, - [1329] = { - [sym__concat] = ACTIONS(450), - [anon_sym_PIPE] = ACTIONS(875), - [anon_sym_RPAREN] = ACTIONS(450), - [anon_sym_PIPE_AMP] = ACTIONS(450), - [anon_sym_AMP_AMP] = ACTIONS(450), - [anon_sym_PIPE_PIPE] = ACTIONS(450), - [anon_sym_BQUOTE] = ACTIONS(450), - [sym_comment] = ACTIONS(52), - }, - [1330] = { - [sym_simple_expansion] = STATE(96), - [sym_expansion] = STATE(96), - [sym_command_substitution] = STATE(96), - [aux_sym_string_repeat1] = STATE(298), - [anon_sym_DQUOTE] = ACTIONS(3156), - [sym__string_content] = ACTIONS(156), - [anon_sym_DOLLAR] = ACTIONS(158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), - [anon_sym_BQUOTE] = ACTIONS(164), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym__string_content] = ACTIONS(3049), + [anon_sym_DOLLAR] = ACTIONS(2748), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2748), + [anon_sym_BQUOTE] = ACTIONS(2748), [sym_comment] = ACTIONS(64), }, + [1326] = { + [anon_sym_DQUOTE] = ACTIONS(2752), + [sym__string_content] = ACTIONS(3051), + [anon_sym_DOLLAR] = ACTIONS(2752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2752), + [anon_sym_BQUOTE] = ACTIONS(2752), + [sym_comment] = ACTIONS(64), + }, + [1327] = { + [anon_sym_DQUOTE] = ACTIONS(2756), + [sym__string_content] = ACTIONS(3053), + [anon_sym_DOLLAR] = ACTIONS(2756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2756), + [anon_sym_BQUOTE] = ACTIONS(2756), + [sym_comment] = ACTIONS(64), + }, + [1328] = { + [anon_sym_DQUOTE] = ACTIONS(2760), + [sym__string_content] = ACTIONS(3055), + [anon_sym_DOLLAR] = ACTIONS(2760), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2760), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2760), + [anon_sym_BQUOTE] = ACTIONS(2760), + [sym_comment] = ACTIONS(64), + }, + [1329] = { + [sym_file_descriptor] = ACTIONS(3089), + [sym_word] = ACTIONS(3089), + [sym__concat] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3091), + [anon_sym_RPAREN] = ACTIONS(3091), + [anon_sym_SEMI_SEMI] = ACTIONS(3091), + [anon_sym_PIPE_AMP] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3091), + [anon_sym_GT] = ACTIONS(3091), + [anon_sym_GT_GT] = ACTIONS(3091), + [anon_sym_AMP_GT] = ACTIONS(3091), + [anon_sym_AMP_GT_GT] = ACTIONS(3091), + [anon_sym_LT_AMP] = ACTIONS(3091), + [anon_sym_GT_AMP] = ACTIONS(3091), + [anon_sym_LT_LT] = ACTIONS(3091), + [anon_sym_LT_LT_DASH] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [sym_raw_string] = ACTIONS(3091), + [anon_sym_DOLLAR] = ACTIONS(3091), + [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_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3091), + [anon_sym_LF] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3091), + }, + [1330] = { + [sym_file_descriptor] = ACTIONS(3093), + [sym_word] = ACTIONS(3093), + [sym__concat] = ACTIONS(3093), + [anon_sym_PIPE] = ACTIONS(3095), + [anon_sym_RPAREN] = ACTIONS(3095), + [anon_sym_SEMI_SEMI] = ACTIONS(3095), + [anon_sym_PIPE_AMP] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_PIPE_PIPE] = ACTIONS(3095), + [anon_sym_LT] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3095), + [anon_sym_GT_GT] = ACTIONS(3095), + [anon_sym_AMP_GT] = ACTIONS(3095), + [anon_sym_AMP_GT_GT] = ACTIONS(3095), + [anon_sym_LT_AMP] = ACTIONS(3095), + [anon_sym_GT_AMP] = ACTIONS(3095), + [anon_sym_LT_LT] = ACTIONS(3095), + [anon_sym_LT_LT_DASH] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(3095), + [sym_raw_string] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3095), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3095), + [anon_sym_BQUOTE] = ACTIONS(3095), + [anon_sym_LT_LPAREN] = ACTIONS(3095), + [anon_sym_GT_LPAREN] = ACTIONS(3095), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3095), + [anon_sym_LF] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3095), + }, [1331] = { - [sym_string] = STATE(1454), - [sym_simple_expansion] = STATE(1454), - [sym_expansion] = STATE(1454), - [sym_command_substitution] = STATE(1454), - [sym_process_substitution] = STATE(1454), - [anon_sym_DQUOTE] = ACTIONS(2423), - [sym_raw_string] = ACTIONS(3158), - [anon_sym_DOLLAR] = ACTIONS(2427), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2431), - [anon_sym_BQUOTE] = ACTIONS(2433), - [anon_sym_LT_LPAREN] = ACTIONS(2435), - [anon_sym_GT_LPAREN] = ACTIONS(2435), - [sym_word] = ACTIONS(3160), - [sym_comment] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_RPAREN] = ACTIONS(3099), + [anon_sym_PIPE_AMP] = ACTIONS(3099), + [anon_sym_AMP_AMP] = ACTIONS(3099), + [anon_sym_PIPE_PIPE] = ACTIONS(3099), + [anon_sym_BQUOTE] = ACTIONS(3099), + [sym_comment] = ACTIONS(50), }, [1332] = { - [aux_sym_concatenation_repeat1] = STATE(1455), - [sym__concat] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(3101), + [anon_sym_RPAREN] = ACTIONS(3103), + [anon_sym_PIPE_AMP] = ACTIONS(3103), + [anon_sym_AMP_AMP] = ACTIONS(3103), + [anon_sym_PIPE_PIPE] = ACTIONS(3103), + [anon_sym_BQUOTE] = ACTIONS(3103), + [sym_comment] = ACTIONS(50), + }, + [1333] = { + [anon_sym_fi] = ACTIONS(3105), + [sym_comment] = ACTIONS(50), + }, + [1334] = { + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_RPAREN] = ACTIONS(3109), + [anon_sym_PIPE_AMP] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_BQUOTE] = ACTIONS(3109), + [sym_comment] = ACTIONS(50), + }, + [1335] = { + [sym_case_item] = STATE(736), + [sym_concatenation] = STATE(737), + [sym_string] = STATE(733), + [sym_simple_expansion] = STATE(733), + [sym_expansion] = STATE(733), + [sym_command_substitution] = STATE(733), + [sym_process_substitution] = STATE(733), + [aux_sym_case_statement_repeat1] = STATE(1016), + [sym_word] = ACTIONS(1426), + [anon_sym_esac] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1430), + }, + [1336] = { + [anon_sym_PIPE] = ACTIONS(3113), + [anon_sym_RPAREN] = ACTIONS(3115), + [anon_sym_PIPE_AMP] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_PIPE_PIPE] = ACTIONS(3115), + [anon_sym_BQUOTE] = ACTIONS(3115), + [sym_comment] = ACTIONS(50), + }, + [1337] = { + [sym_case_item] = STATE(736), + [sym_concatenation] = STATE(737), + [sym_string] = STATE(733), + [sym_simple_expansion] = STATE(733), + [sym_expansion] = STATE(733), + [sym_command_substitution] = STATE(733), + [sym_process_substitution] = STATE(733), + [aux_sym_case_statement_repeat1] = STATE(1016), + [sym_word] = ACTIONS(1426), + [anon_sym_esac] = ACTIONS(3117), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1430), + }, + [1338] = { + [anon_sym_PIPE] = ACTIONS(3119), + [anon_sym_RPAREN] = ACTIONS(3121), + [anon_sym_PIPE_AMP] = ACTIONS(3121), + [anon_sym_AMP_AMP] = ACTIONS(3121), + [anon_sym_PIPE_PIPE] = ACTIONS(3121), + [anon_sym_BQUOTE] = ACTIONS(3121), + [sym_comment] = ACTIONS(50), + }, + [1339] = { + [aux_sym_concatenation_repeat1] = STATE(1343), + [sym__concat] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_RPAREN] = ACTIONS(723), + [anon_sym_PIPE_AMP] = ACTIONS(723), + [anon_sym_AMP_AMP] = ACTIONS(723), + [anon_sym_PIPE_PIPE] = ACTIONS(723), + [sym_comment] = ACTIONS(50), + }, + [1340] = { + [aux_sym_concatenation_repeat1] = STATE(1358), + [sym__concat] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(727), + [anon_sym_PIPE_AMP] = ACTIONS(727), + [anon_sym_AMP_AMP] = ACTIONS(727), + [anon_sym_PIPE_PIPE] = ACTIONS(727), + [sym_comment] = ACTIONS(50), + }, + [1341] = { + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_RPAREN] = ACTIONS(723), + [anon_sym_PIPE_AMP] = ACTIONS(723), + [anon_sym_AMP_AMP] = ACTIONS(723), + [anon_sym_PIPE_PIPE] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(723), + [sym_comment] = ACTIONS(50), + }, + [1342] = { + [sym_string] = STATE(1489), + [sym_simple_expansion] = STATE(1489), + [sym_expansion] = STATE(1489), + [sym_command_substitution] = STATE(1489), + [sym_process_substitution] = STATE(1489), + [sym_word] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(2328), + [sym_raw_string] = ACTIONS(3123), + [anon_sym_DOLLAR] = ACTIONS(2330), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2332), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2334), + [anon_sym_BQUOTE] = ACTIONS(2336), + [anon_sym_LT_LPAREN] = ACTIONS(2338), + [anon_sym_GT_LPAREN] = ACTIONS(2338), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3125), + }, + [1343] = { + [aux_sym_concatenation_repeat1] = STATE(1491), + [sym__concat] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(890), + [anon_sym_RPAREN] = ACTIONS(282), + [anon_sym_PIPE_AMP] = ACTIONS(282), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [sym_comment] = ACTIONS(50), + }, + [1344] = { + [sym__concat] = ACTIONS(446), + [anon_sym_PIPE] = ACTIONS(892), + [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(50), + }, + [1345] = { + [sym_simple_expansion] = STATE(92), + [sym_expansion] = STATE(92), + [sym_command_substitution] = STATE(92), + [aux_sym_string_repeat1] = STATE(291), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__string_content] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_comment] = ACTIONS(64), + }, + [1346] = { + [sym__concat] = ACTIONS(466), + [anon_sym_PIPE] = ACTIONS(478), + [anon_sym_RPAREN] = ACTIONS(466), + [anon_sym_PIPE_AMP] = ACTIONS(466), + [anon_sym_AMP_AMP] = ACTIONS(466), + [anon_sym_PIPE_PIPE] = ACTIONS(466), + [anon_sym_BQUOTE] = ACTIONS(466), + [sym_comment] = ACTIONS(50), + }, + [1347] = { + [sym__concat] = ACTIONS(470), + [anon_sym_PIPE] = ACTIONS(896), + [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_BQUOTE] = ACTIONS(470), + [sym_comment] = ACTIONS(50), + }, + [1348] = { + [sym__concat] = ACTIONS(474), + [anon_sym_PIPE] = ACTIONS(898), [anon_sym_RPAREN] = ACTIONS(474), [anon_sym_PIPE_AMP] = ACTIONS(474), [anon_sym_AMP_AMP] = ACTIONS(474), [anon_sym_PIPE_PIPE] = ACTIONS(474), - [sym_comment] = ACTIONS(52), - }, - [1333] = { - [sym__concat] = ACTIONS(322), - [anon_sym_PIPE] = ACTIONS(324), - [anon_sym_RPAREN] = ACTIONS(322), - [anon_sym_PIPE_AMP] = ACTIONS(322), - [anon_sym_AMP_AMP] = ACTIONS(322), - [anon_sym_PIPE_PIPE] = ACTIONS(322), - [anon_sym_BQUOTE] = ACTIONS(322), - [sym_comment] = ACTIONS(52), - }, - [1334] = { - [sym__concat] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(480), - [anon_sym_PIPE_AMP] = ACTIONS(480), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), - [anon_sym_BQUOTE] = ACTIONS(480), - [sym_comment] = ACTIONS(52), - }, - [1335] = { - [sym__concat] = ACTIONS(484), - [anon_sym_PIPE] = ACTIONS(887), - [anon_sym_RPAREN] = ACTIONS(484), - [anon_sym_PIPE_AMP] = ACTIONS(484), - [anon_sym_AMP_AMP] = ACTIONS(484), - [anon_sym_PIPE_PIPE] = ACTIONS(484), - [anon_sym_BQUOTE] = ACTIONS(484), - [sym_comment] = ACTIONS(52), - }, - [1336] = { - [sym_special_variable_name] = STATE(1457), - [anon_sym_RBRACE] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(62), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_DOLLAR] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(62), - [anon_sym_AT] = ACTIONS(62), - [anon_sym_COLON] = ACTIONS(324), - [anon_sym_COLON_QMARK] = ACTIONS(322), - [anon_sym_COLON_DASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(3162), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_QMARK] = ACTIONS(62), - [anon_sym_BANG] = ACTIONS(62), - [anon_sym_0] = ACTIONS(68), - [anon_sym__] = ACTIONS(68), - }, - [1337] = { - [anon_sym_RBRACE] = ACTIONS(3164), - [anon_sym_LBRACK] = ACTIONS(3166), - [anon_sym_EQ] = ACTIONS(3168), - [anon_sym_COLON] = ACTIONS(3170), - [anon_sym_COLON_QMARK] = ACTIONS(3168), - [anon_sym_COLON_DASH] = ACTIONS(3168), - [anon_sym_PERCENT] = ACTIONS(3168), - [anon_sym_SLASH] = ACTIONS(3168), - [sym_comment] = ACTIONS(52), - }, - [1338] = { - [anon_sym_RBRACE] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3174), - [anon_sym_EQ] = ACTIONS(3176), - [anon_sym_COLON] = ACTIONS(3178), - [anon_sym_COLON_QMARK] = ACTIONS(3176), - [anon_sym_COLON_DASH] = ACTIONS(3176), - [anon_sym_PERCENT] = ACTIONS(3176), - [anon_sym_SLASH] = ACTIONS(3176), - [sym_comment] = ACTIONS(52), - }, - [1339] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(3180), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), - }, - [1340] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(3180), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [1341] = { - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_BQUOTE] = ACTIONS(3180), - [sym_comment] = ACTIONS(52), - }, - [1342] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(3180), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [1343] = { - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(3182), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [sym_comment] = ACTIONS(52), - }, - [1344] = { - [sym_file_descriptor] = ACTIONS(266), - [sym_variable_name] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(3182), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_AMP_GT] = ACTIONS(270), - [anon_sym_AMP_GT_GT] = ACTIONS(266), - [anon_sym_LT_AMP] = ACTIONS(266), - [anon_sym_GT_AMP] = ACTIONS(266), - [anon_sym_DQUOTE] = ACTIONS(266), - [sym_raw_string] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), - [anon_sym_BQUOTE] = ACTIONS(266), - [anon_sym_LT_LPAREN] = ACTIONS(266), - [anon_sym_GT_LPAREN] = ACTIONS(266), - [sym_word] = ACTIONS(268), - [sym_comment] = ACTIONS(52), - }, - [1345] = { - [sym_variable_name] = ACTIONS(2080), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_RPAREN] = ACTIONS(2080), - [anon_sym_PIPE_AMP] = ACTIONS(2080), - [anon_sym_AMP_AMP] = ACTIONS(2080), - [anon_sym_PIPE_PIPE] = ACTIONS(2080), - [anon_sym_BQUOTE] = ACTIONS(2080), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(2818), - }, - [1346] = { - [sym__concat] = ACTIONS(1080), - [sym_variable_name] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1080), - [anon_sym_PIPE_AMP] = ACTIONS(1080), - [anon_sym_AMP_AMP] = ACTIONS(1080), - [anon_sym_PIPE_PIPE] = ACTIONS(1080), - [anon_sym_BQUOTE] = ACTIONS(1080), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(1587), - }, - [1347] = { - [sym__concat] = ACTIONS(1101), - [sym_variable_name] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(1101), - [anon_sym_PIPE_AMP] = ACTIONS(1101), - [anon_sym_AMP_AMP] = ACTIONS(1101), - [anon_sym_PIPE_PIPE] = ACTIONS(1101), - [anon_sym_BQUOTE] = ACTIONS(1101), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(1589), - }, - [1348] = { - [aux_sym_concatenation_repeat1] = STATE(1348), - [sym__concat] = ACTIONS(3184), - [sym_variable_name] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(1101), - [anon_sym_PIPE_AMP] = ACTIONS(1101), - [anon_sym_AMP_AMP] = ACTIONS(1101), - [anon_sym_PIPE_PIPE] = ACTIONS(1101), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(1589), + [anon_sym_BQUOTE] = ACTIONS(474), + [sym_comment] = ACTIONS(50), }, [1349] = { - [anon_sym_RBRACE] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3189), - [sym_comment] = ACTIONS(52), + [sym_special_variable_name] = STATE(1494), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(466), + [anon_sym_DOLLAR] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(478), + [anon_sym_COLON_QMARK] = ACTIONS(466), + [anon_sym_COLON_DASH] = ACTIONS(466), + [anon_sym_PERCENT] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(466), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(3129), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_0] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), }, [1350] = { - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3193), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(3131), + [anon_sym_LBRACK] = ACTIONS(3133), + [anon_sym_EQ] = ACTIONS(3135), + [anon_sym_COLON] = ACTIONS(3137), + [anon_sym_COLON_QMARK] = ACTIONS(3135), + [anon_sym_COLON_DASH] = ACTIONS(3135), + [anon_sym_PERCENT] = ACTIONS(3135), + [anon_sym_SLASH] = ACTIONS(3135), + [sym_comment] = ACTIONS(50), }, [1351] = { - [sym__concat] = ACTIONS(1116), - [sym_variable_name] = ACTIONS(1116), - [anon_sym_PIPE] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(1116), - [anon_sym_PIPE_AMP] = ACTIONS(1116), - [anon_sym_AMP_AMP] = ACTIONS(1116), - [anon_sym_PIPE_PIPE] = ACTIONS(1116), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(1602), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3141), + [anon_sym_EQ] = ACTIONS(3143), + [anon_sym_COLON] = ACTIONS(3145), + [anon_sym_COLON_QMARK] = ACTIONS(3143), + [anon_sym_COLON_DASH] = ACTIONS(3143), + [anon_sym_PERCENT] = ACTIONS(3143), + [anon_sym_SLASH] = ACTIONS(3143), + [sym_comment] = ACTIONS(50), }, [1352] = { - [anon_sym_AT] = ACTIONS(3195), - [sym_comment] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(3147), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), }, [1353] = { - [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(3197), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(3201), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(3147), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), }, [1354] = { - [sym__concat] = ACTIONS(1128), - [sym_variable_name] = ACTIONS(1128), - [anon_sym_PIPE] = ACTIONS(1612), - [anon_sym_RPAREN] = ACTIONS(1128), - [anon_sym_PIPE_AMP] = ACTIONS(1128), - [anon_sym_AMP_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(1612), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_BQUOTE] = ACTIONS(3147), + [sym_comment] = ACTIONS(50), }, [1355] = { - [anon_sym_AT] = ACTIONS(3203), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(3147), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), }, [1356] = { - [sym_concatenation] = STATE(1476), - [sym_string] = STATE(1475), - [sym_simple_expansion] = STATE(1475), - [sym_expansion] = STATE(1475), - [sym_command_substitution] = STATE(1475), - [sym_process_substitution] = STATE(1475), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(3205), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(3207), - [sym_comment] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(3149), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [sym_comment] = ACTIONS(50), }, [1357] = { - [sym__concat] = ACTIONS(1222), - [sym_variable_name] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1620), - [anon_sym_RPAREN] = ACTIONS(1222), - [anon_sym_PIPE_AMP] = ACTIONS(1222), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), - [anon_sym_BQUOTE] = ACTIONS(1222), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(1620), + [sym_file_descriptor] = ACTIONS(262), + [sym_word] = ACTIONS(262), + [sym_variable_name] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(3149), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_AMP_GT] = ACTIONS(266), + [anon_sym_AMP_GT_GT] = ACTIONS(262), + [anon_sym_LT_AMP] = ACTIONS(262), + [anon_sym_GT_AMP] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(262), + [sym_raw_string] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(262), + [anon_sym_LT_LPAREN] = ACTIONS(262), + [anon_sym_GT_LPAREN] = ACTIONS(262), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(266), }, [1358] = { - [sym__concat] = ACTIONS(1274), - [sym_variable_name] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1622), - [anon_sym_RPAREN] = ACTIONS(1274), - [anon_sym_PIPE_AMP] = ACTIONS(1274), - [anon_sym_AMP_AMP] = ACTIONS(1274), - [anon_sym_PIPE_PIPE] = ACTIONS(1274), - [anon_sym_BQUOTE] = ACTIONS(1274), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(1622), + [aux_sym_concatenation_repeat1] = STATE(1491), + [sym__concat] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_RPAREN] = ACTIONS(596), + [anon_sym_PIPE_AMP] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [sym_comment] = ACTIONS(50), }, [1359] = { - [anon_sym_RBRACE] = ACTIONS(3209), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(731), + [sym__concat] = ACTIONS(731), + [sym_variable_name] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1527), }, [1360] = { - [anon_sym_RBRACE] = ACTIONS(3211), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(735), + [sym__concat] = ACTIONS(735), + [sym_variable_name] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(1529), + [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(50), + [sym_identifier] = ACTIONS(1529), }, [1361] = { - [sym_file_descriptor] = ACTIONS(2810), - [sym__concat] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(3084), - [anon_sym_RPAREN] = ACTIONS(2810), - [anon_sym_PIPE_AMP] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(3084), - [anon_sym_GT] = ACTIONS(3084), - [anon_sym_GT_GT] = ACTIONS(2810), - [anon_sym_AMP_GT] = ACTIONS(3084), - [anon_sym_AMP_GT_GT] = ACTIONS(2810), - [anon_sym_LT_AMP] = ACTIONS(2810), - [anon_sym_GT_AMP] = ACTIONS(2810), - [anon_sym_LT_LT] = ACTIONS(3084), - [anon_sym_LT_LT_DASH] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [sym_raw_string] = ACTIONS(2810), - [anon_sym_DOLLAR] = ACTIONS(3084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2810), - [anon_sym_BQUOTE] = ACTIONS(2810), - [anon_sym_LT_LPAREN] = ACTIONS(2810), - [anon_sym_GT_LPAREN] = ACTIONS(2810), - [sym_word] = ACTIONS(2812), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(1361), + [sym_word] = ACTIONS(731), + [sym__concat] = ACTIONS(3151), + [sym_variable_name] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1527), }, [1362] = { - [sym_file_descriptor] = ACTIONS(2814), - [sym__concat] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(3086), - [anon_sym_RPAREN] = ACTIONS(2814), - [anon_sym_PIPE_AMP] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(3086), - [anon_sym_LT] = ACTIONS(3086), - [anon_sym_GT] = ACTIONS(3086), - [anon_sym_GT_GT] = ACTIONS(2814), - [anon_sym_AMP_GT] = ACTIONS(3086), - [anon_sym_AMP_GT_GT] = ACTIONS(2814), - [anon_sym_LT_AMP] = ACTIONS(2814), - [anon_sym_GT_AMP] = ACTIONS(2814), - [anon_sym_LT_LT] = ACTIONS(3086), - [anon_sym_LT_LT_DASH] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [sym_raw_string] = ACTIONS(2814), - [anon_sym_DOLLAR] = ACTIONS(3086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2814), - [anon_sym_BQUOTE] = ACTIONS(2814), - [anon_sym_LT_LPAREN] = ACTIONS(2814), - [anon_sym_GT_LPAREN] = ACTIONS(2814), - [sym_word] = ACTIONS(2816), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(1970), + [sym_variable_name] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_PIPE_AMP] = ACTIONS(1970), + [anon_sym_AMP_AMP] = ACTIONS(1970), + [anon_sym_PIPE_PIPE] = ACTIONS(1970), + [anon_sym_BQUOTE] = ACTIONS(1970), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2762), }, [1363] = { - [sym_file_descriptor] = ACTIONS(1712), - [sym__concat] = ACTIONS(1712), - [anon_sym_PIPE] = ACTIONS(2261), - [anon_sym_RPAREN] = ACTIONS(1712), - [anon_sym_PIPE_AMP] = ACTIONS(1712), - [anon_sym_AMP_AMP] = ACTIONS(1712), - [anon_sym_PIPE_PIPE] = ACTIONS(1712), - [anon_sym_LT] = ACTIONS(2261), - [anon_sym_GT] = ACTIONS(2261), - [anon_sym_GT_GT] = ACTIONS(1712), - [anon_sym_AMP_GT] = ACTIONS(2261), - [anon_sym_AMP_GT_GT] = ACTIONS(1712), - [anon_sym_LT_AMP] = ACTIONS(1712), - [anon_sym_GT_AMP] = ACTIONS(1712), - [anon_sym_LT_LT] = ACTIONS(2261), - [anon_sym_LT_LT_DASH] = ACTIONS(1712), - [anon_sym_BQUOTE] = ACTIONS(1712), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(1037), + [sym__concat] = ACTIONS(1037), + [sym_variable_name] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1534), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_PIPE_AMP] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1037), + [anon_sym_PIPE_PIPE] = ACTIONS(1037), + [anon_sym_BQUOTE] = ACTIONS(1037), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1534), }, [1364] = { - [anon_sym_AT] = ACTIONS(3213), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3156), + [sym_comment] = ACTIONS(50), }, [1365] = { - [sym_file_descriptor] = ACTIONS(1718), - [sym__concat] = ACTIONS(1718), - [anon_sym_PIPE] = ACTIONS(2265), - [anon_sym_RPAREN] = ACTIONS(1718), - [anon_sym_PIPE_AMP] = ACTIONS(1718), - [anon_sym_AMP_AMP] = ACTIONS(1718), - [anon_sym_PIPE_PIPE] = ACTIONS(1718), - [anon_sym_LT] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(2265), - [anon_sym_GT_GT] = ACTIONS(1718), - [anon_sym_AMP_GT] = ACTIONS(2265), - [anon_sym_AMP_GT_GT] = ACTIONS(1718), - [anon_sym_LT_AMP] = ACTIONS(1718), - [anon_sym_GT_AMP] = ACTIONS(1718), - [anon_sym_LT_LT] = ACTIONS(2265), - [anon_sym_LT_LT_DASH] = ACTIONS(1718), - [anon_sym_BQUOTE] = ACTIONS(1718), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LBRACK] = ACTIONS(3160), + [sym_comment] = ACTIONS(50), }, [1366] = { - [anon_sym_AT] = ACTIONS(3215), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(1066), + [sym__concat] = ACTIONS(1066), + [sym_variable_name] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_RPAREN] = ACTIONS(1066), + [anon_sym_PIPE_AMP] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_BQUOTE] = ACTIONS(1066), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1544), }, [1367] = { - [anon_sym_RBRACK] = ACTIONS(3217), - [sym_comment] = ACTIONS(52), + [anon_sym_AT] = ACTIONS(3162), + [sym_comment] = ACTIONS(50), }, [1368] = { - [sym_file_descriptor] = ACTIONS(1726), - [sym__concat] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(2271), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_PIPE_AMP] = ACTIONS(1726), - [anon_sym_AMP_AMP] = ACTIONS(1726), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(2271), - [anon_sym_GT] = ACTIONS(2271), - [anon_sym_GT_GT] = ACTIONS(1726), - [anon_sym_AMP_GT] = ACTIONS(2271), - [anon_sym_AMP_GT_GT] = ACTIONS(1726), - [anon_sym_LT_AMP] = ACTIONS(1726), - [anon_sym_GT_AMP] = ACTIONS(1726), - [anon_sym_LT_LT] = ACTIONS(2271), - [anon_sym_LT_LT_DASH] = ACTIONS(1726), - [anon_sym_BQUOTE] = ACTIONS(1726), - [sym_comment] = ACTIONS(52), + [sym_concatenation] = STATE(1511), + [sym_string] = STATE(1508), + [sym_simple_expansion] = STATE(1508), + [sym_expansion] = STATE(1508), + [sym_command_substitution] = STATE(1508), + [sym_process_substitution] = STATE(1508), + [sym_word] = ACTIONS(3164), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(3164), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3168), }, [1369] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(3219), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(1078), + [sym__concat] = ACTIONS(1078), + [sym_variable_name] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1554), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_PIPE_AMP] = ACTIONS(1078), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_BQUOTE] = ACTIONS(1078), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1554), }, [1370] = { - [anon_sym_RBRACE] = ACTIONS(3219), - [sym_comment] = ACTIONS(52), + [anon_sym_AT] = ACTIONS(3170), + [sym_comment] = ACTIONS(50), }, [1371] = { - [anon_sym_RBRACK] = ACTIONS(3221), - [sym_comment] = ACTIONS(52), + [sym_concatenation] = STATE(1515), + [sym_string] = STATE(1513), + [sym_simple_expansion] = STATE(1513), + [sym_expansion] = STATE(1513), + [sym_command_substitution] = STATE(1513), + [sym_process_substitution] = STATE(1513), + [sym_word] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(3172), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3174), }, [1372] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(3223), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(1162), + [sym__concat] = ACTIONS(1162), + [sym_variable_name] = ACTIONS(1162), + [anon_sym_PIPE] = ACTIONS(1562), + [anon_sym_RPAREN] = ACTIONS(1162), + [anon_sym_PIPE_AMP] = ACTIONS(1162), + [anon_sym_AMP_AMP] = ACTIONS(1162), + [anon_sym_PIPE_PIPE] = ACTIONS(1162), + [anon_sym_BQUOTE] = ACTIONS(1162), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1562), }, [1373] = { - [anon_sym_RBRACE] = ACTIONS(3223), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(1214), + [sym__concat] = ACTIONS(1214), + [sym_variable_name] = ACTIONS(1214), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_RPAREN] = ACTIONS(1214), + [anon_sym_PIPE_AMP] = ACTIONS(1214), + [anon_sym_AMP_AMP] = ACTIONS(1214), + [anon_sym_PIPE_PIPE] = ACTIONS(1214), + [anon_sym_BQUOTE] = ACTIONS(1214), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1564), }, [1374] = { - [aux_sym_concatenation_repeat1] = STATE(1375), - [sym__concat] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PIPE_AMP] = ACTIONS(725), - [anon_sym_AMP_AMP] = ACTIONS(725), - [anon_sym_PIPE_PIPE] = ACTIONS(725), - [anon_sym_BQUOTE] = ACTIONS(725), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(3176), + [sym_comment] = ACTIONS(50), }, [1375] = { - [aux_sym_concatenation_repeat1] = STATE(1485), - [sym__concat] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(883), - [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), + [anon_sym_RBRACE] = ACTIONS(3178), + [sym_comment] = ACTIONS(50), }, [1376] = { - [aux_sym_concatenation_repeat1] = STATE(1376), - [sym__concat] = ACTIONS(3184), - [sym_variable_name] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_PIPE_AMP] = ACTIONS(1101), - [anon_sym_AMP_AMP] = ACTIONS(1101), - [anon_sym_PIPE_PIPE] = ACTIONS(1101), - [anon_sym_BQUOTE] = ACTIONS(1101), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(1589), + [sym_file_descriptor] = ACTIONS(2746), + [sym_word] = ACTIONS(2746), + [sym__concat] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(3049), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_PIPE_AMP] = ACTIONS(2746), + [anon_sym_AMP_AMP] = ACTIONS(2746), + [anon_sym_PIPE_PIPE] = ACTIONS(2746), + [anon_sym_LT] = ACTIONS(3049), + [anon_sym_GT] = ACTIONS(3049), + [anon_sym_GT_GT] = ACTIONS(2746), + [anon_sym_AMP_GT] = ACTIONS(3049), + [anon_sym_AMP_GT_GT] = ACTIONS(2746), + [anon_sym_LT_AMP] = ACTIONS(2746), + [anon_sym_GT_AMP] = ACTIONS(2746), + [anon_sym_LT_LT] = ACTIONS(3049), + [anon_sym_LT_LT_DASH] = ACTIONS(2746), + [anon_sym_DQUOTE] = ACTIONS(2746), + [sym_raw_string] = ACTIONS(2746), + [anon_sym_DOLLAR] = ACTIONS(3049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2746), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2746), + [anon_sym_BQUOTE] = ACTIONS(2746), + [anon_sym_LT_LPAREN] = ACTIONS(2746), + [anon_sym_GT_LPAREN] = ACTIONS(2746), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3049), }, [1377] = { - [anon_sym_RBRACK] = ACTIONS(3225), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2750), + [sym_word] = ACTIONS(2750), + [sym__concat] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_PIPE_AMP] = ACTIONS(2750), + [anon_sym_AMP_AMP] = ACTIONS(2750), + [anon_sym_PIPE_PIPE] = ACTIONS(2750), + [anon_sym_LT] = ACTIONS(3051), + [anon_sym_GT] = ACTIONS(3051), + [anon_sym_GT_GT] = ACTIONS(2750), + [anon_sym_AMP_GT] = ACTIONS(3051), + [anon_sym_AMP_GT_GT] = ACTIONS(2750), + [anon_sym_LT_AMP] = ACTIONS(2750), + [anon_sym_GT_AMP] = ACTIONS(2750), + [anon_sym_LT_LT] = ACTIONS(3051), + [anon_sym_LT_LT_DASH] = ACTIONS(2750), + [anon_sym_DQUOTE] = ACTIONS(2750), + [sym_raw_string] = ACTIONS(2750), + [anon_sym_DOLLAR] = ACTIONS(3051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2750), + [anon_sym_BQUOTE] = ACTIONS(2750), + [anon_sym_LT_LPAREN] = ACTIONS(2750), + [anon_sym_GT_LPAREN] = ACTIONS(2750), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3051), }, [1378] = { - [anon_sym_RBRACK] = ACTIONS(3227), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2754), + [sym_word] = ACTIONS(2754), + [sym__concat] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(3053), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_PIPE_AMP] = ACTIONS(2754), + [anon_sym_AMP_AMP] = ACTIONS(2754), + [anon_sym_PIPE_PIPE] = ACTIONS(2754), + [anon_sym_LT] = ACTIONS(3053), + [anon_sym_GT] = ACTIONS(3053), + [anon_sym_GT_GT] = ACTIONS(2754), + [anon_sym_AMP_GT] = ACTIONS(3053), + [anon_sym_AMP_GT_GT] = ACTIONS(2754), + [anon_sym_LT_AMP] = ACTIONS(2754), + [anon_sym_GT_AMP] = ACTIONS(2754), + [anon_sym_LT_LT] = ACTIONS(3053), + [anon_sym_LT_LT_DASH] = ACTIONS(2754), + [anon_sym_DQUOTE] = ACTIONS(2754), + [sym_raw_string] = ACTIONS(2754), + [anon_sym_DOLLAR] = ACTIONS(3053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2754), + [anon_sym_BQUOTE] = ACTIONS(2754), + [anon_sym_LT_LPAREN] = ACTIONS(2754), + [anon_sym_GT_LPAREN] = ACTIONS(2754), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3053), }, [1379] = { - [anon_sym_RBRACE] = ACTIONS(3229), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2758), + [sym_word] = ACTIONS(2758), + [sym__concat] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(3055), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_PIPE_AMP] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(3055), + [anon_sym_GT] = ACTIONS(3055), + [anon_sym_GT_GT] = ACTIONS(2758), + [anon_sym_AMP_GT] = ACTIONS(3055), + [anon_sym_AMP_GT_GT] = ACTIONS(2758), + [anon_sym_LT_AMP] = ACTIONS(2758), + [anon_sym_GT_AMP] = ACTIONS(2758), + [anon_sym_LT_LT] = ACTIONS(3055), + [anon_sym_LT_LT_DASH] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [sym_raw_string] = ACTIONS(2758), + [anon_sym_DOLLAR] = ACTIONS(3055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2758), + [anon_sym_BQUOTE] = ACTIONS(2758), + [anon_sym_LT_LPAREN] = ACTIONS(2758), + [anon_sym_GT_LPAREN] = ACTIONS(2758), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3055), }, [1380] = { - [sym_file_descriptor] = ACTIONS(2351), - [sym__concat] = ACTIONS(2351), - [anon_sym_PIPE] = ACTIONS(2353), - [anon_sym_RPAREN] = ACTIONS(2353), - [anon_sym_SEMI_SEMI] = ACTIONS(2353), - [anon_sym_PIPE_AMP] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2353), - [anon_sym_GT] = ACTIONS(2353), - [anon_sym_GT_GT] = ACTIONS(2353), - [anon_sym_AMP_GT] = ACTIONS(2353), - [anon_sym_AMP_GT_GT] = ACTIONS(2353), - [anon_sym_LT_AMP] = ACTIONS(2353), - [anon_sym_GT_AMP] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_LT_LT_DASH] = ACTIONS(2353), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_LF] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2353), + [sym_file_descriptor] = ACTIONS(1629), + [sym__concat] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(1629), + [anon_sym_PIPE_AMP] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE_PIPE] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(2154), + [anon_sym_GT] = ACTIONS(2154), + [anon_sym_GT_GT] = ACTIONS(1629), + [anon_sym_AMP_GT] = ACTIONS(2154), + [anon_sym_AMP_GT_GT] = ACTIONS(1629), + [anon_sym_LT_AMP] = ACTIONS(1629), + [anon_sym_GT_AMP] = ACTIONS(1629), + [anon_sym_LT_LT] = ACTIONS(2154), + [anon_sym_LT_LT_DASH] = ACTIONS(1629), + [anon_sym_BQUOTE] = ACTIONS(1629), + [sym_comment] = ACTIONS(50), }, [1381] = { - [anon_sym_RBRACE] = ACTIONS(3231), - [sym_comment] = ACTIONS(52), + [anon_sym_AT] = ACTIONS(3180), + [sym_comment] = ACTIONS(50), }, [1382] = { - [sym_file_descriptor] = ACTIONS(2357), - [sym__concat] = ACTIONS(2357), - [anon_sym_PIPE] = ACTIONS(2359), - [anon_sym_RPAREN] = ACTIONS(2359), - [anon_sym_SEMI_SEMI] = ACTIONS(2359), - [anon_sym_PIPE_AMP] = ACTIONS(2359), - [anon_sym_AMP_AMP] = ACTIONS(2359), - [anon_sym_PIPE_PIPE] = ACTIONS(2359), - [anon_sym_LT] = ACTIONS(2359), - [anon_sym_GT] = ACTIONS(2359), - [anon_sym_GT_GT] = ACTIONS(2359), - [anon_sym_AMP_GT] = ACTIONS(2359), - [anon_sym_AMP_GT_GT] = ACTIONS(2359), - [anon_sym_LT_AMP] = ACTIONS(2359), - [anon_sym_GT_AMP] = ACTIONS(2359), - [anon_sym_LT_LT] = ACTIONS(2359), - [anon_sym_LT_LT_DASH] = ACTIONS(2359), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2359), - [anon_sym_LF] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), + [sym_file_descriptor] = ACTIONS(1635), + [sym__concat] = ACTIONS(1635), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_RPAREN] = ACTIONS(1635), + [anon_sym_PIPE_AMP] = ACTIONS(1635), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_PIPE_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_GT] = ACTIONS(2158), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_AMP_GT] = ACTIONS(2158), + [anon_sym_AMP_GT_GT] = ACTIONS(1635), + [anon_sym_LT_AMP] = ACTIONS(1635), + [anon_sym_GT_AMP] = ACTIONS(1635), + [anon_sym_LT_LT] = ACTIONS(2158), + [anon_sym_LT_LT_DASH] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), + [sym_comment] = ACTIONS(50), }, [1383] = { - [sym__heredoc_middle] = ACTIONS(1712), - [sym__heredoc_end] = ACTIONS(1712), - [anon_sym_DOLLAR] = ACTIONS(2261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1712), - [sym_comment] = ACTIONS(52), + [anon_sym_AT] = ACTIONS(3182), + [sym_comment] = ACTIONS(50), }, [1384] = { - [anon_sym_AT] = ACTIONS(3233), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACK] = ACTIONS(3184), + [sym_comment] = ACTIONS(50), }, [1385] = { - [sym__heredoc_middle] = ACTIONS(1718), - [sym__heredoc_end] = ACTIONS(1718), - [anon_sym_DOLLAR] = ACTIONS(2265), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1718), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(3186), + [anon_sym_RBRACE] = ACTIONS(3188), + [sym_comment] = ACTIONS(50), }, [1386] = { - [anon_sym_AT] = ACTIONS(3235), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(1647), + [sym__concat] = ACTIONS(1647), + [anon_sym_PIPE] = ACTIONS(2168), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_PIPE_AMP] = ACTIONS(1647), + [anon_sym_AMP_AMP] = ACTIONS(1647), + [anon_sym_PIPE_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(2168), + [anon_sym_GT] = ACTIONS(2168), + [anon_sym_GT_GT] = ACTIONS(1647), + [anon_sym_AMP_GT] = ACTIONS(2168), + [anon_sym_AMP_GT_GT] = ACTIONS(1647), + [anon_sym_LT_AMP] = ACTIONS(1647), + [anon_sym_GT_AMP] = ACTIONS(1647), + [anon_sym_LT_LT] = ACTIONS(2168), + [anon_sym_LT_LT_DASH] = ACTIONS(1647), + [anon_sym_BQUOTE] = ACTIONS(1647), + [sym_comment] = ACTIONS(50), }, [1387] = { - [anon_sym_RBRACK] = ACTIONS(3237), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3192), + [sym_comment] = ACTIONS(50), }, [1388] = { - [sym__heredoc_middle] = ACTIONS(1726), - [sym__heredoc_end] = ACTIONS(1726), - [anon_sym_DOLLAR] = ACTIONS(2271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3188), + [sym_comment] = ACTIONS(50), }, [1389] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(3239), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACK] = ACTIONS(3194), + [sym_comment] = ACTIONS(50), }, [1390] = { - [anon_sym_RBRACE] = ACTIONS(3239), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(3196), + [anon_sym_RBRACE] = ACTIONS(3198), + [sym_comment] = ACTIONS(50), }, [1391] = { - [anon_sym_RBRACK] = ACTIONS(3241), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(3200), + [anon_sym_RBRACE] = ACTIONS(3202), + [sym_comment] = ACTIONS(50), }, [1392] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(3243), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(3194), + [anon_sym_RBRACE] = ACTIONS(3198), + [sym_comment] = ACTIONS(50), }, [1393] = { - [anon_sym_RBRACE] = ACTIONS(3243), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(1395), + [sym__concat] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(723), + [anon_sym_AMP_AMP] = ACTIONS(723), + [anon_sym_PIPE_PIPE] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(723), + [sym_comment] = ACTIONS(50), }, [1394] = { - [anon_sym_RBRACE] = ACTIONS(3245), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(1396), + [sym__concat] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_PIPE_AMP] = ACTIONS(727), + [anon_sym_AMP_AMP] = ACTIONS(727), + [anon_sym_PIPE_PIPE] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(727), + [sym_comment] = ACTIONS(50), }, [1395] = { - [anon_sym_RBRACE] = ACTIONS(3247), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(1530), + [sym__concat] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(890), + [anon_sym_PIPE_AMP] = ACTIONS(282), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(282), + [sym_comment] = ACTIONS(50), }, [1396] = { - [sym__concat] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_RPAREN] = ACTIONS(2810), - [anon_sym_RBRACK] = ACTIONS(2810), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(1530), + [sym__concat] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_PIPE_AMP] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [anon_sym_BQUOTE] = ACTIONS(596), + [sym_comment] = ACTIONS(50), }, [1397] = { - [sym__concat] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(2814), - [anon_sym_RPAREN] = ACTIONS(2814), - [anon_sym_RBRACK] = ACTIONS(2814), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(1397), + [sym_word] = ACTIONS(731), + [sym__concat] = ACTIONS(3151), + [sym_variable_name] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1527), }, [1398] = { - [anon_sym_RBRACK] = ACTIONS(3249), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACK] = ACTIONS(3204), + [sym_comment] = ACTIONS(50), }, [1399] = { - [anon_sym_RBRACK] = ACTIONS(3251), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACK] = ACTIONS(3206), + [sym_comment] = ACTIONS(50), }, [1400] = { - [anon_sym_RBRACE] = ACTIONS(3253), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(3208), + [sym_comment] = ACTIONS(50), }, [1401] = { - [sym__concat] = ACTIONS(2351), - [anon_sym_RPAREN] = ACTIONS(2351), - [anon_sym_DQUOTE] = ACTIONS(2351), - [sym_raw_string] = ACTIONS(2351), - [anon_sym_DOLLAR] = ACTIONS(2751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2351), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2351), - [anon_sym_BQUOTE] = ACTIONS(2351), - [anon_sym_LT_LPAREN] = ACTIONS(2351), - [anon_sym_GT_LPAREN] = ACTIONS(2351), - [sym_word] = ACTIONS(2751), - [sym_comment] = ACTIONS(52), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), }, [1402] = { - [anon_sym_RBRACE] = ACTIONS(3255), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2268), + [sym__concat] = ACTIONS(2268), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_RPAREN] = ACTIONS(2270), + [anon_sym_SEMI_SEMI] = ACTIONS(2270), + [anon_sym_PIPE_AMP] = ACTIONS(2270), + [anon_sym_AMP_AMP] = ACTIONS(2270), + [anon_sym_PIPE_PIPE] = ACTIONS(2270), + [anon_sym_LT] = ACTIONS(2270), + [anon_sym_GT] = ACTIONS(2270), + [anon_sym_GT_GT] = ACTIONS(2270), + [anon_sym_AMP_GT] = ACTIONS(2270), + [anon_sym_AMP_GT_GT] = ACTIONS(2270), + [anon_sym_LT_AMP] = ACTIONS(2270), + [anon_sym_GT_AMP] = ACTIONS(2270), + [anon_sym_LT_LT] = ACTIONS(2270), + [anon_sym_LT_LT_DASH] = ACTIONS(2270), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym_LF] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(2270), }, [1403] = { - [sym__concat] = ACTIONS(2357), - [anon_sym_RPAREN] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2357), - [sym_raw_string] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2755), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2357), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2357), - [anon_sym_BQUOTE] = ACTIONS(2357), - [anon_sym_LT_LPAREN] = ACTIONS(2357), - [anon_sym_GT_LPAREN] = ACTIONS(2357), - [sym_word] = ACTIONS(2755), - [sym_comment] = ACTIONS(52), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), }, [1404] = { - [anon_sym_RBRACE] = ACTIONS(3257), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2274), + [sym__concat] = ACTIONS(2274), + [anon_sym_PIPE] = ACTIONS(2276), + [anon_sym_RPAREN] = ACTIONS(2276), + [anon_sym_SEMI_SEMI] = ACTIONS(2276), + [anon_sym_PIPE_AMP] = ACTIONS(2276), + [anon_sym_AMP_AMP] = ACTIONS(2276), + [anon_sym_PIPE_PIPE] = ACTIONS(2276), + [anon_sym_LT] = ACTIONS(2276), + [anon_sym_GT] = ACTIONS(2276), + [anon_sym_GT_GT] = ACTIONS(2276), + [anon_sym_AMP_GT] = ACTIONS(2276), + [anon_sym_AMP_GT_GT] = ACTIONS(2276), + [anon_sym_LT_AMP] = ACTIONS(2276), + [anon_sym_GT_AMP] = ACTIONS(2276), + [anon_sym_LT_LT] = ACTIONS(2276), + [anon_sym_LT_LT_DASH] = ACTIONS(2276), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_LF] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(2276), }, [1405] = { - [anon_sym_RBRACE] = ACTIONS(3259), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(3212), + [sym_comment] = ACTIONS(50), }, [1406] = { - [sym_file_descriptor] = ACTIONS(2810), - [sym__concat] = ACTIONS(2810), - [sym_variable_name] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_RPAREN] = ACTIONS(2812), - [anon_sym_SEMI_SEMI] = ACTIONS(2812), - [anon_sym_PIPE_AMP] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_PIPE_PIPE] = ACTIONS(2812), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_GT] = ACTIONS(2812), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_AMP_GT] = ACTIONS(2812), - [anon_sym_AMP_GT_GT] = ACTIONS(2812), - [anon_sym_LT_AMP] = ACTIONS(2812), - [anon_sym_GT_AMP] = ACTIONS(2812), - [anon_sym_DQUOTE] = ACTIONS(2812), - [sym_raw_string] = ACTIONS(2812), - [anon_sym_DOLLAR] = ACTIONS(2812), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2812), - [anon_sym_BQUOTE] = ACTIONS(2812), - [anon_sym_LT_LPAREN] = ACTIONS(2812), - [anon_sym_GT_LPAREN] = ACTIONS(2812), - [sym_word] = ACTIONS(2812), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_LF] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2812), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), }, [1407] = { - [sym_file_descriptor] = ACTIONS(2814), - [sym__concat] = ACTIONS(2814), - [sym_variable_name] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_RPAREN] = ACTIONS(2816), - [anon_sym_SEMI_SEMI] = ACTIONS(2816), - [anon_sym_PIPE_AMP] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_PIPE_PIPE] = ACTIONS(2816), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(2816), - [anon_sym_AMP_GT] = ACTIONS(2816), - [anon_sym_AMP_GT_GT] = ACTIONS(2816), - [anon_sym_LT_AMP] = ACTIONS(2816), - [anon_sym_GT_AMP] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(2816), - [anon_sym_DOLLAR] = ACTIONS(2816), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2816), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2816), - [anon_sym_BQUOTE] = ACTIONS(2816), - [anon_sym_LT_LPAREN] = ACTIONS(2816), - [anon_sym_GT_LPAREN] = ACTIONS(2816), - [sym_word] = ACTIONS(2816), + [sym_file_descriptor] = ACTIONS(2280), + [sym__concat] = ACTIONS(2280), + [anon_sym_PIPE] = ACTIONS(2282), + [anon_sym_RPAREN] = ACTIONS(2282), + [anon_sym_SEMI_SEMI] = ACTIONS(2282), + [anon_sym_PIPE_AMP] = ACTIONS(2282), + [anon_sym_AMP_AMP] = ACTIONS(2282), + [anon_sym_PIPE_PIPE] = ACTIONS(2282), + [anon_sym_LT] = ACTIONS(2282), + [anon_sym_GT] = ACTIONS(2282), + [anon_sym_GT_GT] = ACTIONS(2282), + [anon_sym_AMP_GT] = ACTIONS(2282), + [anon_sym_AMP_GT_GT] = ACTIONS(2282), + [anon_sym_LT_AMP] = ACTIONS(2282), + [anon_sym_GT_AMP] = ACTIONS(2282), + [anon_sym_LT_LT] = ACTIONS(2282), + [anon_sym_LT_LT_DASH] = ACTIONS(2282), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_LF] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_SEMI] = ACTIONS(2282), + [anon_sym_LF] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2282), }, [1408] = { - [anon_sym_RBRACK] = ACTIONS(3261), - [sym_comment] = ACTIONS(52), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3214), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), }, [1409] = { - [anon_sym_RBRACK] = ACTIONS(3263), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2286), + [sym__concat] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_RPAREN] = ACTIONS(2288), + [anon_sym_SEMI_SEMI] = ACTIONS(2288), + [anon_sym_PIPE_AMP] = ACTIONS(2288), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_AMP_GT] = ACTIONS(2288), + [anon_sym_AMP_GT_GT] = ACTIONS(2288), + [anon_sym_LT_AMP] = ACTIONS(2288), + [anon_sym_GT_AMP] = ACTIONS(2288), + [anon_sym_LT_LT] = ACTIONS(2288), + [anon_sym_LT_LT_DASH] = ACTIONS(2288), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_LF] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), }, [1410] = { - [anon_sym_RBRACE] = ACTIONS(3265), - [sym_comment] = ACTIONS(52), + [sym__heredoc_middle] = ACTIONS(1629), + [sym__heredoc_end] = ACTIONS(1629), + [anon_sym_DOLLAR] = ACTIONS(2154), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1629), + [sym_comment] = ACTIONS(50), }, [1411] = { - [sym__concat] = ACTIONS(2351), - [anon_sym_SEMI_SEMI] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2353), - [sym_raw_string] = ACTIONS(2353), - [anon_sym_DOLLAR] = ACTIONS(2353), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2353), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2353), - [anon_sym_BQUOTE] = ACTIONS(2353), - [anon_sym_LT_LPAREN] = ACTIONS(2353), - [anon_sym_GT_LPAREN] = ACTIONS(2353), - [sym_word] = ACTIONS(2353), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_LF] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2353), + [anon_sym_AT] = ACTIONS(3216), + [sym_comment] = ACTIONS(50), }, [1412] = { - [anon_sym_RBRACE] = ACTIONS(3267), - [sym_comment] = ACTIONS(52), + [sym__heredoc_middle] = ACTIONS(1635), + [sym__heredoc_end] = ACTIONS(1635), + [anon_sym_DOLLAR] = ACTIONS(2158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1635), + [sym_comment] = ACTIONS(50), }, [1413] = { - [sym__concat] = ACTIONS(2357), - [anon_sym_SEMI_SEMI] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [sym_raw_string] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(2359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2359), - [anon_sym_BQUOTE] = ACTIONS(2359), - [anon_sym_LT_LPAREN] = ACTIONS(2359), - [anon_sym_GT_LPAREN] = ACTIONS(2359), - [sym_word] = ACTIONS(2359), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2359), - [anon_sym_LF] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), + [anon_sym_AT] = ACTIONS(3218), + [sym_comment] = ACTIONS(50), }, [1414] = { - [anon_sym_esac] = ACTIONS(3269), - [anon_sym_DQUOTE] = ACTIONS(3271), - [sym_raw_string] = ACTIONS(3271), - [anon_sym_DOLLAR] = ACTIONS(3269), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3271), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3271), - [anon_sym_BQUOTE] = ACTIONS(3271), - [anon_sym_LT_LPAREN] = ACTIONS(3271), - [anon_sym_GT_LPAREN] = ACTIONS(3271), - [sym_word] = ACTIONS(3273), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACK] = ACTIONS(3220), + [sym_comment] = ACTIONS(50), }, [1415] = { - [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(1415), - [aux_sym_command_repeat1] = STATE(31), - [sym_file_descriptor] = ACTIONS(642), - [sym_variable_name] = ACTIONS(645), - [anon_sym_for] = ACTIONS(650), - [anon_sym_while] = ACTIONS(653), - [anon_sym_if] = ACTIONS(656), - [anon_sym_case] = ACTIONS(659), - [anon_sym_SEMI_SEMI] = ACTIONS(648), - [anon_sym_function] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_LBRACK_LBRACK] = ACTIONS(671), - [anon_sym_declare] = ACTIONS(674), - [anon_sym_typeset] = ACTIONS(674), - [anon_sym_export] = ACTIONS(674), - [anon_sym_readonly] = ACTIONS(674), - [anon_sym_local] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(677), - [anon_sym_GT_GT] = ACTIONS(680), - [anon_sym_AMP_GT] = ACTIONS(677), - [anon_sym_AMP_GT_GT] = ACTIONS(680), - [anon_sym_LT_AMP] = ACTIONS(680), - [anon_sym_GT_AMP] = ACTIONS(680), - [anon_sym_DQUOTE] = ACTIONS(683), - [sym_raw_string] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(692), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), - [anon_sym_BQUOTE] = ACTIONS(698), - [anon_sym_LT_LPAREN] = ACTIONS(701), - [anon_sym_GT_LPAREN] = ACTIONS(701), - [sym_word] = ACTIONS(704), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(3222), + [anon_sym_RBRACE] = ACTIONS(3224), + [sym_comment] = ACTIONS(50), }, [1416] = { + [sym__heredoc_middle] = ACTIONS(1647), + [sym__heredoc_end] = ACTIONS(1647), + [anon_sym_DOLLAR] = ACTIONS(2168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1647), + [sym_comment] = ACTIONS(50), + }, + [1417] = { + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(3226), + [anon_sym_RBRACE] = ACTIONS(3228), + [sym_comment] = ACTIONS(50), + }, + [1418] = { + [sym__concat] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3224), + [sym_comment] = ACTIONS(50), + }, + [1419] = { + [anon_sym_RBRACK] = ACTIONS(3230), + [sym_comment] = ACTIONS(50), + }, + [1420] = { + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(3232), + [anon_sym_RBRACE] = ACTIONS(3234), + [sym_comment] = ACTIONS(50), + }, + [1421] = { + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(3236), + [anon_sym_RBRACE] = ACTIONS(3238), + [sym_comment] = ACTIONS(50), + }, + [1422] = { + [sym__concat] = ACTIONS(3230), + [anon_sym_RBRACE] = ACTIONS(3234), + [sym_comment] = ACTIONS(50), + }, + [1423] = { + [anon_sym_RBRACE] = ACTIONS(3240), + [sym_comment] = ACTIONS(50), + }, + [1424] = { + [anon_sym_RBRACE] = ACTIONS(3242), + [sym_comment] = ACTIONS(50), + }, + [1425] = { + [sym__concat] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2746), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_RBRACE] = ACTIONS(2746), + [anon_sym_RBRACK] = ACTIONS(2746), + [sym_comment] = ACTIONS(50), + }, + [1426] = { + [sym__concat] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_RBRACE] = ACTIONS(2750), + [anon_sym_RBRACK] = ACTIONS(2750), + [sym_comment] = ACTIONS(50), + }, + [1427] = { + [sym__concat] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_RBRACE] = ACTIONS(2754), + [anon_sym_RBRACK] = ACTIONS(2754), + [sym_comment] = ACTIONS(50), + }, + [1428] = { + [sym__concat] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_RBRACE] = ACTIONS(2758), + [anon_sym_RBRACK] = ACTIONS(2758), + [sym_comment] = ACTIONS(50), + }, + [1429] = { + [anon_sym_RBRACE] = ACTIONS(3244), + [sym_comment] = ACTIONS(50), + }, + [1430] = { + [anon_sym_RBRACE] = ACTIONS(3246), + [sym_comment] = ACTIONS(50), + }, + [1431] = { + [sym_file_descriptor] = ACTIONS(2746), + [sym_word] = ACTIONS(2746), + [sym__concat] = ACTIONS(2746), + [sym_variable_name] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_RPAREN] = ACTIONS(2748), + [anon_sym_SEMI_SEMI] = ACTIONS(2748), + [anon_sym_PIPE_AMP] = ACTIONS(2748), + [anon_sym_AMP_AMP] = ACTIONS(2748), + [anon_sym_PIPE_PIPE] = ACTIONS(2748), + [anon_sym_LT] = ACTIONS(2748), + [anon_sym_GT] = ACTIONS(2748), + [anon_sym_GT_GT] = ACTIONS(2748), + [anon_sym_AMP_GT] = ACTIONS(2748), + [anon_sym_AMP_GT_GT] = ACTIONS(2748), + [anon_sym_LT_AMP] = ACTIONS(2748), + [anon_sym_GT_AMP] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_raw_string] = ACTIONS(2748), + [anon_sym_DOLLAR] = ACTIONS(2748), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2748), + [anon_sym_BQUOTE] = ACTIONS(2748), + [anon_sym_LT_LPAREN] = ACTIONS(2748), + [anon_sym_GT_LPAREN] = ACTIONS(2748), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2748), + [anon_sym_SEMI] = ACTIONS(2748), + [anon_sym_LF] = ACTIONS(2748), + [anon_sym_AMP] = ACTIONS(2748), + }, + [1432] = { + [sym_file_descriptor] = ACTIONS(2750), + [sym_word] = ACTIONS(2750), + [sym__concat] = ACTIONS(2750), + [sym_variable_name] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_RPAREN] = ACTIONS(2752), + [anon_sym_SEMI_SEMI] = ACTIONS(2752), + [anon_sym_PIPE_AMP] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(2752), + [anon_sym_GT] = ACTIONS(2752), + [anon_sym_GT_GT] = ACTIONS(2752), + [anon_sym_AMP_GT] = ACTIONS(2752), + [anon_sym_AMP_GT_GT] = ACTIONS(2752), + [anon_sym_LT_AMP] = ACTIONS(2752), + [anon_sym_GT_AMP] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [sym_raw_string] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2752), + [anon_sym_BQUOTE] = ACTIONS(2752), + [anon_sym_LT_LPAREN] = ACTIONS(2752), + [anon_sym_GT_LPAREN] = ACTIONS(2752), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2752), + [anon_sym_LF] = ACTIONS(2752), + [anon_sym_AMP] = ACTIONS(2752), + }, + [1433] = { + [sym_file_descriptor] = ACTIONS(2754), + [sym_word] = ACTIONS(2754), + [sym__concat] = ACTIONS(2754), + [sym_variable_name] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_SEMI_SEMI] = ACTIONS(2756), + [anon_sym_PIPE_AMP] = ACTIONS(2756), + [anon_sym_AMP_AMP] = ACTIONS(2756), + [anon_sym_PIPE_PIPE] = ACTIONS(2756), + [anon_sym_LT] = ACTIONS(2756), + [anon_sym_GT] = ACTIONS(2756), + [anon_sym_GT_GT] = ACTIONS(2756), + [anon_sym_AMP_GT] = ACTIONS(2756), + [anon_sym_AMP_GT_GT] = ACTIONS(2756), + [anon_sym_LT_AMP] = ACTIONS(2756), + [anon_sym_GT_AMP] = ACTIONS(2756), + [anon_sym_DQUOTE] = ACTIONS(2756), + [sym_raw_string] = ACTIONS(2756), + [anon_sym_DOLLAR] = ACTIONS(2756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2756), + [anon_sym_BQUOTE] = ACTIONS(2756), + [anon_sym_LT_LPAREN] = ACTIONS(2756), + [anon_sym_GT_LPAREN] = ACTIONS(2756), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2756), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_LF] = ACTIONS(2756), + [anon_sym_AMP] = ACTIONS(2756), + }, + [1434] = { + [sym_file_descriptor] = ACTIONS(2758), + [sym_word] = ACTIONS(2758), + [sym__concat] = ACTIONS(2758), + [sym_variable_name] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2760), + [anon_sym_RPAREN] = ACTIONS(2760), + [anon_sym_SEMI_SEMI] = ACTIONS(2760), + [anon_sym_PIPE_AMP] = ACTIONS(2760), + [anon_sym_AMP_AMP] = ACTIONS(2760), + [anon_sym_PIPE_PIPE] = ACTIONS(2760), + [anon_sym_LT] = ACTIONS(2760), + [anon_sym_GT] = ACTIONS(2760), + [anon_sym_GT_GT] = ACTIONS(2760), + [anon_sym_AMP_GT] = ACTIONS(2760), + [anon_sym_AMP_GT_GT] = ACTIONS(2760), + [anon_sym_LT_AMP] = ACTIONS(2760), + [anon_sym_GT_AMP] = ACTIONS(2760), + [anon_sym_DQUOTE] = ACTIONS(2760), + [sym_raw_string] = ACTIONS(2760), + [anon_sym_DOLLAR] = ACTIONS(2760), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2760), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2760), + [anon_sym_BQUOTE] = ACTIONS(2760), + [anon_sym_LT_LPAREN] = ACTIONS(2760), + [anon_sym_GT_LPAREN] = ACTIONS(2760), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2760), + [anon_sym_SEMI] = ACTIONS(2760), + [anon_sym_LF] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2760), + }, + [1435] = { + [anon_sym_RBRACK] = ACTIONS(3248), + [sym_comment] = ACTIONS(50), + }, + [1436] = { + [anon_sym_RBRACK] = ACTIONS(3250), + [sym_comment] = ACTIONS(50), + }, + [1437] = { + [anon_sym_RBRACE] = ACTIONS(3252), + [sym_comment] = ACTIONS(50), + }, + [1438] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1439] = { + [sym_word] = ACTIONS(2268), + [sym__concat] = ACTIONS(2268), + [anon_sym_SEMI_SEMI] = ACTIONS(2270), + [anon_sym_DQUOTE] = ACTIONS(2270), + [sym_raw_string] = ACTIONS(2270), + [anon_sym_DOLLAR] = ACTIONS(2270), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2270), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2270), + [anon_sym_BQUOTE] = ACTIONS(2270), + [anon_sym_LT_LPAREN] = ACTIONS(2270), + [anon_sym_GT_LPAREN] = ACTIONS(2270), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2270), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym_LF] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(2270), + }, + [1440] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1441] = { + [sym_word] = ACTIONS(2274), + [sym__concat] = ACTIONS(2274), + [anon_sym_SEMI_SEMI] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_raw_string] = ACTIONS(2276), + [anon_sym_DOLLAR] = ACTIONS(2276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2276), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2276), + [anon_sym_BQUOTE] = ACTIONS(2276), + [anon_sym_LT_LPAREN] = ACTIONS(2276), + [anon_sym_GT_LPAREN] = ACTIONS(2276), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_LF] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(2276), + }, + [1442] = { + [anon_sym_RBRACE] = ACTIONS(3256), + [sym_comment] = ACTIONS(50), + }, + [1443] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3256), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1444] = { + [sym_word] = ACTIONS(2280), + [sym__concat] = ACTIONS(2280), + [anon_sym_SEMI_SEMI] = ACTIONS(2282), + [anon_sym_DQUOTE] = ACTIONS(2282), + [sym_raw_string] = ACTIONS(2282), + [anon_sym_DOLLAR] = ACTIONS(2282), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2282), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2282), + [anon_sym_BQUOTE] = ACTIONS(2282), + [anon_sym_LT_LPAREN] = ACTIONS(2282), + [anon_sym_GT_LPAREN] = ACTIONS(2282), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2282), + [anon_sym_SEMI] = ACTIONS(2282), + [anon_sym_LF] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2282), + }, + [1445] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1446] = { + [sym_word] = ACTIONS(2286), + [sym__concat] = ACTIONS(2286), + [anon_sym_SEMI_SEMI] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2288), + [sym_raw_string] = ACTIONS(2288), + [anon_sym_DOLLAR] = ACTIONS(2288), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2288), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2288), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LT_LPAREN] = ACTIONS(2288), + [anon_sym_GT_LPAREN] = ACTIONS(2288), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_LF] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + }, + [1447] = { + [sym_word] = ACTIONS(3260), + [anon_sym_esac] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3260), + [sym_raw_string] = ACTIONS(3260), + [anon_sym_DOLLAR] = ACTIONS(3262), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3260), + [anon_sym_BQUOTE] = ACTIONS(3260), + [anon_sym_LT_LPAREN] = ACTIONS(3260), + [anon_sym_GT_LPAREN] = ACTIONS(3260), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3264), + }, + [1448] = { [sym__terminated_statement] = STATE(23), [sym_for_statement] = STATE(24), [sym_while_statement] = STATE(24), @@ -31718,1742 +32374,2572 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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(1415), + [sym_string] = STATE(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(1448), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(640), + [sym_word] = ACTIONS(643), + [sym_variable_name] = ACTIONS(646), + [anon_sym_for] = ACTIONS(651), + [anon_sym_while] = ACTIONS(654), + [anon_sym_if] = ACTIONS(657), + [anon_sym_case] = ACTIONS(660), + [anon_sym_SEMI_SEMI] = ACTIONS(649), + [anon_sym_function] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACK_LBRACK] = ACTIONS(672), + [anon_sym_declare] = ACTIONS(675), + [anon_sym_typeset] = ACTIONS(675), + [anon_sym_export] = ACTIONS(675), + [anon_sym_readonly] = ACTIONS(675), + [anon_sym_local] = ACTIONS(675), + [anon_sym_LT] = ACTIONS(678), + [anon_sym_GT] = ACTIONS(678), + [anon_sym_GT_GT] = ACTIONS(681), + [anon_sym_AMP_GT] = ACTIONS(678), + [anon_sym_AMP_GT_GT] = ACTIONS(681), + [anon_sym_LT_AMP] = ACTIONS(681), + [anon_sym_GT_AMP] = ACTIONS(681), + [anon_sym_DQUOTE] = ACTIONS(684), + [sym_raw_string] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(696), + [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(702), + }, + [1449] = { + [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(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(1448), [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(3275), - [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), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_SEMI_SEMI] = ACTIONS(3266), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), [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), - }, - [1417] = { - [sym__concat] = ACTIONS(3112), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_SEMI_SEMI] = ACTIONS(3114), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(3114), - [anon_sym_LF] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(3114), - }, - [1418] = { - [sym__concat] = ACTIONS(3116), - [anon_sym_in] = ACTIONS(3118), - [anon_sym_SEMI_SEMI] = ACTIONS(3118), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_LF] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3118), - }, - [1419] = { - [sym__concat] = ACTIONS(1712), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_RPAREN] = ACTIONS(1714), - [anon_sym_SEMI_SEMI] = ACTIONS(1714), - [anon_sym_PIPE_AMP] = ACTIONS(1714), - [anon_sym_AMP_AMP] = ACTIONS(1714), - [anon_sym_PIPE_PIPE] = ACTIONS(1714), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_LF] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1714), - }, - [1420] = { - [anon_sym_AT] = ACTIONS(3277), - [sym_comment] = ACTIONS(52), - }, - [1421] = { - [sym__concat] = ACTIONS(1718), - [anon_sym_PIPE] = ACTIONS(1720), - [anon_sym_RPAREN] = ACTIONS(1720), - [anon_sym_SEMI_SEMI] = ACTIONS(1720), - [anon_sym_PIPE_AMP] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_LF] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1720), - }, - [1422] = { - [anon_sym_AT] = ACTIONS(3279), - [sym_comment] = ACTIONS(52), - }, - [1423] = { - [anon_sym_RBRACK] = ACTIONS(3281), - [sym_comment] = ACTIONS(52), - }, - [1424] = { - [sym__concat] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_RPAREN] = ACTIONS(1728), - [anon_sym_SEMI_SEMI] = ACTIONS(1728), - [anon_sym_PIPE_AMP] = ACTIONS(1728), - [anon_sym_AMP_AMP] = ACTIONS(1728), - [anon_sym_PIPE_PIPE] = ACTIONS(1728), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_LF] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - }, - [1425] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(3283), - [sym_comment] = ACTIONS(52), - }, - [1426] = { - [anon_sym_RBRACE] = ACTIONS(3283), - [sym_comment] = ACTIONS(52), - }, - [1427] = { - [anon_sym_RBRACK] = ACTIONS(3285), - [sym_comment] = ACTIONS(52), - }, - [1428] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(3287), - [sym_comment] = ACTIONS(52), - }, - [1429] = { - [anon_sym_RBRACE] = ACTIONS(3287), - [sym_comment] = ACTIONS(52), - }, - [1430] = { - [aux_sym_concatenation_repeat1] = STATE(1430), - [sym__concat] = ACTIONS(3055), - [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1103), - [anon_sym_SEMI_SEMI] = ACTIONS(1103), - [anon_sym_PIPE_AMP] = ACTIONS(1103), - [anon_sym_AMP_AMP] = ACTIONS(1103), - [anon_sym_PIPE_PIPE] = ACTIONS(1103), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_LF] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1103), - }, - [1431] = { - [sym__concat] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_RBRACK] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(3112), - [sym_raw_string] = ACTIONS(3112), - [anon_sym_DOLLAR] = ACTIONS(3289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3112), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3112), - [anon_sym_BQUOTE] = ACTIONS(3112), - [anon_sym_LT_LPAREN] = ACTIONS(3112), - [anon_sym_GT_LPAREN] = ACTIONS(3112), - [sym_word] = ACTIONS(3114), - [sym_comment] = ACTIONS(52), - }, - [1432] = { - [sym__concat] = ACTIONS(3116), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_RBRACK] = ACTIONS(3291), - [anon_sym_DQUOTE] = ACTIONS(3116), - [sym_raw_string] = ACTIONS(3116), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3116), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3116), - [anon_sym_BQUOTE] = ACTIONS(3116), - [anon_sym_LT_LPAREN] = ACTIONS(3116), - [anon_sym_GT_LPAREN] = ACTIONS(3116), - [sym_word] = ACTIONS(3118), - [sym_comment] = ACTIONS(52), - }, - [1433] = { - [sym__concat] = ACTIONS(3112), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(3112), - [sym_raw_string] = ACTIONS(3112), - [anon_sym_DOLLAR] = ACTIONS(3289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3112), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3112), - [anon_sym_BQUOTE] = ACTIONS(3112), - [anon_sym_LT_LPAREN] = ACTIONS(3112), - [anon_sym_GT_LPAREN] = ACTIONS(3112), - [sym_word] = ACTIONS(3114), - [sym_comment] = ACTIONS(52), - }, - [1434] = { - [sym__concat] = ACTIONS(3116), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3291), - [anon_sym_DQUOTE] = ACTIONS(3116), - [sym_raw_string] = ACTIONS(3116), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3116), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3116), - [anon_sym_BQUOTE] = ACTIONS(3116), - [anon_sym_LT_LPAREN] = ACTIONS(3116), - [anon_sym_GT_LPAREN] = ACTIONS(3116), - [sym_word] = ACTIONS(3118), - [sym_comment] = ACTIONS(52), - }, - [1435] = { - [anon_sym_RBRACK] = ACTIONS(3293), - [sym_comment] = ACTIONS(52), - }, - [1436] = { - [anon_sym_RBRACK] = ACTIONS(3295), - [sym_comment] = ACTIONS(52), - }, - [1437] = { - [anon_sym_RBRACE] = ACTIONS(3297), - [sym_comment] = ACTIONS(52), - }, - [1438] = { - [sym__concat] = ACTIONS(2351), - [sym_variable_name] = ACTIONS(2351), - [anon_sym_PIPE] = ACTIONS(2353), - [anon_sym_RPAREN] = ACTIONS(2353), - [anon_sym_SEMI_SEMI] = ACTIONS(2353), - [anon_sym_PIPE_AMP] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(2353), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_LF] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2353), - }, - [1439] = { - [anon_sym_RBRACE] = ACTIONS(3299), - [sym_comment] = ACTIONS(52), - }, - [1440] = { - [sym__concat] = ACTIONS(2357), - [sym_variable_name] = ACTIONS(2357), - [anon_sym_PIPE] = ACTIONS(2359), - [anon_sym_RPAREN] = ACTIONS(2359), - [anon_sym_SEMI_SEMI] = ACTIONS(2359), - [anon_sym_PIPE_AMP] = ACTIONS(2359), - [anon_sym_AMP_AMP] = ACTIONS(2359), - [anon_sym_PIPE_PIPE] = ACTIONS(2359), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(2359), - [anon_sym_SEMI] = ACTIONS(2359), - [anon_sym_LF] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - }, - [1441] = { - [sym_file_descriptor] = ACTIONS(3112), - [sym__concat] = ACTIONS(3112), - [sym_variable_name] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(3289), - [anon_sym_GT] = ACTIONS(3289), - [anon_sym_GT_GT] = ACTIONS(3112), - [anon_sym_AMP_GT] = ACTIONS(3289), - [anon_sym_AMP_GT_GT] = ACTIONS(3112), - [anon_sym_LT_AMP] = ACTIONS(3112), - [anon_sym_GT_AMP] = ACTIONS(3112), - [anon_sym_DQUOTE] = ACTIONS(3112), - [sym_raw_string] = ACTIONS(3112), - [anon_sym_DOLLAR] = ACTIONS(3289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3112), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3112), - [anon_sym_BQUOTE] = ACTIONS(3112), - [anon_sym_LT_LPAREN] = ACTIONS(3112), - [anon_sym_GT_LPAREN] = ACTIONS(3112), - [sym_word] = ACTIONS(3289), - [sym_comment] = ACTIONS(52), - }, - [1442] = { - [sym_file_descriptor] = ACTIONS(3116), - [sym__concat] = ACTIONS(3116), - [sym_variable_name] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3291), - [anon_sym_GT] = ACTIONS(3291), - [anon_sym_GT_GT] = ACTIONS(3116), - [anon_sym_AMP_GT] = ACTIONS(3291), - [anon_sym_AMP_GT_GT] = ACTIONS(3116), - [anon_sym_LT_AMP] = ACTIONS(3116), - [anon_sym_GT_AMP] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3116), - [sym_raw_string] = ACTIONS(3116), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3116), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3116), - [anon_sym_BQUOTE] = ACTIONS(3116), - [anon_sym_LT_LPAREN] = ACTIONS(3116), - [anon_sym_GT_LPAREN] = ACTIONS(3116), - [sym_word] = ACTIONS(3291), - [sym_comment] = ACTIONS(52), - }, - [1443] = { - [anon_sym_DQUOTE] = ACTIONS(3114), - [sym__string_content] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3114), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3114), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3114), - [anon_sym_BQUOTE] = ACTIONS(3114), - [sym_comment] = ACTIONS(64), - }, - [1444] = { - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__string_content] = ACTIONS(3291), - [anon_sym_DOLLAR] = ACTIONS(3118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3118), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3118), - [anon_sym_BQUOTE] = ACTIONS(3118), - [sym_comment] = ACTIONS(64), - }, - [1445] = { - [anon_sym_RBRACK] = ACTIONS(3301), - [sym_comment] = ACTIONS(52), - }, - [1446] = { - [anon_sym_RBRACK] = ACTIONS(3303), - [sym_comment] = ACTIONS(52), - }, - [1447] = { - [anon_sym_RBRACE] = ACTIONS(3305), - [sym_comment] = ACTIONS(52), - }, - [1448] = { - [sym_file_descriptor] = ACTIONS(2351), - [sym__concat] = ACTIONS(2351), - [sym_variable_name] = ACTIONS(2351), - [anon_sym_PIPE] = ACTIONS(2751), - [anon_sym_RPAREN] = ACTIONS(2351), - [anon_sym_PIPE_AMP] = ACTIONS(2351), - [anon_sym_AMP_AMP] = ACTIONS(2351), - [anon_sym_PIPE_PIPE] = ACTIONS(2751), - [anon_sym_LT] = ACTIONS(2751), - [anon_sym_GT] = ACTIONS(2751), - [anon_sym_GT_GT] = ACTIONS(2351), - [anon_sym_AMP_GT] = ACTIONS(2751), - [anon_sym_AMP_GT_GT] = ACTIONS(2351), - [anon_sym_LT_AMP] = ACTIONS(2351), - [anon_sym_GT_AMP] = ACTIONS(2351), - [anon_sym_DQUOTE] = ACTIONS(2351), - [sym_raw_string] = ACTIONS(2351), - [anon_sym_DOLLAR] = ACTIONS(2751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2351), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2351), - [anon_sym_BQUOTE] = ACTIONS(2351), - [anon_sym_LT_LPAREN] = ACTIONS(2351), - [anon_sym_GT_LPAREN] = ACTIONS(2351), - [sym_word] = ACTIONS(2353), - [sym_comment] = ACTIONS(52), - }, - [1449] = { - [anon_sym_RBRACE] = ACTIONS(3307), - [sym_comment] = ACTIONS(52), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), }, [1450] = { - [sym_file_descriptor] = ACTIONS(2357), - [sym__concat] = ACTIONS(2357), - [sym_variable_name] = ACTIONS(2357), - [anon_sym_PIPE] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2357), - [anon_sym_PIPE_AMP] = ACTIONS(2357), - [anon_sym_AMP_AMP] = ACTIONS(2357), - [anon_sym_PIPE_PIPE] = ACTIONS(2755), - [anon_sym_LT] = ACTIONS(2755), - [anon_sym_GT] = ACTIONS(2755), - [anon_sym_GT_GT] = ACTIONS(2357), - [anon_sym_AMP_GT] = ACTIONS(2755), - [anon_sym_AMP_GT_GT] = ACTIONS(2357), - [anon_sym_LT_AMP] = ACTIONS(2357), - [anon_sym_GT_AMP] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2357), - [sym_raw_string] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2755), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2357), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2357), - [anon_sym_BQUOTE] = ACTIONS(2357), - [anon_sym_LT_LPAREN] = ACTIONS(2357), - [anon_sym_GT_LPAREN] = ACTIONS(2357), - [sym_word] = ACTIONS(2359), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(3268), + [anon_sym_esac] = ACTIONS(3270), + [anon_sym_DQUOTE] = ACTIONS(3268), + [sym_raw_string] = ACTIONS(3268), + [anon_sym_DOLLAR] = ACTIONS(3270), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3268), + [anon_sym_BQUOTE] = ACTIONS(3268), + [anon_sym_LT_LPAREN] = ACTIONS(3268), + [anon_sym_GT_LPAREN] = ACTIONS(3268), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3272), }, [1451] = { - [anon_sym_PIPE] = ACTIONS(3309), - [anon_sym_RPAREN] = ACTIONS(3311), - [anon_sym_PIPE_AMP] = ACTIONS(3311), - [anon_sym_AMP_AMP] = ACTIONS(3311), - [anon_sym_PIPE_PIPE] = ACTIONS(3311), - [anon_sym_BQUOTE] = ACTIONS(3311), - [sym_comment] = ACTIONS(52), + [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(3), + [sym_simple_expansion] = STATE(3), + [sym_expansion] = STATE(3), + [sym_command_substitution] = STATE(3), + [sym_process_substitution] = STATE(3), + [aux_sym_program_repeat1] = STATE(1448), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_word] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_SEMI_SEMI] = ACTIONS(3274), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [anon_sym_DQUOTE] = ACTIONS(38), + [sym_raw_string] = ACTIONS(10), + [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_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(52), }, [1452] = { - [anon_sym_PIPE] = ACTIONS(3313), - [anon_sym_RPAREN] = ACTIONS(3315), - [anon_sym_PIPE_AMP] = ACTIONS(3315), - [anon_sym_AMP_AMP] = ACTIONS(3315), - [anon_sym_PIPE_PIPE] = ACTIONS(3315), - [anon_sym_BQUOTE] = ACTIONS(3315), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(3089), + [anon_sym_in] = ACTIONS(3091), + [anon_sym_SEMI_SEMI] = ACTIONS(3091), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(3091), + [anon_sym_LF] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3091), }, [1453] = { - [sym__concat] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1080), - [anon_sym_PIPE_AMP] = ACTIONS(1080), - [anon_sym_AMP_AMP] = ACTIONS(1080), - [anon_sym_PIPE_PIPE] = ACTIONS(1080), - [anon_sym_BQUOTE] = ACTIONS(1080), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(3093), + [anon_sym_in] = ACTIONS(3095), + [anon_sym_SEMI_SEMI] = ACTIONS(3095), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(3095), + [anon_sym_LF] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3095), }, [1454] = { - [sym__concat] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(1101), - [anon_sym_PIPE_AMP] = ACTIONS(1101), - [anon_sym_AMP_AMP] = ACTIONS(1101), - [anon_sym_PIPE_PIPE] = ACTIONS(1101), - [anon_sym_BQUOTE] = ACTIONS(1101), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_RPAREN] = ACTIONS(1631), + [anon_sym_SEMI_SEMI] = ACTIONS(1631), + [anon_sym_PIPE_AMP] = ACTIONS(1631), + [anon_sym_AMP_AMP] = ACTIONS(1631), + [anon_sym_PIPE_PIPE] = ACTIONS(1631), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_LF] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1631), }, [1455] = { - [aux_sym_concatenation_repeat1] = STATE(1455), - [sym__concat] = ACTIONS(3317), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(1101), - [anon_sym_PIPE_AMP] = ACTIONS(1101), - [anon_sym_AMP_AMP] = ACTIONS(1101), - [anon_sym_PIPE_PIPE] = ACTIONS(1101), - [sym_comment] = ACTIONS(52), + [anon_sym_AT] = ACTIONS(3276), + [sym_comment] = ACTIONS(50), }, [1456] = { - [anon_sym_RBRACE] = ACTIONS(3320), - [anon_sym_LBRACK] = ACTIONS(3322), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(1635), + [anon_sym_PIPE] = ACTIONS(1637), + [anon_sym_RPAREN] = ACTIONS(1637), + [anon_sym_SEMI_SEMI] = ACTIONS(1637), + [anon_sym_PIPE_AMP] = ACTIONS(1637), + [anon_sym_AMP_AMP] = ACTIONS(1637), + [anon_sym_PIPE_PIPE] = ACTIONS(1637), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1637), + [anon_sym_LF] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1637), }, [1457] = { - [anon_sym_RBRACE] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3326), - [sym_comment] = ACTIONS(52), + [anon_sym_AT] = ACTIONS(3278), + [sym_comment] = ACTIONS(50), }, [1458] = { - [sym__concat] = ACTIONS(1116), - [anon_sym_PIPE] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(1116), - [anon_sym_PIPE_AMP] = ACTIONS(1116), - [anon_sym_AMP_AMP] = ACTIONS(1116), - [anon_sym_PIPE_PIPE] = ACTIONS(1116), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACK] = ACTIONS(3280), + [sym_comment] = ACTIONS(50), }, [1459] = { - [anon_sym_AT] = ACTIONS(3328), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(3282), + [anon_sym_RBRACE] = ACTIONS(3284), + [sym_comment] = ACTIONS(50), }, [1460] = { - [sym_concatenation] = STATE(1530), - [sym_string] = STATE(1529), - [sym_simple_expansion] = STATE(1529), - [sym_expansion] = STATE(1529), - [sym_command_substitution] = STATE(1529), - [sym_process_substitution] = STATE(1529), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(3332), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(3334), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(1647), + [anon_sym_PIPE] = ACTIONS(1649), + [anon_sym_RPAREN] = ACTIONS(1649), + [anon_sym_SEMI_SEMI] = ACTIONS(1649), + [anon_sym_PIPE_AMP] = ACTIONS(1649), + [anon_sym_AMP_AMP] = ACTIONS(1649), + [anon_sym_PIPE_PIPE] = ACTIONS(1649), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1649), + [anon_sym_LF] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), }, [1461] = { - [sym__concat] = ACTIONS(1128), - [anon_sym_PIPE] = ACTIONS(1612), - [anon_sym_RPAREN] = ACTIONS(1128), - [anon_sym_PIPE_AMP] = ACTIONS(1128), - [anon_sym_AMP_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3288), + [sym_comment] = ACTIONS(50), }, [1462] = { - [anon_sym_AT] = ACTIONS(3336), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(3280), + [anon_sym_RBRACE] = ACTIONS(3284), + [sym_comment] = ACTIONS(50), }, [1463] = { - [sym_concatenation] = STATE(1533), - [sym_string] = STATE(1532), - [sym_simple_expansion] = STATE(1532), - [sym_expansion] = STATE(1532), - [sym_command_substitution] = STATE(1532), - [sym_process_substitution] = STATE(1532), - [anon_sym_RBRACE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(98), - [sym_raw_string] = ACTIONS(3338), - [anon_sym_DOLLAR] = ACTIONS(102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(106), - [anon_sym_BQUOTE] = ACTIONS(108), - [anon_sym_LT_LPAREN] = ACTIONS(110), - [anon_sym_GT_LPAREN] = ACTIONS(110), - [sym_word] = ACTIONS(3340), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACK] = ACTIONS(3290), + [sym_comment] = ACTIONS(50), }, [1464] = { - [sym__concat] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1620), - [anon_sym_RPAREN] = ACTIONS(1222), - [anon_sym_PIPE_AMP] = ACTIONS(1222), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), - [anon_sym_BQUOTE] = ACTIONS(1222), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(3292), + [anon_sym_RBRACE] = ACTIONS(3294), + [sym_comment] = ACTIONS(50), }, [1465] = { - [sym__concat] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1622), - [anon_sym_RPAREN] = ACTIONS(1274), - [anon_sym_PIPE_AMP] = ACTIONS(1274), - [anon_sym_AMP_AMP] = ACTIONS(1274), - [anon_sym_PIPE_PIPE] = ACTIONS(1274), - [anon_sym_BQUOTE] = ACTIONS(1274), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3298), + [sym_comment] = ACTIONS(50), }, [1466] = { - [sym__concat] = ACTIONS(1712), - [sym_variable_name] = ACTIONS(1712), - [anon_sym_PIPE] = ACTIONS(2261), - [anon_sym_RPAREN] = ACTIONS(1712), - [anon_sym_PIPE_AMP] = ACTIONS(1712), - [anon_sym_AMP_AMP] = ACTIONS(1712), - [anon_sym_PIPE_PIPE] = ACTIONS(1712), - [anon_sym_BQUOTE] = ACTIONS(1712), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(2261), + [sym__concat] = ACTIONS(3290), + [anon_sym_RBRACE] = ACTIONS(3294), + [sym_comment] = ACTIONS(50), }, [1467] = { - [anon_sym_AT] = ACTIONS(3342), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(1467), + [sym__concat] = ACTIONS(3020), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(733), + [anon_sym_AMP] = ACTIONS(733), }, [1468] = { - [sym__concat] = ACTIONS(1718), - [sym_variable_name] = ACTIONS(1718), - [anon_sym_PIPE] = ACTIONS(2265), - [anon_sym_RPAREN] = ACTIONS(1718), - [anon_sym_PIPE_AMP] = ACTIONS(1718), - [anon_sym_AMP_AMP] = ACTIONS(1718), - [anon_sym_PIPE_PIPE] = ACTIONS(1718), - [anon_sym_BQUOTE] = ACTIONS(1718), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(2265), + [sym_word] = ACTIONS(3089), + [sym__concat] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(3089), + [anon_sym_RBRACK] = ACTIONS(3300), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(3089), + [sym_raw_string] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3089), + [anon_sym_BQUOTE] = ACTIONS(3089), + [anon_sym_LT_LPAREN] = ACTIONS(3089), + [anon_sym_GT_LPAREN] = ACTIONS(3089), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3300), }, [1469] = { - [anon_sym_AT] = ACTIONS(3344), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(3093), + [sym__concat] = ACTIONS(3093), + [anon_sym_RPAREN] = ACTIONS(3093), + [anon_sym_RBRACK] = ACTIONS(3302), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3093), + [sym_raw_string] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3302), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3093), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3093), + [anon_sym_BQUOTE] = ACTIONS(3093), + [anon_sym_LT_LPAREN] = ACTIONS(3093), + [anon_sym_GT_LPAREN] = ACTIONS(3093), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3302), }, [1470] = { - [anon_sym_RBRACK] = ACTIONS(3346), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACK] = ACTIONS(3304), + [sym_comment] = ACTIONS(50), }, [1471] = { - [sym__concat] = ACTIONS(1726), - [sym_variable_name] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(2271), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_PIPE_AMP] = ACTIONS(1726), - [anon_sym_AMP_AMP] = ACTIONS(1726), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), - [anon_sym_BQUOTE] = ACTIONS(1726), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(2271), + [anon_sym_RBRACK] = ACTIONS(3306), + [sym_comment] = ACTIONS(50), }, [1472] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(3348), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(3308), + [sym_comment] = ACTIONS(50), }, [1473] = { - [anon_sym_RBRACE] = ACTIONS(3348), - [sym_comment] = ACTIONS(52), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), }, [1474] = { - [anon_sym_RBRACK] = ACTIONS(3350), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(2268), + [sym__concat] = ACTIONS(2268), + [sym_variable_name] = ACTIONS(2268), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_RPAREN] = ACTIONS(2270), + [anon_sym_SEMI_SEMI] = ACTIONS(2270), + [anon_sym_PIPE_AMP] = ACTIONS(2270), + [anon_sym_AMP_AMP] = ACTIONS(2270), + [anon_sym_PIPE_PIPE] = ACTIONS(2270), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2270), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym_LF] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(2270), }, [1475] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(3352), - [sym_comment] = ACTIONS(52), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3310), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), }, [1476] = { - [anon_sym_RBRACE] = ACTIONS(3352), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(2274), + [sym__concat] = ACTIONS(2274), + [sym_variable_name] = ACTIONS(2274), + [anon_sym_PIPE] = ACTIONS(2276), + [anon_sym_RPAREN] = ACTIONS(2276), + [anon_sym_SEMI_SEMI] = ACTIONS(2276), + [anon_sym_PIPE_AMP] = ACTIONS(2276), + [anon_sym_AMP_AMP] = ACTIONS(2276), + [anon_sym_PIPE_PIPE] = ACTIONS(2276), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_LF] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(2276), }, [1477] = { - [sym_file_descriptor] = ACTIONS(3112), - [sym__concat] = ACTIONS(3112), - [anon_sym_PIPE] = ACTIONS(3289), - [anon_sym_RPAREN] = ACTIONS(3112), - [anon_sym_PIPE_AMP] = ACTIONS(3112), - [anon_sym_AMP_AMP] = ACTIONS(3112), - [anon_sym_PIPE_PIPE] = ACTIONS(3289), - [anon_sym_LT] = ACTIONS(3289), - [anon_sym_GT] = ACTIONS(3289), - [anon_sym_GT_GT] = ACTIONS(3112), - [anon_sym_AMP_GT] = ACTIONS(3289), - [anon_sym_AMP_GT_GT] = ACTIONS(3112), - [anon_sym_LT_AMP] = ACTIONS(3112), - [anon_sym_GT_AMP] = ACTIONS(3112), - [anon_sym_LT_LT] = ACTIONS(3289), - [anon_sym_LT_LT_DASH] = ACTIONS(3112), - [anon_sym_DQUOTE] = ACTIONS(3112), - [sym_raw_string] = ACTIONS(3112), - [anon_sym_DOLLAR] = ACTIONS(3289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3112), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3112), - [anon_sym_BQUOTE] = ACTIONS(3112), - [anon_sym_LT_LPAREN] = ACTIONS(3112), - [anon_sym_GT_LPAREN] = ACTIONS(3112), - [sym_word] = ACTIONS(3114), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(3312), + [sym_comment] = ACTIONS(50), }, [1478] = { - [sym_file_descriptor] = ACTIONS(3116), - [sym__concat] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3291), - [anon_sym_RPAREN] = ACTIONS(3116), - [anon_sym_PIPE_AMP] = ACTIONS(3116), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(3291), - [anon_sym_GT] = ACTIONS(3291), - [anon_sym_GT_GT] = ACTIONS(3116), - [anon_sym_AMP_GT] = ACTIONS(3291), - [anon_sym_AMP_GT_GT] = ACTIONS(3116), - [anon_sym_LT_AMP] = ACTIONS(3116), - [anon_sym_GT_AMP] = ACTIONS(3116), - [anon_sym_LT_LT] = ACTIONS(3291), - [anon_sym_LT_LT_DASH] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3116), - [sym_raw_string] = ACTIONS(3116), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3116), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3116), - [anon_sym_BQUOTE] = ACTIONS(3116), - [anon_sym_LT_LPAREN] = ACTIONS(3116), - [anon_sym_GT_LPAREN] = ACTIONS(3116), - [sym_word] = ACTIONS(3118), - [sym_comment] = ACTIONS(52), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), }, [1479] = { - [anon_sym_RBRACK] = ACTIONS(3354), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(2280), + [sym__concat] = ACTIONS(2280), + [sym_variable_name] = ACTIONS(2280), + [anon_sym_PIPE] = ACTIONS(2282), + [anon_sym_RPAREN] = ACTIONS(2282), + [anon_sym_SEMI_SEMI] = ACTIONS(2282), + [anon_sym_PIPE_AMP] = ACTIONS(2282), + [anon_sym_AMP_AMP] = ACTIONS(2282), + [anon_sym_PIPE_PIPE] = ACTIONS(2282), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2282), + [anon_sym_SEMI] = ACTIONS(2282), + [anon_sym_LF] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2282), }, [1480] = { - [anon_sym_RBRACK] = ACTIONS(3356), - [sym_comment] = ACTIONS(52), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), }, [1481] = { - [anon_sym_RBRACE] = ACTIONS(3358), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(2286), + [sym__concat] = ACTIONS(2286), + [sym_variable_name] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_RPAREN] = ACTIONS(2288), + [anon_sym_SEMI_SEMI] = ACTIONS(2288), + [anon_sym_PIPE_AMP] = ACTIONS(2288), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_LF] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), }, [1482] = { - [sym_file_descriptor] = ACTIONS(2351), - [sym__concat] = ACTIONS(2351), - [anon_sym_PIPE] = ACTIONS(2751), - [anon_sym_RPAREN] = ACTIONS(2351), - [anon_sym_PIPE_AMP] = ACTIONS(2351), - [anon_sym_AMP_AMP] = ACTIONS(2351), - [anon_sym_PIPE_PIPE] = ACTIONS(2351), - [anon_sym_LT] = ACTIONS(2751), - [anon_sym_GT] = ACTIONS(2751), - [anon_sym_GT_GT] = ACTIONS(2351), - [anon_sym_AMP_GT] = ACTIONS(2751), - [anon_sym_AMP_GT_GT] = ACTIONS(2351), - [anon_sym_LT_AMP] = ACTIONS(2351), - [anon_sym_GT_AMP] = ACTIONS(2351), - [anon_sym_LT_LT] = ACTIONS(2751), - [anon_sym_LT_LT_DASH] = ACTIONS(2351), - [anon_sym_BQUOTE] = ACTIONS(2351), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(3089), + [sym_word] = ACTIONS(3089), + [sym__concat] = ACTIONS(3089), + [sym_variable_name] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3300), + [anon_sym_RPAREN] = ACTIONS(3089), + [anon_sym_PIPE_AMP] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(3300), + [anon_sym_GT] = ACTIONS(3300), + [anon_sym_GT_GT] = ACTIONS(3089), + [anon_sym_AMP_GT] = ACTIONS(3300), + [anon_sym_AMP_GT_GT] = ACTIONS(3089), + [anon_sym_LT_AMP] = ACTIONS(3089), + [anon_sym_GT_AMP] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(3089), + [sym_raw_string] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3089), + [anon_sym_BQUOTE] = ACTIONS(3089), + [anon_sym_LT_LPAREN] = ACTIONS(3089), + [anon_sym_GT_LPAREN] = ACTIONS(3089), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3300), }, [1483] = { - [anon_sym_RBRACE] = ACTIONS(3360), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(3093), + [sym_word] = ACTIONS(3093), + [sym__concat] = ACTIONS(3093), + [sym_variable_name] = ACTIONS(3093), + [anon_sym_PIPE] = ACTIONS(3302), + [anon_sym_RPAREN] = ACTIONS(3093), + [anon_sym_PIPE_AMP] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_PIPE_PIPE] = ACTIONS(3093), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_GT] = ACTIONS(3302), + [anon_sym_GT_GT] = ACTIONS(3093), + [anon_sym_AMP_GT] = ACTIONS(3302), + [anon_sym_AMP_GT_GT] = ACTIONS(3093), + [anon_sym_LT_AMP] = ACTIONS(3093), + [anon_sym_GT_AMP] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3093), + [sym_raw_string] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3302), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3093), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3093), + [anon_sym_BQUOTE] = ACTIONS(3093), + [anon_sym_LT_LPAREN] = ACTIONS(3093), + [anon_sym_GT_LPAREN] = ACTIONS(3093), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3302), }, [1484] = { - [sym_file_descriptor] = ACTIONS(2357), - [sym__concat] = ACTIONS(2357), - [anon_sym_PIPE] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2357), - [anon_sym_PIPE_AMP] = ACTIONS(2357), - [anon_sym_AMP_AMP] = ACTIONS(2357), - [anon_sym_PIPE_PIPE] = ACTIONS(2357), - [anon_sym_LT] = ACTIONS(2755), - [anon_sym_GT] = ACTIONS(2755), - [anon_sym_GT_GT] = ACTIONS(2357), - [anon_sym_AMP_GT] = ACTIONS(2755), - [anon_sym_AMP_GT_GT] = ACTIONS(2357), - [anon_sym_LT_AMP] = ACTIONS(2357), - [anon_sym_GT_AMP] = ACTIONS(2357), - [anon_sym_LT_LT] = ACTIONS(2755), - [anon_sym_LT_LT_DASH] = ACTIONS(2357), - [anon_sym_BQUOTE] = ACTIONS(2357), - [sym_comment] = ACTIONS(52), + [anon_sym_DQUOTE] = ACTIONS(3091), + [sym__string_content] = ACTIONS(3300), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3091), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3091), + [anon_sym_BQUOTE] = ACTIONS(3091), + [sym_comment] = ACTIONS(64), }, [1485] = { - [aux_sym_concatenation_repeat1] = STATE(1485), - [sym__concat] = ACTIONS(3317), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_PIPE_AMP] = ACTIONS(1101), - [anon_sym_AMP_AMP] = ACTIONS(1101), - [anon_sym_PIPE_PIPE] = ACTIONS(1101), - [anon_sym_BQUOTE] = ACTIONS(1101), - [sym_comment] = ACTIONS(52), + [anon_sym_DQUOTE] = ACTIONS(3095), + [sym__string_content] = ACTIONS(3302), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3095), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3095), + [anon_sym_BQUOTE] = ACTIONS(3095), + [sym_comment] = ACTIONS(64), }, [1486] = { - [anon_sym_RBRACE] = ACTIONS(3362), - [sym_comment] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(3316), + [anon_sym_RPAREN] = ACTIONS(3318), + [anon_sym_PIPE_AMP] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_BQUOTE] = ACTIONS(3318), + [sym_comment] = ACTIONS(50), }, [1487] = { - [anon_sym_RBRACE] = ACTIONS(3364), - [sym_comment] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(3320), + [anon_sym_RPAREN] = ACTIONS(3322), + [anon_sym_PIPE_AMP] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_BQUOTE] = ACTIONS(3322), + [sym_comment] = ACTIONS(50), }, [1488] = { - [sym_file_descriptor] = ACTIONS(2810), - [sym__concat] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_RPAREN] = ACTIONS(2812), - [anon_sym_SEMI_SEMI] = ACTIONS(2812), - [anon_sym_PIPE_AMP] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_PIPE_PIPE] = ACTIONS(2812), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_GT] = ACTIONS(2812), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_AMP_GT] = ACTIONS(2812), - [anon_sym_AMP_GT_GT] = ACTIONS(2812), - [anon_sym_LT_AMP] = ACTIONS(2812), - [anon_sym_GT_AMP] = ACTIONS(2812), - [anon_sym_LT_LT] = ACTIONS(2812), - [anon_sym_LT_LT_DASH] = ACTIONS(2812), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_LF] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2812), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_RPAREN] = ACTIONS(3326), + [anon_sym_PIPE_AMP] = ACTIONS(3326), + [anon_sym_AMP_AMP] = ACTIONS(3326), + [anon_sym_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_BQUOTE] = ACTIONS(3326), + [sym_comment] = ACTIONS(50), }, [1489] = { - [sym_file_descriptor] = ACTIONS(2814), - [sym__concat] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_RPAREN] = ACTIONS(2816), - [anon_sym_SEMI_SEMI] = ACTIONS(2816), - [anon_sym_PIPE_AMP] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_PIPE_PIPE] = ACTIONS(2816), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(2816), - [anon_sym_AMP_GT] = ACTIONS(2816), - [anon_sym_AMP_GT_GT] = ACTIONS(2816), - [anon_sym_LT_AMP] = ACTIONS(2816), - [anon_sym_GT_AMP] = ACTIONS(2816), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_LT_LT_DASH] = ACTIONS(2816), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_LF] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), + [sym__concat] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [sym_comment] = ACTIONS(50), }, [1490] = { - [anon_sym_RBRACK] = ACTIONS(3366), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(1529), + [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(50), }, [1491] = { - [anon_sym_RBRACK] = ACTIONS(3368), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(1491), + [sym__concat] = ACTIONS(3328), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [sym_comment] = ACTIONS(50), }, [1492] = { - [anon_sym_RBRACE] = ACTIONS(3370), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1534), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_PIPE_AMP] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1037), + [anon_sym_PIPE_PIPE] = ACTIONS(1037), + [anon_sym_BQUOTE] = ACTIONS(1037), + [sym_comment] = ACTIONS(50), }, [1493] = { - [sym__heredoc_middle] = ACTIONS(2351), - [sym__heredoc_end] = ACTIONS(2351), - [anon_sym_DOLLAR] = ACTIONS(2751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2351), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(3333), + [sym_comment] = ACTIONS(50), }, [1494] = { - [anon_sym_RBRACE] = ACTIONS(3372), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(3335), + [anon_sym_LBRACK] = ACTIONS(3337), + [sym_comment] = ACTIONS(50), }, [1495] = { - [sym__heredoc_middle] = ACTIONS(2357), - [sym__heredoc_end] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2755), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2357), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_RPAREN] = ACTIONS(1066), + [anon_sym_PIPE_AMP] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_BQUOTE] = ACTIONS(1066), + [sym_comment] = ACTIONS(50), }, [1496] = { - [sym__concat] = ACTIONS(3112), - [anon_sym_PIPE] = ACTIONS(3112), - [anon_sym_RPAREN] = ACTIONS(3112), - [anon_sym_RBRACK] = ACTIONS(3112), - [sym_comment] = ACTIONS(52), + [anon_sym_AT] = ACTIONS(3339), + [sym_comment] = ACTIONS(50), }, [1497] = { - [sym__concat] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_RPAREN] = ACTIONS(3116), - [anon_sym_RBRACK] = ACTIONS(3116), - [sym_comment] = ACTIONS(52), + [sym_concatenation] = STATE(1587), + [sym_string] = STATE(1584), + [sym_simple_expansion] = STATE(1584), + [sym_expansion] = STATE(1584), + [sym_command_substitution] = STATE(1584), + [sym_process_substitution] = STATE(1584), + [sym_word] = ACTIONS(3341), + [anon_sym_RBRACE] = ACTIONS(3343), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(3341), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3345), }, [1498] = { - [anon_sym_RBRACE] = ACTIONS(3374), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1554), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_PIPE_AMP] = ACTIONS(1078), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_BQUOTE] = ACTIONS(1078), + [sym_comment] = ACTIONS(50), }, [1499] = { - [anon_sym_RBRACE] = ACTIONS(3376), - [sym_comment] = ACTIONS(52), + [anon_sym_AT] = ACTIONS(3347), + [sym_comment] = ACTIONS(50), }, [1500] = { - [sym__concat] = ACTIONS(2810), - [anon_sym_RPAREN] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [sym_raw_string] = ACTIONS(2810), - [anon_sym_DOLLAR] = ACTIONS(3084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2810), - [anon_sym_BQUOTE] = ACTIONS(2810), - [anon_sym_LT_LPAREN] = ACTIONS(2810), - [anon_sym_GT_LPAREN] = ACTIONS(2810), - [sym_word] = ACTIONS(3084), - [sym_comment] = ACTIONS(52), + [sym_concatenation] = STATE(1591), + [sym_string] = STATE(1589), + [sym_simple_expansion] = STATE(1589), + [sym_expansion] = STATE(1589), + [sym_command_substitution] = STATE(1589), + [sym_process_substitution] = STATE(1589), + [sym_word] = ACTIONS(3349), + [anon_sym_RBRACE] = ACTIONS(3335), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(3349), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3351), }, [1501] = { - [sym__concat] = ACTIONS(2814), - [anon_sym_RPAREN] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [sym_raw_string] = ACTIONS(2814), - [anon_sym_DOLLAR] = ACTIONS(3086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2814), - [anon_sym_BQUOTE] = ACTIONS(2814), - [anon_sym_LT_LPAREN] = ACTIONS(2814), - [anon_sym_GT_LPAREN] = ACTIONS(2814), - [sym_word] = ACTIONS(3086), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(1162), + [anon_sym_PIPE] = ACTIONS(1562), + [anon_sym_RPAREN] = ACTIONS(1162), + [anon_sym_PIPE_AMP] = ACTIONS(1162), + [anon_sym_AMP_AMP] = ACTIONS(1162), + [anon_sym_PIPE_PIPE] = ACTIONS(1162), + [anon_sym_BQUOTE] = ACTIONS(1162), + [sym_comment] = ACTIONS(50), }, [1502] = { - [sym_file_descriptor] = ACTIONS(3112), - [sym__concat] = ACTIONS(3112), - [sym_variable_name] = ACTIONS(3112), - [anon_sym_PIPE] = ACTIONS(3114), - [anon_sym_RPAREN] = ACTIONS(3114), - [anon_sym_SEMI_SEMI] = ACTIONS(3114), - [anon_sym_PIPE_AMP] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_PIPE_PIPE] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3114), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_GT_GT] = ACTIONS(3114), - [anon_sym_AMP_GT] = ACTIONS(3114), - [anon_sym_AMP_GT_GT] = ACTIONS(3114), - [anon_sym_LT_AMP] = ACTIONS(3114), - [anon_sym_GT_AMP] = ACTIONS(3114), - [anon_sym_DQUOTE] = ACTIONS(3114), - [sym_raw_string] = ACTIONS(3114), - [anon_sym_DOLLAR] = ACTIONS(3114), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3114), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3114), - [anon_sym_BQUOTE] = ACTIONS(3114), - [anon_sym_LT_LPAREN] = ACTIONS(3114), - [anon_sym_GT_LPAREN] = ACTIONS(3114), - [sym_word] = ACTIONS(3114), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(3114), - [anon_sym_LF] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(3114), + [sym__concat] = ACTIONS(1214), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_RPAREN] = ACTIONS(1214), + [anon_sym_PIPE_AMP] = ACTIONS(1214), + [anon_sym_AMP_AMP] = ACTIONS(1214), + [anon_sym_PIPE_PIPE] = ACTIONS(1214), + [anon_sym_BQUOTE] = ACTIONS(1214), + [sym_comment] = ACTIONS(50), }, [1503] = { - [sym_file_descriptor] = ACTIONS(3116), - [sym__concat] = ACTIONS(3116), - [sym_variable_name] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_SEMI_SEMI] = ACTIONS(3118), - [anon_sym_PIPE_AMP] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3118), - [anon_sym_GT_GT] = ACTIONS(3118), - [anon_sym_AMP_GT] = ACTIONS(3118), - [anon_sym_AMP_GT_GT] = ACTIONS(3118), - [anon_sym_LT_AMP] = ACTIONS(3118), - [anon_sym_GT_AMP] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym_raw_string] = ACTIONS(3118), - [anon_sym_DOLLAR] = ACTIONS(3118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3118), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3118), - [anon_sym_BQUOTE] = ACTIONS(3118), - [anon_sym_LT_LPAREN] = ACTIONS(3118), - [anon_sym_GT_LPAREN] = ACTIONS(3118), - [sym_word] = ACTIONS(3118), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_LF] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3118), + [sym_word] = ACTIONS(1629), + [sym__concat] = ACTIONS(1629), + [sym_variable_name] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(1629), + [anon_sym_PIPE_AMP] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE_PIPE] = ACTIONS(1629), + [anon_sym_BQUOTE] = ACTIONS(1629), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2154), }, [1504] = { - [anon_sym_RBRACE] = ACTIONS(3378), - [sym_comment] = ACTIONS(52), + [anon_sym_AT] = ACTIONS(3353), + [sym_comment] = ACTIONS(50), }, [1505] = { - [anon_sym_RBRACE] = ACTIONS(3380), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(1635), + [sym__concat] = ACTIONS(1635), + [sym_variable_name] = ACTIONS(1635), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_RPAREN] = ACTIONS(1635), + [anon_sym_PIPE_AMP] = ACTIONS(1635), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_PIPE_PIPE] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2158), }, [1506] = { - [sym__concat] = ACTIONS(2810), - [anon_sym_SEMI_SEMI] = ACTIONS(2812), - [anon_sym_DQUOTE] = ACTIONS(2812), - [sym_raw_string] = ACTIONS(2812), - [anon_sym_DOLLAR] = ACTIONS(2812), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2812), - [anon_sym_BQUOTE] = ACTIONS(2812), - [anon_sym_LT_LPAREN] = ACTIONS(2812), - [anon_sym_GT_LPAREN] = ACTIONS(2812), - [sym_word] = ACTIONS(2812), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_LF] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2812), + [anon_sym_AT] = ACTIONS(3355), + [sym_comment] = ACTIONS(50), }, [1507] = { - [sym__concat] = ACTIONS(2814), - [anon_sym_SEMI_SEMI] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(2816), - [anon_sym_DOLLAR] = ACTIONS(2816), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2816), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2816), - [anon_sym_BQUOTE] = ACTIONS(2816), - [anon_sym_LT_LPAREN] = ACTIONS(2816), - [anon_sym_GT_LPAREN] = ACTIONS(2816), - [sym_word] = ACTIONS(2816), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_LF] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_RBRACK] = ACTIONS(3357), + [sym_comment] = ACTIONS(50), }, [1508] = { - [anon_sym_esac] = ACTIONS(3382), - [anon_sym_DQUOTE] = ACTIONS(3384), - [sym_raw_string] = ACTIONS(3384), - [anon_sym_DOLLAR] = ACTIONS(3382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3384), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3384), - [anon_sym_BQUOTE] = ACTIONS(3384), - [anon_sym_LT_LPAREN] = ACTIONS(3384), - [anon_sym_GT_LPAREN] = ACTIONS(3384), - [sym_word] = ACTIONS(3386), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(3359), + [anon_sym_RBRACE] = ACTIONS(3361), + [sym_comment] = ACTIONS(50), }, [1509] = { - [anon_sym_RBRACK] = ACTIONS(3388), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(1647), + [sym__concat] = ACTIONS(1647), + [sym_variable_name] = ACTIONS(1647), + [anon_sym_PIPE] = ACTIONS(2168), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_PIPE_AMP] = ACTIONS(1647), + [anon_sym_AMP_AMP] = ACTIONS(1647), + [anon_sym_PIPE_PIPE] = ACTIONS(1647), + [anon_sym_BQUOTE] = ACTIONS(1647), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2168), }, [1510] = { - [anon_sym_RBRACK] = ACTIONS(3390), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(3363), + [anon_sym_RBRACE] = ACTIONS(3365), + [sym_comment] = ACTIONS(50), }, [1511] = { - [anon_sym_RBRACE] = ACTIONS(3392), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3361), + [sym_comment] = ACTIONS(50), }, [1512] = { - [sym__concat] = ACTIONS(2351), - [anon_sym_PIPE] = ACTIONS(2353), - [anon_sym_RPAREN] = ACTIONS(2353), - [anon_sym_SEMI_SEMI] = ACTIONS(2353), - [anon_sym_PIPE_AMP] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_LF] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2353), + [anon_sym_RBRACK] = ACTIONS(3367), + [sym_comment] = ACTIONS(50), }, [1513] = { - [anon_sym_RBRACE] = ACTIONS(3394), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(3369), + [anon_sym_RBRACE] = ACTIONS(3371), + [sym_comment] = ACTIONS(50), }, [1514] = { - [sym__concat] = ACTIONS(2357), - [anon_sym_PIPE] = ACTIONS(2359), - [anon_sym_RPAREN] = ACTIONS(2359), - [anon_sym_SEMI_SEMI] = ACTIONS(2359), - [anon_sym_PIPE_AMP] = ACTIONS(2359), - [anon_sym_AMP_AMP] = ACTIONS(2359), - [anon_sym_PIPE_PIPE] = ACTIONS(2359), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2359), - [anon_sym_LF] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(50), }, [1515] = { - [anon_sym_RBRACE] = ACTIONS(3396), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(3367), + [anon_sym_RBRACE] = ACTIONS(3371), + [sym_comment] = ACTIONS(50), }, [1516] = { - [anon_sym_RBRACE] = ACTIONS(3398), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(3089), + [sym_word] = ACTIONS(3089), + [sym__concat] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3300), + [anon_sym_RPAREN] = ACTIONS(3089), + [anon_sym_PIPE_AMP] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(3300), + [anon_sym_GT] = ACTIONS(3300), + [anon_sym_GT_GT] = ACTIONS(3089), + [anon_sym_AMP_GT] = ACTIONS(3300), + [anon_sym_AMP_GT_GT] = ACTIONS(3089), + [anon_sym_LT_AMP] = ACTIONS(3089), + [anon_sym_GT_AMP] = ACTIONS(3089), + [anon_sym_LT_LT] = ACTIONS(3300), + [anon_sym_LT_LT_DASH] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(3089), + [sym_raw_string] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3089), + [anon_sym_BQUOTE] = ACTIONS(3089), + [anon_sym_LT_LPAREN] = ACTIONS(3089), + [anon_sym_GT_LPAREN] = ACTIONS(3089), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3300), }, [1517] = { - [sym__concat] = ACTIONS(2810), - [sym_variable_name] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_RPAREN] = ACTIONS(2812), - [anon_sym_SEMI_SEMI] = ACTIONS(2812), - [anon_sym_PIPE_AMP] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_PIPE_PIPE] = ACTIONS(2812), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(2812), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_LF] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2812), + [sym_file_descriptor] = ACTIONS(3093), + [sym_word] = ACTIONS(3093), + [sym__concat] = ACTIONS(3093), + [anon_sym_PIPE] = ACTIONS(3302), + [anon_sym_RPAREN] = ACTIONS(3093), + [anon_sym_PIPE_AMP] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_PIPE_PIPE] = ACTIONS(3093), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_GT] = ACTIONS(3302), + [anon_sym_GT_GT] = ACTIONS(3093), + [anon_sym_AMP_GT] = ACTIONS(3302), + [anon_sym_AMP_GT_GT] = ACTIONS(3093), + [anon_sym_LT_AMP] = ACTIONS(3093), + [anon_sym_GT_AMP] = ACTIONS(3093), + [anon_sym_LT_LT] = ACTIONS(3302), + [anon_sym_LT_LT_DASH] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3093), + [sym_raw_string] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3302), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3093), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3093), + [anon_sym_BQUOTE] = ACTIONS(3093), + [anon_sym_LT_LPAREN] = ACTIONS(3093), + [anon_sym_GT_LPAREN] = ACTIONS(3093), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3302), }, [1518] = { - [sym__concat] = ACTIONS(2814), - [sym_variable_name] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_RPAREN] = ACTIONS(2816), - [anon_sym_SEMI_SEMI] = ACTIONS(2816), - [anon_sym_PIPE_AMP] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_PIPE_PIPE] = ACTIONS(2816), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(2816), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_LF] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_RBRACK] = ACTIONS(3377), + [sym_comment] = ACTIONS(50), }, [1519] = { - [anon_sym_RBRACE] = ACTIONS(3400), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACK] = ACTIONS(3379), + [sym_comment] = ACTIONS(50), }, [1520] = { - [anon_sym_RBRACE] = ACTIONS(3402), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(3381), + [sym_comment] = ACTIONS(50), }, [1521] = { - [sym_file_descriptor] = ACTIONS(2810), - [sym__concat] = ACTIONS(2810), - [sym_variable_name] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(3084), - [anon_sym_RPAREN] = ACTIONS(2810), - [anon_sym_PIPE_AMP] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(3084), - [anon_sym_GT] = ACTIONS(3084), - [anon_sym_GT_GT] = ACTIONS(2810), - [anon_sym_AMP_GT] = ACTIONS(3084), - [anon_sym_AMP_GT_GT] = ACTIONS(2810), - [anon_sym_LT_AMP] = ACTIONS(2810), - [anon_sym_GT_AMP] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [sym_raw_string] = ACTIONS(2810), - [anon_sym_DOLLAR] = ACTIONS(3084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2810), - [anon_sym_BQUOTE] = ACTIONS(2810), - [anon_sym_LT_LPAREN] = ACTIONS(2810), - [anon_sym_GT_LPAREN] = ACTIONS(2810), - [sym_word] = ACTIONS(2812), - [sym_comment] = ACTIONS(52), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3381), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), }, [1522] = { - [sym_file_descriptor] = ACTIONS(2814), - [sym__concat] = ACTIONS(2814), - [sym_variable_name] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(3086), - [anon_sym_RPAREN] = ACTIONS(2814), - [anon_sym_PIPE_AMP] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(3086), - [anon_sym_LT] = ACTIONS(3086), - [anon_sym_GT] = ACTIONS(3086), - [anon_sym_GT_GT] = ACTIONS(2814), - [anon_sym_AMP_GT] = ACTIONS(3086), - [anon_sym_AMP_GT_GT] = ACTIONS(2814), - [anon_sym_LT_AMP] = ACTIONS(2814), - [anon_sym_GT_AMP] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [sym_raw_string] = ACTIONS(2814), - [anon_sym_DOLLAR] = ACTIONS(3086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2814), - [anon_sym_BQUOTE] = ACTIONS(2814), - [anon_sym_LT_LPAREN] = ACTIONS(2814), - [anon_sym_GT_LPAREN] = ACTIONS(2814), - [sym_word] = ACTIONS(2816), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2268), + [sym__concat] = ACTIONS(2268), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_RPAREN] = ACTIONS(2268), + [anon_sym_PIPE_AMP] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2268), + [anon_sym_PIPE_PIPE] = ACTIONS(2268), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_GT_GT] = ACTIONS(2268), + [anon_sym_AMP_GT] = ACTIONS(2679), + [anon_sym_AMP_GT_GT] = ACTIONS(2268), + [anon_sym_LT_AMP] = ACTIONS(2268), + [anon_sym_GT_AMP] = ACTIONS(2268), + [anon_sym_LT_LT] = ACTIONS(2679), + [anon_sym_LT_LT_DASH] = ACTIONS(2268), + [anon_sym_BQUOTE] = ACTIONS(2268), + [sym_comment] = ACTIONS(50), }, [1523] = { - [sym__concat] = ACTIONS(1712), - [anon_sym_PIPE] = ACTIONS(2261), - [anon_sym_RPAREN] = ACTIONS(1712), - [anon_sym_PIPE_AMP] = ACTIONS(1712), - [anon_sym_AMP_AMP] = ACTIONS(1712), - [anon_sym_PIPE_PIPE] = ACTIONS(1712), - [anon_sym_BQUOTE] = ACTIONS(1712), - [sym_comment] = ACTIONS(52), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), }, [1524] = { - [anon_sym_AT] = ACTIONS(3404), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2274), + [sym__concat] = ACTIONS(2274), + [anon_sym_PIPE] = ACTIONS(2683), + [anon_sym_RPAREN] = ACTIONS(2274), + [anon_sym_PIPE_AMP] = ACTIONS(2274), + [anon_sym_AMP_AMP] = ACTIONS(2274), + [anon_sym_PIPE_PIPE] = ACTIONS(2274), + [anon_sym_LT] = ACTIONS(2683), + [anon_sym_GT] = ACTIONS(2683), + [anon_sym_GT_GT] = ACTIONS(2274), + [anon_sym_AMP_GT] = ACTIONS(2683), + [anon_sym_AMP_GT_GT] = ACTIONS(2274), + [anon_sym_LT_AMP] = ACTIONS(2274), + [anon_sym_GT_AMP] = ACTIONS(2274), + [anon_sym_LT_LT] = ACTIONS(2683), + [anon_sym_LT_LT_DASH] = ACTIONS(2274), + [anon_sym_BQUOTE] = ACTIONS(2274), + [sym_comment] = ACTIONS(50), }, [1525] = { - [sym__concat] = ACTIONS(1718), - [anon_sym_PIPE] = ACTIONS(2265), - [anon_sym_RPAREN] = ACTIONS(1718), - [anon_sym_PIPE_AMP] = ACTIONS(1718), - [anon_sym_AMP_AMP] = ACTIONS(1718), - [anon_sym_PIPE_PIPE] = ACTIONS(1718), - [anon_sym_BQUOTE] = ACTIONS(1718), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(3385), + [sym_comment] = ACTIONS(50), }, [1526] = { - [anon_sym_AT] = ACTIONS(3406), - [sym_comment] = ACTIONS(52), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3385), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), }, [1527] = { - [anon_sym_RBRACK] = ACTIONS(3408), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2280), + [sym__concat] = ACTIONS(2280), + [anon_sym_PIPE] = ACTIONS(2687), + [anon_sym_RPAREN] = ACTIONS(2280), + [anon_sym_PIPE_AMP] = ACTIONS(2280), + [anon_sym_AMP_AMP] = ACTIONS(2280), + [anon_sym_PIPE_PIPE] = ACTIONS(2280), + [anon_sym_LT] = ACTIONS(2687), + [anon_sym_GT] = ACTIONS(2687), + [anon_sym_GT_GT] = ACTIONS(2280), + [anon_sym_AMP_GT] = ACTIONS(2687), + [anon_sym_AMP_GT_GT] = ACTIONS(2280), + [anon_sym_LT_AMP] = ACTIONS(2280), + [anon_sym_GT_AMP] = ACTIONS(2280), + [anon_sym_LT_LT] = ACTIONS(2687), + [anon_sym_LT_LT_DASH] = ACTIONS(2280), + [anon_sym_BQUOTE] = ACTIONS(2280), + [sym_comment] = ACTIONS(50), }, [1528] = { - [sym__concat] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(2271), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_PIPE_AMP] = ACTIONS(1726), - [anon_sym_AMP_AMP] = ACTIONS(1726), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), - [anon_sym_BQUOTE] = ACTIONS(1726), - [sym_comment] = ACTIONS(52), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), }, [1529] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(3410), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2286), + [sym__concat] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2691), + [anon_sym_RPAREN] = ACTIONS(2286), + [anon_sym_PIPE_AMP] = ACTIONS(2286), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2691), + [anon_sym_GT] = ACTIONS(2691), + [anon_sym_GT_GT] = ACTIONS(2286), + [anon_sym_AMP_GT] = ACTIONS(2691), + [anon_sym_AMP_GT_GT] = ACTIONS(2286), + [anon_sym_LT_AMP] = ACTIONS(2286), + [anon_sym_GT_AMP] = ACTIONS(2286), + [anon_sym_LT_LT] = ACTIONS(2691), + [anon_sym_LT_LT_DASH] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_comment] = ACTIONS(50), }, [1530] = { - [anon_sym_RBRACE] = ACTIONS(3410), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(1530), + [sym__concat] = ACTIONS(3328), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [sym_comment] = ACTIONS(50), }, [1531] = { - [anon_sym_RBRACK] = ACTIONS(3412), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(3389), + [sym_comment] = ACTIONS(50), }, [1532] = { - [aux_sym_concatenation_repeat1] = STATE(866), - [sym__concat] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(3414), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(3391), + [sym_comment] = ACTIONS(50), }, [1533] = { - [anon_sym_RBRACE] = ACTIONS(3414), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2746), + [sym__concat] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_RPAREN] = ACTIONS(2748), + [anon_sym_SEMI_SEMI] = ACTIONS(2748), + [anon_sym_PIPE_AMP] = ACTIONS(2748), + [anon_sym_AMP_AMP] = ACTIONS(2748), + [anon_sym_PIPE_PIPE] = ACTIONS(2748), + [anon_sym_LT] = ACTIONS(2748), + [anon_sym_GT] = ACTIONS(2748), + [anon_sym_GT_GT] = ACTIONS(2748), + [anon_sym_AMP_GT] = ACTIONS(2748), + [anon_sym_AMP_GT_GT] = ACTIONS(2748), + [anon_sym_LT_AMP] = ACTIONS(2748), + [anon_sym_GT_AMP] = ACTIONS(2748), + [anon_sym_LT_LT] = ACTIONS(2748), + [anon_sym_LT_LT_DASH] = ACTIONS(2748), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2748), + [anon_sym_LF] = ACTIONS(2748), + [anon_sym_AMP] = ACTIONS(2748), }, [1534] = { - [anon_sym_RBRACK] = ACTIONS(3416), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2750), + [sym__concat] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_RPAREN] = ACTIONS(2752), + [anon_sym_SEMI_SEMI] = ACTIONS(2752), + [anon_sym_PIPE_AMP] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(2752), + [anon_sym_GT] = ACTIONS(2752), + [anon_sym_GT_GT] = ACTIONS(2752), + [anon_sym_AMP_GT] = ACTIONS(2752), + [anon_sym_AMP_GT_GT] = ACTIONS(2752), + [anon_sym_LT_AMP] = ACTIONS(2752), + [anon_sym_GT_AMP] = ACTIONS(2752), + [anon_sym_LT_LT] = ACTIONS(2752), + [anon_sym_LT_LT_DASH] = ACTIONS(2752), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2752), + [anon_sym_LF] = ACTIONS(2752), + [anon_sym_AMP] = ACTIONS(2752), }, [1535] = { - [anon_sym_RBRACK] = ACTIONS(3418), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2754), + [sym__concat] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_SEMI_SEMI] = ACTIONS(2756), + [anon_sym_PIPE_AMP] = ACTIONS(2756), + [anon_sym_AMP_AMP] = ACTIONS(2756), + [anon_sym_PIPE_PIPE] = ACTIONS(2756), + [anon_sym_LT] = ACTIONS(2756), + [anon_sym_GT] = ACTIONS(2756), + [anon_sym_GT_GT] = ACTIONS(2756), + [anon_sym_AMP_GT] = ACTIONS(2756), + [anon_sym_AMP_GT_GT] = ACTIONS(2756), + [anon_sym_LT_AMP] = ACTIONS(2756), + [anon_sym_GT_AMP] = ACTIONS(2756), + [anon_sym_LT_LT] = ACTIONS(2756), + [anon_sym_LT_LT_DASH] = ACTIONS(2756), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_LF] = ACTIONS(2756), + [anon_sym_AMP] = ACTIONS(2756), }, [1536] = { - [anon_sym_RBRACE] = ACTIONS(3420), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(2758), + [sym__concat] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2760), + [anon_sym_RPAREN] = ACTIONS(2760), + [anon_sym_SEMI_SEMI] = ACTIONS(2760), + [anon_sym_PIPE_AMP] = ACTIONS(2760), + [anon_sym_AMP_AMP] = ACTIONS(2760), + [anon_sym_PIPE_PIPE] = ACTIONS(2760), + [anon_sym_LT] = ACTIONS(2760), + [anon_sym_GT] = ACTIONS(2760), + [anon_sym_GT_GT] = ACTIONS(2760), + [anon_sym_AMP_GT] = ACTIONS(2760), + [anon_sym_AMP_GT_GT] = ACTIONS(2760), + [anon_sym_LT_AMP] = ACTIONS(2760), + [anon_sym_GT_AMP] = ACTIONS(2760), + [anon_sym_LT_LT] = ACTIONS(2760), + [anon_sym_LT_LT_DASH] = ACTIONS(2760), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2760), + [anon_sym_LF] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2760), }, [1537] = { - [sym__concat] = ACTIONS(2351), - [sym_variable_name] = ACTIONS(2351), - [anon_sym_PIPE] = ACTIONS(2751), - [anon_sym_RPAREN] = ACTIONS(2351), - [anon_sym_PIPE_AMP] = ACTIONS(2351), - [anon_sym_AMP_AMP] = ACTIONS(2351), - [anon_sym_PIPE_PIPE] = ACTIONS(2351), - [anon_sym_BQUOTE] = ACTIONS(2351), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(2751), + [anon_sym_RBRACK] = ACTIONS(3393), + [sym_comment] = ACTIONS(50), }, [1538] = { - [anon_sym_RBRACE] = ACTIONS(3422), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACK] = ACTIONS(3395), + [sym_comment] = ACTIONS(50), }, [1539] = { - [sym__concat] = ACTIONS(2357), - [sym_variable_name] = ACTIONS(2357), - [anon_sym_PIPE] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2357), - [anon_sym_PIPE_AMP] = ACTIONS(2357), - [anon_sym_AMP_AMP] = ACTIONS(2357), - [anon_sym_PIPE_PIPE] = ACTIONS(2357), - [anon_sym_BQUOTE] = ACTIONS(2357), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(2755), + [anon_sym_RBRACE] = ACTIONS(3397), + [sym_comment] = ACTIONS(50), }, [1540] = { - [anon_sym_RBRACE] = ACTIONS(3424), - [sym_comment] = ACTIONS(52), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), }, [1541] = { - [anon_sym_RBRACE] = ACTIONS(3426), - [sym_comment] = ACTIONS(52), + [sym__heredoc_middle] = ACTIONS(2268), + [sym__heredoc_end] = ACTIONS(2268), + [anon_sym_DOLLAR] = ACTIONS(2679), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2268), + [sym_comment] = ACTIONS(50), }, [1542] = { - [sym_file_descriptor] = ACTIONS(2810), - [sym__concat] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(3084), - [anon_sym_RPAREN] = ACTIONS(2810), - [anon_sym_PIPE_AMP] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(3084), - [anon_sym_GT] = ACTIONS(3084), - [anon_sym_GT_GT] = ACTIONS(2810), - [anon_sym_AMP_GT] = ACTIONS(3084), - [anon_sym_AMP_GT_GT] = ACTIONS(2810), - [anon_sym_LT_AMP] = ACTIONS(2810), - [anon_sym_GT_AMP] = ACTIONS(2810), - [anon_sym_LT_LT] = ACTIONS(3084), - [anon_sym_LT_LT_DASH] = ACTIONS(2810), - [anon_sym_BQUOTE] = ACTIONS(2810), - [sym_comment] = ACTIONS(52), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3399), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), }, [1543] = { - [sym_file_descriptor] = ACTIONS(2814), - [sym__concat] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(3086), - [anon_sym_RPAREN] = ACTIONS(2814), - [anon_sym_PIPE_AMP] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(3086), - [anon_sym_GT] = ACTIONS(3086), - [anon_sym_GT_GT] = ACTIONS(2814), - [anon_sym_AMP_GT] = ACTIONS(3086), - [anon_sym_AMP_GT_GT] = ACTIONS(2814), - [anon_sym_LT_AMP] = ACTIONS(2814), - [anon_sym_GT_AMP] = ACTIONS(2814), - [anon_sym_LT_LT] = ACTIONS(3086), - [anon_sym_LT_LT_DASH] = ACTIONS(2814), - [anon_sym_BQUOTE] = ACTIONS(2814), - [sym_comment] = ACTIONS(52), + [sym__heredoc_middle] = ACTIONS(2274), + [sym__heredoc_end] = ACTIONS(2274), + [anon_sym_DOLLAR] = ACTIONS(2683), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2274), + [sym_comment] = ACTIONS(50), }, [1544] = { - [sym_file_descriptor] = ACTIONS(3112), - [sym__concat] = ACTIONS(3112), - [anon_sym_PIPE] = ACTIONS(3114), - [anon_sym_RPAREN] = ACTIONS(3114), - [anon_sym_SEMI_SEMI] = ACTIONS(3114), - [anon_sym_PIPE_AMP] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_PIPE_PIPE] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3114), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_GT_GT] = ACTIONS(3114), - [anon_sym_AMP_GT] = ACTIONS(3114), - [anon_sym_AMP_GT_GT] = ACTIONS(3114), - [anon_sym_LT_AMP] = ACTIONS(3114), - [anon_sym_GT_AMP] = ACTIONS(3114), - [anon_sym_LT_LT] = ACTIONS(3114), - [anon_sym_LT_LT_DASH] = ACTIONS(3114), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(3114), - [anon_sym_LF] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_RBRACE] = ACTIONS(3401), + [sym_comment] = ACTIONS(50), }, [1545] = { - [sym_file_descriptor] = ACTIONS(3116), - [sym__concat] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_SEMI_SEMI] = ACTIONS(3118), - [anon_sym_PIPE_AMP] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3118), - [anon_sym_GT_GT] = ACTIONS(3118), - [anon_sym_AMP_GT] = ACTIONS(3118), - [anon_sym_AMP_GT_GT] = ACTIONS(3118), - [anon_sym_LT_AMP] = ACTIONS(3118), - [anon_sym_GT_AMP] = ACTIONS(3118), - [anon_sym_LT_LT] = ACTIONS(3118), - [anon_sym_LT_LT_DASH] = ACTIONS(3118), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_LF] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3118), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), }, [1546] = { - [anon_sym_RBRACE] = ACTIONS(3428), - [sym_comment] = ACTIONS(52), + [sym__heredoc_middle] = ACTIONS(2280), + [sym__heredoc_end] = ACTIONS(2280), + [anon_sym_DOLLAR] = ACTIONS(2687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2280), + [sym_comment] = ACTIONS(50), }, [1547] = { - [anon_sym_RBRACE] = ACTIONS(3430), - [sym_comment] = ACTIONS(52), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3403), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), }, [1548] = { - [sym__heredoc_middle] = ACTIONS(2810), - [sym__heredoc_end] = ACTIONS(2810), - [anon_sym_DOLLAR] = ACTIONS(3084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2810), - [sym_comment] = ACTIONS(52), + [sym__heredoc_middle] = ACTIONS(2286), + [sym__heredoc_end] = ACTIONS(2286), + [anon_sym_DOLLAR] = ACTIONS(2691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2286), + [sym_comment] = ACTIONS(50), }, [1549] = { - [sym__heredoc_middle] = ACTIONS(2814), - [sym__heredoc_end] = ACTIONS(2814), - [anon_sym_DOLLAR] = ACTIONS(3086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2814), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(3089), + [anon_sym_RBRACE] = ACTIONS(3089), + [anon_sym_RBRACK] = ACTIONS(3089), + [sym_comment] = ACTIONS(50), }, [1550] = { - [sym__concat] = ACTIONS(3112), - [anon_sym_RPAREN] = ACTIONS(3112), - [anon_sym_DQUOTE] = ACTIONS(3112), - [sym_raw_string] = ACTIONS(3112), - [anon_sym_DOLLAR] = ACTIONS(3289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3112), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3112), - [anon_sym_BQUOTE] = ACTIONS(3112), - [anon_sym_LT_LPAREN] = ACTIONS(3112), - [anon_sym_GT_LPAREN] = ACTIONS(3112), - [sym_word] = ACTIONS(3289), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(3093), + [anon_sym_PIPE] = ACTIONS(3093), + [anon_sym_RPAREN] = ACTIONS(3093), + [anon_sym_RBRACE] = ACTIONS(3093), + [anon_sym_RBRACK] = ACTIONS(3093), + [sym_comment] = ACTIONS(50), }, [1551] = { - [sym__concat] = ACTIONS(3116), - [anon_sym_RPAREN] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3116), - [sym_raw_string] = ACTIONS(3116), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3116), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3116), - [anon_sym_BQUOTE] = ACTIONS(3116), - [anon_sym_LT_LPAREN] = ACTIONS(3116), - [anon_sym_GT_LPAREN] = ACTIONS(3116), - [sym_word] = ACTIONS(3291), - [sym_comment] = ACTIONS(52), + [sym_file_descriptor] = ACTIONS(3089), + [sym_word] = ACTIONS(3089), + [sym__concat] = ACTIONS(3089), + [sym_variable_name] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3091), + [anon_sym_RPAREN] = ACTIONS(3091), + [anon_sym_SEMI_SEMI] = ACTIONS(3091), + [anon_sym_PIPE_AMP] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3091), + [anon_sym_GT] = ACTIONS(3091), + [anon_sym_GT_GT] = ACTIONS(3091), + [anon_sym_AMP_GT] = ACTIONS(3091), + [anon_sym_AMP_GT_GT] = ACTIONS(3091), + [anon_sym_LT_AMP] = ACTIONS(3091), + [anon_sym_GT_AMP] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [sym_raw_string] = ACTIONS(3091), + [anon_sym_DOLLAR] = ACTIONS(3091), + [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_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3091), + [anon_sym_LF] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3091), }, [1552] = { - [sym__concat] = ACTIONS(3112), - [anon_sym_SEMI_SEMI] = ACTIONS(3114), - [anon_sym_DQUOTE] = ACTIONS(3114), - [sym_raw_string] = ACTIONS(3114), - [anon_sym_DOLLAR] = ACTIONS(3114), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3114), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3114), - [anon_sym_BQUOTE] = ACTIONS(3114), - [anon_sym_LT_LPAREN] = ACTIONS(3114), - [anon_sym_GT_LPAREN] = ACTIONS(3114), - [sym_word] = ACTIONS(3114), + [sym_file_descriptor] = ACTIONS(3093), + [sym_word] = ACTIONS(3093), + [sym__concat] = ACTIONS(3093), + [sym_variable_name] = ACTIONS(3093), + [anon_sym_PIPE] = ACTIONS(3095), + [anon_sym_RPAREN] = ACTIONS(3095), + [anon_sym_SEMI_SEMI] = ACTIONS(3095), + [anon_sym_PIPE_AMP] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_PIPE_PIPE] = ACTIONS(3095), + [anon_sym_LT] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3095), + [anon_sym_GT_GT] = ACTIONS(3095), + [anon_sym_AMP_GT] = ACTIONS(3095), + [anon_sym_AMP_GT_GT] = ACTIONS(3095), + [anon_sym_LT_AMP] = ACTIONS(3095), + [anon_sym_GT_AMP] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(3095), + [sym_raw_string] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3095), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3095), + [anon_sym_BQUOTE] = ACTIONS(3095), + [anon_sym_LT_LPAREN] = ACTIONS(3095), + [anon_sym_GT_LPAREN] = ACTIONS(3095), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(3114), - [anon_sym_LF] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(3114), + [sym_identifier] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3095), + [anon_sym_LF] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3095), }, [1553] = { - [sym__concat] = ACTIONS(3116), - [anon_sym_SEMI_SEMI] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym_raw_string] = ACTIONS(3118), - [anon_sym_DOLLAR] = ACTIONS(3118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3118), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3118), - [anon_sym_BQUOTE] = ACTIONS(3118), - [anon_sym_LT_LPAREN] = ACTIONS(3118), - [anon_sym_GT_LPAREN] = ACTIONS(3118), - [sym_word] = ACTIONS(3118), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_LF] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_RBRACE] = ACTIONS(3405), + [sym_comment] = ACTIONS(50), }, [1554] = { - [anon_sym_RBRACE] = ACTIONS(3432), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(3407), + [sym_comment] = ACTIONS(50), }, [1555] = { - [anon_sym_RBRACE] = ACTIONS(3434), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(2746), + [sym__concat] = ACTIONS(2746), + [anon_sym_SEMI_SEMI] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_raw_string] = ACTIONS(2748), + [anon_sym_DOLLAR] = ACTIONS(2748), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2748), + [anon_sym_BQUOTE] = ACTIONS(2748), + [anon_sym_LT_LPAREN] = ACTIONS(2748), + [anon_sym_GT_LPAREN] = ACTIONS(2748), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2748), + [anon_sym_SEMI] = ACTIONS(2748), + [anon_sym_LF] = ACTIONS(2748), + [anon_sym_AMP] = ACTIONS(2748), }, [1556] = { - [sym__concat] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_RPAREN] = ACTIONS(2812), - [anon_sym_SEMI_SEMI] = ACTIONS(2812), - [anon_sym_PIPE_AMP] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_PIPE_PIPE] = ACTIONS(2812), + [sym_word] = ACTIONS(2750), + [sym__concat] = ACTIONS(2750), + [anon_sym_SEMI_SEMI] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [sym_raw_string] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2752), + [anon_sym_BQUOTE] = ACTIONS(2752), + [anon_sym_LT_LPAREN] = ACTIONS(2752), + [anon_sym_GT_LPAREN] = ACTIONS(2752), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_LF] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2812), + [sym_identifier] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2752), + [anon_sym_LF] = ACTIONS(2752), + [anon_sym_AMP] = ACTIONS(2752), }, [1557] = { - [sym__concat] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_RPAREN] = ACTIONS(2816), - [anon_sym_SEMI_SEMI] = ACTIONS(2816), - [anon_sym_PIPE_AMP] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_PIPE_PIPE] = ACTIONS(2816), + [sym_word] = ACTIONS(2754), + [sym__concat] = ACTIONS(2754), + [anon_sym_SEMI_SEMI] = ACTIONS(2756), + [anon_sym_DQUOTE] = ACTIONS(2756), + [sym_raw_string] = ACTIONS(2756), + [anon_sym_DOLLAR] = ACTIONS(2756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2756), + [anon_sym_BQUOTE] = ACTIONS(2756), + [anon_sym_LT_LPAREN] = ACTIONS(2756), + [anon_sym_GT_LPAREN] = ACTIONS(2756), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_LF] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), + [sym_identifier] = ACTIONS(2756), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_LF] = ACTIONS(2756), + [anon_sym_AMP] = ACTIONS(2756), }, [1558] = { - [sym__concat] = ACTIONS(3112), - [sym_variable_name] = ACTIONS(3112), - [anon_sym_PIPE] = ACTIONS(3114), - [anon_sym_RPAREN] = ACTIONS(3114), - [anon_sym_SEMI_SEMI] = ACTIONS(3114), - [anon_sym_PIPE_AMP] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_PIPE_PIPE] = ACTIONS(3114), + [sym_word] = ACTIONS(2758), + [sym__concat] = ACTIONS(2758), + [anon_sym_SEMI_SEMI] = ACTIONS(2760), + [anon_sym_DQUOTE] = ACTIONS(2760), + [sym_raw_string] = ACTIONS(2760), + [anon_sym_DOLLAR] = ACTIONS(2760), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2760), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2760), + [anon_sym_BQUOTE] = ACTIONS(2760), + [anon_sym_LT_LPAREN] = ACTIONS(2760), + [anon_sym_GT_LPAREN] = ACTIONS(2760), [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3114), - [anon_sym_LF] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(3114), + [sym_identifier] = ACTIONS(2760), + [anon_sym_SEMI] = ACTIONS(2760), + [anon_sym_LF] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2760), }, [1559] = { - [sym__concat] = ACTIONS(3116), - [sym_variable_name] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_SEMI_SEMI] = ACTIONS(3118), - [anon_sym_PIPE_AMP] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [sym_comment] = ACTIONS(64), - [sym_simple_variable_name] = ACTIONS(3118), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_LF] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3118), + [sym_word] = ACTIONS(3409), + [anon_sym_esac] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(3409), + [sym_raw_string] = ACTIONS(3409), + [anon_sym_DOLLAR] = ACTIONS(3411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3409), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3409), + [anon_sym_BQUOTE] = ACTIONS(3409), + [anon_sym_LT_LPAREN] = ACTIONS(3409), + [anon_sym_GT_LPAREN] = ACTIONS(3409), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3413), }, [1560] = { - [sym_file_descriptor] = ACTIONS(3112), - [sym__concat] = ACTIONS(3112), - [sym_variable_name] = ACTIONS(3112), - [anon_sym_PIPE] = ACTIONS(3289), - [anon_sym_RPAREN] = ACTIONS(3112), - [anon_sym_PIPE_AMP] = ACTIONS(3112), - [anon_sym_AMP_AMP] = ACTIONS(3112), - [anon_sym_PIPE_PIPE] = ACTIONS(3289), - [anon_sym_LT] = ACTIONS(3289), - [anon_sym_GT] = ACTIONS(3289), - [anon_sym_GT_GT] = ACTIONS(3112), - [anon_sym_AMP_GT] = ACTIONS(3289), - [anon_sym_AMP_GT_GT] = ACTIONS(3112), - [anon_sym_LT_AMP] = ACTIONS(3112), - [anon_sym_GT_AMP] = ACTIONS(3112), - [anon_sym_DQUOTE] = ACTIONS(3112), - [sym_raw_string] = ACTIONS(3112), - [anon_sym_DOLLAR] = ACTIONS(3289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3112), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3112), - [anon_sym_BQUOTE] = ACTIONS(3112), - [anon_sym_LT_LPAREN] = ACTIONS(3112), - [anon_sym_GT_LPAREN] = ACTIONS(3112), - [sym_word] = ACTIONS(3114), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(3415), + [anon_sym_esac] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3415), + [sym_raw_string] = ACTIONS(3415), + [anon_sym_DOLLAR] = ACTIONS(3417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3415), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3415), + [anon_sym_BQUOTE] = ACTIONS(3415), + [anon_sym_LT_LPAREN] = ACTIONS(3415), + [anon_sym_GT_LPAREN] = ACTIONS(3415), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3419), }, [1561] = { - [sym_file_descriptor] = ACTIONS(3116), - [sym__concat] = ACTIONS(3116), - [sym_variable_name] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3291), - [anon_sym_RPAREN] = ACTIONS(3116), - [anon_sym_PIPE_AMP] = ACTIONS(3116), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(3291), - [anon_sym_GT] = ACTIONS(3291), - [anon_sym_GT_GT] = ACTIONS(3116), - [anon_sym_AMP_GT] = ACTIONS(3291), - [anon_sym_AMP_GT_GT] = ACTIONS(3116), - [anon_sym_LT_AMP] = ACTIONS(3116), - [anon_sym_GT_AMP] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3116), - [sym_raw_string] = ACTIONS(3116), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3116), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3116), - [anon_sym_BQUOTE] = ACTIONS(3116), - [anon_sym_LT_LPAREN] = ACTIONS(3116), - [anon_sym_GT_LPAREN] = ACTIONS(3116), - [sym_word] = ACTIONS(3118), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACK] = ACTIONS(3421), + [sym_comment] = ACTIONS(50), }, [1562] = { - [anon_sym_RBRACK] = ACTIONS(3436), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACK] = ACTIONS(3423), + [sym_comment] = ACTIONS(50), }, [1563] = { - [anon_sym_RBRACK] = ACTIONS(3438), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(3425), + [sym_comment] = ACTIONS(50), }, [1564] = { - [anon_sym_RBRACE] = ACTIONS(3440), - [sym_comment] = ACTIONS(52), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3425), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), }, [1565] = { - [sym__concat] = ACTIONS(2351), - [anon_sym_PIPE] = ACTIONS(2751), - [anon_sym_RPAREN] = ACTIONS(2351), - [anon_sym_PIPE_AMP] = ACTIONS(2351), - [anon_sym_AMP_AMP] = ACTIONS(2351), - [anon_sym_PIPE_PIPE] = ACTIONS(2351), - [anon_sym_BQUOTE] = ACTIONS(2351), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(2268), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_RPAREN] = ACTIONS(2270), + [anon_sym_SEMI_SEMI] = ACTIONS(2270), + [anon_sym_PIPE_AMP] = ACTIONS(2270), + [anon_sym_AMP_AMP] = ACTIONS(2270), + [anon_sym_PIPE_PIPE] = ACTIONS(2270), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym_LF] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(2270), }, [1566] = { - [anon_sym_RBRACE] = ACTIONS(3442), - [sym_comment] = ACTIONS(52), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3427), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), }, [1567] = { - [sym__concat] = ACTIONS(2357), - [anon_sym_PIPE] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2357), - [anon_sym_PIPE_AMP] = ACTIONS(2357), - [anon_sym_AMP_AMP] = ACTIONS(2357), - [anon_sym_PIPE_PIPE] = ACTIONS(2357), - [anon_sym_BQUOTE] = ACTIONS(2357), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(2274), + [anon_sym_PIPE] = ACTIONS(2276), + [anon_sym_RPAREN] = ACTIONS(2276), + [anon_sym_SEMI_SEMI] = ACTIONS(2276), + [anon_sym_PIPE_AMP] = ACTIONS(2276), + [anon_sym_AMP_AMP] = ACTIONS(2276), + [anon_sym_PIPE_PIPE] = ACTIONS(2276), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_LF] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(2276), }, [1568] = { - [anon_sym_RBRACE] = ACTIONS(3444), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(3429), + [sym_comment] = ACTIONS(50), }, [1569] = { - [anon_sym_RBRACE] = ACTIONS(3446), - [sym_comment] = ACTIONS(52), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), }, [1570] = { - [sym__concat] = ACTIONS(2810), - [sym_variable_name] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(3084), - [anon_sym_RPAREN] = ACTIONS(2810), - [anon_sym_PIPE_AMP] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BQUOTE] = ACTIONS(2810), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(3084), + [sym__concat] = ACTIONS(2280), + [anon_sym_PIPE] = ACTIONS(2282), + [anon_sym_RPAREN] = ACTIONS(2282), + [anon_sym_SEMI_SEMI] = ACTIONS(2282), + [anon_sym_PIPE_AMP] = ACTIONS(2282), + [anon_sym_AMP_AMP] = ACTIONS(2282), + [anon_sym_PIPE_PIPE] = ACTIONS(2282), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2282), + [anon_sym_LF] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2282), }, [1571] = { - [sym__concat] = ACTIONS(2814), - [sym_variable_name] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(3086), - [anon_sym_RPAREN] = ACTIONS(2814), - [anon_sym_PIPE_AMP] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_BQUOTE] = ACTIONS(2814), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(3086), + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), }, [1572] = { - [sym_file_descriptor] = ACTIONS(3112), - [sym__concat] = ACTIONS(3112), - [anon_sym_PIPE] = ACTIONS(3289), - [anon_sym_RPAREN] = ACTIONS(3112), - [anon_sym_PIPE_AMP] = ACTIONS(3112), - [anon_sym_AMP_AMP] = ACTIONS(3112), - [anon_sym_PIPE_PIPE] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(3289), - [anon_sym_GT] = ACTIONS(3289), - [anon_sym_GT_GT] = ACTIONS(3112), - [anon_sym_AMP_GT] = ACTIONS(3289), - [anon_sym_AMP_GT_GT] = ACTIONS(3112), - [anon_sym_LT_AMP] = ACTIONS(3112), - [anon_sym_GT_AMP] = ACTIONS(3112), - [anon_sym_LT_LT] = ACTIONS(3289), - [anon_sym_LT_LT_DASH] = ACTIONS(3112), - [anon_sym_BQUOTE] = ACTIONS(3112), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_RPAREN] = ACTIONS(2288), + [anon_sym_SEMI_SEMI] = ACTIONS(2288), + [anon_sym_PIPE_AMP] = ACTIONS(2288), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_LF] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), }, [1573] = { - [sym_file_descriptor] = ACTIONS(3116), - [sym__concat] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3291), - [anon_sym_RPAREN] = ACTIONS(3116), - [anon_sym_PIPE_AMP] = ACTIONS(3116), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3291), - [anon_sym_GT] = ACTIONS(3291), - [anon_sym_GT_GT] = ACTIONS(3116), - [anon_sym_AMP_GT] = ACTIONS(3291), - [anon_sym_AMP_GT_GT] = ACTIONS(3116), - [anon_sym_LT_AMP] = ACTIONS(3116), - [anon_sym_GT_AMP] = ACTIONS(3116), - [anon_sym_LT_LT] = ACTIONS(3291), - [anon_sym_LT_LT_DASH] = ACTIONS(3116), - [anon_sym_BQUOTE] = ACTIONS(3116), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(3433), + [sym_comment] = ACTIONS(50), }, [1574] = { - [sym__heredoc_middle] = ACTIONS(3112), - [sym__heredoc_end] = ACTIONS(3112), - [anon_sym_DOLLAR] = ACTIONS(3289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3112), - [sym_comment] = ACTIONS(52), + [anon_sym_RBRACE] = ACTIONS(3435), + [sym_comment] = ACTIONS(50), }, [1575] = { - [sym__heredoc_middle] = ACTIONS(3116), - [sym__heredoc_end] = ACTIONS(3116), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3116), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(2746), + [sym__concat] = ACTIONS(2746), + [sym_variable_name] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_RPAREN] = ACTIONS(2748), + [anon_sym_SEMI_SEMI] = ACTIONS(2748), + [anon_sym_PIPE_AMP] = ACTIONS(2748), + [anon_sym_AMP_AMP] = ACTIONS(2748), + [anon_sym_PIPE_PIPE] = ACTIONS(2748), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2748), + [anon_sym_SEMI] = ACTIONS(2748), + [anon_sym_LF] = ACTIONS(2748), + [anon_sym_AMP] = ACTIONS(2748), }, [1576] = { - [sym__concat] = ACTIONS(3112), - [anon_sym_PIPE] = ACTIONS(3114), - [anon_sym_RPAREN] = ACTIONS(3114), - [anon_sym_SEMI_SEMI] = ACTIONS(3114), - [anon_sym_PIPE_AMP] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_PIPE_PIPE] = ACTIONS(3114), + [sym_word] = ACTIONS(2750), + [sym__concat] = ACTIONS(2750), + [sym_variable_name] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_RPAREN] = ACTIONS(2752), + [anon_sym_SEMI_SEMI] = ACTIONS(2752), + [anon_sym_PIPE_AMP] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(3114), - [anon_sym_LF] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(3114), + [sym_identifier] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2752), + [anon_sym_LF] = ACTIONS(2752), + [anon_sym_AMP] = ACTIONS(2752), }, [1577] = { - [sym__concat] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_SEMI_SEMI] = ACTIONS(3118), - [anon_sym_PIPE_AMP] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), + [sym_word] = ACTIONS(2754), + [sym__concat] = ACTIONS(2754), + [sym_variable_name] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_SEMI_SEMI] = ACTIONS(2756), + [anon_sym_PIPE_AMP] = ACTIONS(2756), + [anon_sym_AMP_AMP] = ACTIONS(2756), + [anon_sym_PIPE_PIPE] = ACTIONS(2756), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_LF] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3118), + [sym_identifier] = ACTIONS(2756), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_LF] = ACTIONS(2756), + [anon_sym_AMP] = ACTIONS(2756), }, [1578] = { - [anon_sym_RBRACE] = ACTIONS(3448), - [sym_comment] = ACTIONS(52), + [sym_word] = ACTIONS(2758), + [sym__concat] = ACTIONS(2758), + [sym_variable_name] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2760), + [anon_sym_RPAREN] = ACTIONS(2760), + [anon_sym_SEMI_SEMI] = ACTIONS(2760), + [anon_sym_PIPE_AMP] = ACTIONS(2760), + [anon_sym_AMP_AMP] = ACTIONS(2760), + [anon_sym_PIPE_PIPE] = ACTIONS(2760), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(2760), + [anon_sym_SEMI] = ACTIONS(2760), + [anon_sym_LF] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2760), }, [1579] = { - [anon_sym_RBRACE] = ACTIONS(3450), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(1629), + [anon_sym_PIPE_AMP] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE_PIPE] = ACTIONS(1629), + [anon_sym_BQUOTE] = ACTIONS(1629), + [sym_comment] = ACTIONS(50), }, [1580] = { - [sym__concat] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(3084), - [anon_sym_RPAREN] = ACTIONS(2810), - [anon_sym_PIPE_AMP] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BQUOTE] = ACTIONS(2810), - [sym_comment] = ACTIONS(52), + [anon_sym_AT] = ACTIONS(3437), + [sym_comment] = ACTIONS(50), }, [1581] = { - [sym__concat] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(3086), - [anon_sym_RPAREN] = ACTIONS(2814), - [anon_sym_PIPE_AMP] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_BQUOTE] = ACTIONS(2814), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(1635), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_RPAREN] = ACTIONS(1635), + [anon_sym_PIPE_AMP] = ACTIONS(1635), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_PIPE_PIPE] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), + [sym_comment] = ACTIONS(50), }, [1582] = { - [sym__concat] = ACTIONS(3112), - [sym_variable_name] = ACTIONS(3112), - [anon_sym_PIPE] = ACTIONS(3289), - [anon_sym_RPAREN] = ACTIONS(3112), - [anon_sym_PIPE_AMP] = ACTIONS(3112), - [anon_sym_AMP_AMP] = ACTIONS(3112), - [anon_sym_PIPE_PIPE] = ACTIONS(3112), - [anon_sym_BQUOTE] = ACTIONS(3112), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(3289), + [anon_sym_AT] = ACTIONS(3439), + [sym_comment] = ACTIONS(50), }, [1583] = { - [sym__concat] = ACTIONS(3116), - [sym_variable_name] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3291), - [anon_sym_RPAREN] = ACTIONS(3116), - [anon_sym_PIPE_AMP] = ACTIONS(3116), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_BQUOTE] = ACTIONS(3116), - [sym_comment] = ACTIONS(52), - [sym_simple_variable_name] = ACTIONS(3291), + [anon_sym_RBRACK] = ACTIONS(3441), + [sym_comment] = ACTIONS(50), }, [1584] = { - [sym__concat] = ACTIONS(3112), - [anon_sym_PIPE] = ACTIONS(3289), - [anon_sym_RPAREN] = ACTIONS(3112), - [anon_sym_PIPE_AMP] = ACTIONS(3112), - [anon_sym_AMP_AMP] = ACTIONS(3112), - [anon_sym_PIPE_PIPE] = ACTIONS(3112), - [anon_sym_BQUOTE] = ACTIONS(3112), - [sym_comment] = ACTIONS(52), + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(3443), + [anon_sym_RBRACE] = ACTIONS(3445), + [sym_comment] = ACTIONS(50), }, [1585] = { - [sym__concat] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3291), - [anon_sym_RPAREN] = ACTIONS(3116), - [anon_sym_PIPE_AMP] = ACTIONS(3116), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_BQUOTE] = ACTIONS(3116), - [sym_comment] = ACTIONS(52), + [sym__concat] = ACTIONS(1647), + [anon_sym_PIPE] = ACTIONS(2168), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_PIPE_AMP] = ACTIONS(1647), + [anon_sym_AMP_AMP] = ACTIONS(1647), + [anon_sym_PIPE_PIPE] = ACTIONS(1647), + [anon_sym_BQUOTE] = ACTIONS(1647), + [sym_comment] = ACTIONS(50), + }, + [1586] = { + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(3447), + [anon_sym_RBRACE] = ACTIONS(3449), + [sym_comment] = ACTIONS(50), + }, + [1587] = { + [sym__concat] = ACTIONS(3441), + [anon_sym_RBRACE] = ACTIONS(3445), + [sym_comment] = ACTIONS(50), + }, + [1588] = { + [anon_sym_RBRACK] = ACTIONS(3451), + [sym_comment] = ACTIONS(50), + }, + [1589] = { + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(3453), + [anon_sym_RBRACE] = ACTIONS(3455), + [sym_comment] = ACTIONS(50), + }, + [1590] = { + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(3457), + [anon_sym_RBRACE] = ACTIONS(3459), + [sym_comment] = ACTIONS(50), + }, + [1591] = { + [sym__concat] = ACTIONS(3451), + [anon_sym_RBRACE] = ACTIONS(3455), + [sym_comment] = ACTIONS(50), + }, + [1592] = { + [anon_sym_RBRACK] = ACTIONS(3461), + [sym_comment] = ACTIONS(50), + }, + [1593] = { + [anon_sym_RBRACK] = ACTIONS(3463), + [sym_comment] = ACTIONS(50), + }, + [1594] = { + [anon_sym_RBRACE] = ACTIONS(3465), + [sym_comment] = ACTIONS(50), + }, + [1595] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3465), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1596] = { + [sym_word] = ACTIONS(2268), + [sym__concat] = ACTIONS(2268), + [sym_variable_name] = ACTIONS(2268), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_RPAREN] = ACTIONS(2268), + [anon_sym_PIPE_AMP] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2268), + [anon_sym_PIPE_PIPE] = ACTIONS(2268), + [anon_sym_BQUOTE] = ACTIONS(2268), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2679), + }, + [1597] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3467), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1598] = { + [sym_word] = ACTIONS(2274), + [sym__concat] = ACTIONS(2274), + [sym_variable_name] = ACTIONS(2274), + [anon_sym_PIPE] = ACTIONS(2683), + [anon_sym_RPAREN] = ACTIONS(2274), + [anon_sym_PIPE_AMP] = ACTIONS(2274), + [anon_sym_AMP_AMP] = ACTIONS(2274), + [anon_sym_PIPE_PIPE] = ACTIONS(2274), + [anon_sym_BQUOTE] = ACTIONS(2274), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2683), + }, + [1599] = { + [anon_sym_RBRACE] = ACTIONS(3469), + [sym_comment] = ACTIONS(50), + }, + [1600] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3469), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1601] = { + [sym_word] = ACTIONS(2280), + [sym__concat] = ACTIONS(2280), + [sym_variable_name] = ACTIONS(2280), + [anon_sym_PIPE] = ACTIONS(2687), + [anon_sym_RPAREN] = ACTIONS(2280), + [anon_sym_PIPE_AMP] = ACTIONS(2280), + [anon_sym_AMP_AMP] = ACTIONS(2280), + [anon_sym_PIPE_PIPE] = ACTIONS(2280), + [anon_sym_BQUOTE] = ACTIONS(2280), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2687), + }, + [1602] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3471), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1603] = { + [sym_word] = ACTIONS(2286), + [sym__concat] = ACTIONS(2286), + [sym_variable_name] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2691), + [anon_sym_RPAREN] = ACTIONS(2286), + [anon_sym_PIPE_AMP] = ACTIONS(2286), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2691), + }, + [1604] = { + [anon_sym_RBRACE] = ACTIONS(3473), + [sym_comment] = ACTIONS(50), + }, + [1605] = { + [anon_sym_RBRACE] = ACTIONS(3475), + [sym_comment] = ACTIONS(50), + }, + [1606] = { + [sym_file_descriptor] = ACTIONS(2746), + [sym__concat] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(3049), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_PIPE_AMP] = ACTIONS(2746), + [anon_sym_AMP_AMP] = ACTIONS(2746), + [anon_sym_PIPE_PIPE] = ACTIONS(2746), + [anon_sym_LT] = ACTIONS(3049), + [anon_sym_GT] = ACTIONS(3049), + [anon_sym_GT_GT] = ACTIONS(2746), + [anon_sym_AMP_GT] = ACTIONS(3049), + [anon_sym_AMP_GT_GT] = ACTIONS(2746), + [anon_sym_LT_AMP] = ACTIONS(2746), + [anon_sym_GT_AMP] = ACTIONS(2746), + [anon_sym_LT_LT] = ACTIONS(3049), + [anon_sym_LT_LT_DASH] = ACTIONS(2746), + [anon_sym_BQUOTE] = ACTIONS(2746), + [sym_comment] = ACTIONS(50), + }, + [1607] = { + [sym_file_descriptor] = ACTIONS(2750), + [sym__concat] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_PIPE_AMP] = ACTIONS(2750), + [anon_sym_AMP_AMP] = ACTIONS(2750), + [anon_sym_PIPE_PIPE] = ACTIONS(2750), + [anon_sym_LT] = ACTIONS(3051), + [anon_sym_GT] = ACTIONS(3051), + [anon_sym_GT_GT] = ACTIONS(2750), + [anon_sym_AMP_GT] = ACTIONS(3051), + [anon_sym_AMP_GT_GT] = ACTIONS(2750), + [anon_sym_LT_AMP] = ACTIONS(2750), + [anon_sym_GT_AMP] = ACTIONS(2750), + [anon_sym_LT_LT] = ACTIONS(3051), + [anon_sym_LT_LT_DASH] = ACTIONS(2750), + [anon_sym_BQUOTE] = ACTIONS(2750), + [sym_comment] = ACTIONS(50), + }, + [1608] = { + [sym_file_descriptor] = ACTIONS(2754), + [sym__concat] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(3053), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_PIPE_AMP] = ACTIONS(2754), + [anon_sym_AMP_AMP] = ACTIONS(2754), + [anon_sym_PIPE_PIPE] = ACTIONS(2754), + [anon_sym_LT] = ACTIONS(3053), + [anon_sym_GT] = ACTIONS(3053), + [anon_sym_GT_GT] = ACTIONS(2754), + [anon_sym_AMP_GT] = ACTIONS(3053), + [anon_sym_AMP_GT_GT] = ACTIONS(2754), + [anon_sym_LT_AMP] = ACTIONS(2754), + [anon_sym_GT_AMP] = ACTIONS(2754), + [anon_sym_LT_LT] = ACTIONS(3053), + [anon_sym_LT_LT_DASH] = ACTIONS(2754), + [anon_sym_BQUOTE] = ACTIONS(2754), + [sym_comment] = ACTIONS(50), + }, + [1609] = { + [sym_file_descriptor] = ACTIONS(2758), + [sym__concat] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(3055), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_PIPE_AMP] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(3055), + [anon_sym_GT] = ACTIONS(3055), + [anon_sym_GT_GT] = ACTIONS(2758), + [anon_sym_AMP_GT] = ACTIONS(3055), + [anon_sym_AMP_GT_GT] = ACTIONS(2758), + [anon_sym_LT_AMP] = ACTIONS(2758), + [anon_sym_GT_AMP] = ACTIONS(2758), + [anon_sym_LT_LT] = ACTIONS(3055), + [anon_sym_LT_LT_DASH] = ACTIONS(2758), + [anon_sym_BQUOTE] = ACTIONS(2758), + [sym_comment] = ACTIONS(50), + }, + [1610] = { + [sym_file_descriptor] = ACTIONS(3089), + [sym__concat] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3091), + [anon_sym_RPAREN] = ACTIONS(3091), + [anon_sym_SEMI_SEMI] = ACTIONS(3091), + [anon_sym_PIPE_AMP] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3091), + [anon_sym_GT] = ACTIONS(3091), + [anon_sym_GT_GT] = ACTIONS(3091), + [anon_sym_AMP_GT] = ACTIONS(3091), + [anon_sym_AMP_GT_GT] = ACTIONS(3091), + [anon_sym_LT_AMP] = ACTIONS(3091), + [anon_sym_GT_AMP] = ACTIONS(3091), + [anon_sym_LT_LT] = ACTIONS(3091), + [anon_sym_LT_LT_DASH] = ACTIONS(3091), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(3091), + [anon_sym_LF] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3091), + }, + [1611] = { + [sym_file_descriptor] = ACTIONS(3093), + [sym__concat] = ACTIONS(3093), + [anon_sym_PIPE] = ACTIONS(3095), + [anon_sym_RPAREN] = ACTIONS(3095), + [anon_sym_SEMI_SEMI] = ACTIONS(3095), + [anon_sym_PIPE_AMP] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_PIPE_PIPE] = ACTIONS(3095), + [anon_sym_LT] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3095), + [anon_sym_GT_GT] = ACTIONS(3095), + [anon_sym_AMP_GT] = ACTIONS(3095), + [anon_sym_AMP_GT_GT] = ACTIONS(3095), + [anon_sym_LT_AMP] = ACTIONS(3095), + [anon_sym_GT_AMP] = ACTIONS(3095), + [anon_sym_LT_LT] = ACTIONS(3095), + [anon_sym_LT_LT_DASH] = ACTIONS(3095), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(3095), + [anon_sym_LF] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3095), + }, + [1612] = { + [anon_sym_RBRACE] = ACTIONS(3477), + [sym_comment] = ACTIONS(50), + }, + [1613] = { + [anon_sym_RBRACE] = ACTIONS(3479), + [sym_comment] = ACTIONS(50), + }, + [1614] = { + [sym__heredoc_middle] = ACTIONS(2746), + [sym__heredoc_end] = ACTIONS(2746), + [anon_sym_DOLLAR] = ACTIONS(3049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2746), + [sym_comment] = ACTIONS(50), + }, + [1615] = { + [sym__heredoc_middle] = ACTIONS(2750), + [sym__heredoc_end] = ACTIONS(2750), + [anon_sym_DOLLAR] = ACTIONS(3051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2750), + [sym_comment] = ACTIONS(50), + }, + [1616] = { + [sym__heredoc_middle] = ACTIONS(2754), + [sym__heredoc_end] = ACTIONS(2754), + [anon_sym_DOLLAR] = ACTIONS(3053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2754), + [sym_comment] = ACTIONS(50), + }, + [1617] = { + [sym__heredoc_middle] = ACTIONS(2758), + [sym__heredoc_end] = ACTIONS(2758), + [anon_sym_DOLLAR] = ACTIONS(3055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2758), + [sym_comment] = ACTIONS(50), + }, + [1618] = { + [sym_word] = ACTIONS(3089), + [sym__concat] = ACTIONS(3089), + [anon_sym_SEMI_SEMI] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [sym_raw_string] = ACTIONS(3091), + [anon_sym_DOLLAR] = ACTIONS(3091), + [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_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3091), + [anon_sym_LF] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3091), + }, + [1619] = { + [sym_word] = ACTIONS(3093), + [sym__concat] = ACTIONS(3093), + [anon_sym_SEMI_SEMI] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(3095), + [sym_raw_string] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3095), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3095), + [anon_sym_BQUOTE] = ACTIONS(3095), + [anon_sym_LT_LPAREN] = ACTIONS(3095), + [anon_sym_GT_LPAREN] = ACTIONS(3095), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3095), + [anon_sym_LF] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3095), + }, + [1620] = { + [anon_sym_RBRACE] = ACTIONS(3481), + [sym_comment] = ACTIONS(50), + }, + [1621] = { + [anon_sym_RBRACE] = ACTIONS(3483), + [sym_comment] = ACTIONS(50), + }, + [1622] = { + [sym__concat] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_RPAREN] = ACTIONS(2748), + [anon_sym_SEMI_SEMI] = ACTIONS(2748), + [anon_sym_PIPE_AMP] = ACTIONS(2748), + [anon_sym_AMP_AMP] = ACTIONS(2748), + [anon_sym_PIPE_PIPE] = ACTIONS(2748), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2748), + [anon_sym_LF] = ACTIONS(2748), + [anon_sym_AMP] = ACTIONS(2748), + }, + [1623] = { + [sym__concat] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_RPAREN] = ACTIONS(2752), + [anon_sym_SEMI_SEMI] = ACTIONS(2752), + [anon_sym_PIPE_AMP] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2752), + [anon_sym_LF] = ACTIONS(2752), + [anon_sym_AMP] = ACTIONS(2752), + }, + [1624] = { + [sym__concat] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_SEMI_SEMI] = ACTIONS(2756), + [anon_sym_PIPE_AMP] = ACTIONS(2756), + [anon_sym_AMP_AMP] = ACTIONS(2756), + [anon_sym_PIPE_PIPE] = ACTIONS(2756), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_LF] = ACTIONS(2756), + [anon_sym_AMP] = ACTIONS(2756), + }, + [1625] = { + [sym__concat] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2760), + [anon_sym_RPAREN] = ACTIONS(2760), + [anon_sym_SEMI_SEMI] = ACTIONS(2760), + [anon_sym_PIPE_AMP] = ACTIONS(2760), + [anon_sym_AMP_AMP] = ACTIONS(2760), + [anon_sym_PIPE_PIPE] = ACTIONS(2760), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2760), + [anon_sym_LF] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2760), + }, + [1626] = { + [sym_word] = ACTIONS(3089), + [sym__concat] = ACTIONS(3089), + [sym_variable_name] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3091), + [anon_sym_RPAREN] = ACTIONS(3091), + [anon_sym_SEMI_SEMI] = ACTIONS(3091), + [anon_sym_PIPE_AMP] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3091), + [anon_sym_LF] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3091), + }, + [1627] = { + [sym_word] = ACTIONS(3093), + [sym__concat] = ACTIONS(3093), + [sym_variable_name] = ACTIONS(3093), + [anon_sym_PIPE] = ACTIONS(3095), + [anon_sym_RPAREN] = ACTIONS(3095), + [anon_sym_SEMI_SEMI] = ACTIONS(3095), + [anon_sym_PIPE_AMP] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_PIPE_PIPE] = ACTIONS(3095), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3095), + [anon_sym_LF] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3095), + }, + [1628] = { + [anon_sym_RBRACK] = ACTIONS(3485), + [sym_comment] = ACTIONS(50), + }, + [1629] = { + [anon_sym_RBRACK] = ACTIONS(3487), + [sym_comment] = ACTIONS(50), + }, + [1630] = { + [anon_sym_RBRACE] = ACTIONS(3489), + [sym_comment] = ACTIONS(50), + }, + [1631] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3489), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1632] = { + [sym__concat] = ACTIONS(2268), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_RPAREN] = ACTIONS(2268), + [anon_sym_PIPE_AMP] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2268), + [anon_sym_PIPE_PIPE] = ACTIONS(2268), + [anon_sym_BQUOTE] = ACTIONS(2268), + [sym_comment] = ACTIONS(50), + }, + [1633] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3491), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1634] = { + [sym__concat] = ACTIONS(2274), + [anon_sym_PIPE] = ACTIONS(2683), + [anon_sym_RPAREN] = ACTIONS(2274), + [anon_sym_PIPE_AMP] = ACTIONS(2274), + [anon_sym_AMP_AMP] = ACTIONS(2274), + [anon_sym_PIPE_PIPE] = ACTIONS(2274), + [anon_sym_BQUOTE] = ACTIONS(2274), + [sym_comment] = ACTIONS(50), + }, + [1635] = { + [anon_sym_RBRACE] = ACTIONS(3493), + [sym_comment] = ACTIONS(50), + }, + [1636] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1637] = { + [sym__concat] = ACTIONS(2280), + [anon_sym_PIPE] = ACTIONS(2687), + [anon_sym_RPAREN] = ACTIONS(2280), + [anon_sym_PIPE_AMP] = ACTIONS(2280), + [anon_sym_AMP_AMP] = ACTIONS(2280), + [anon_sym_PIPE_PIPE] = ACTIONS(2280), + [anon_sym_BQUOTE] = ACTIONS(2280), + [sym_comment] = ACTIONS(50), + }, + [1638] = { + [sym_string] = STATE(668), + [sym_simple_expansion] = STATE(668), + [sym_expansion] = STATE(668), + [sym_command_substitution] = STATE(668), + [sym_process_substitution] = STATE(668), + [sym_word] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(3495), + [anon_sym_DQUOTE] = ACTIONS(288), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1308), + }, + [1639] = { + [sym__concat] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2691), + [anon_sym_RPAREN] = ACTIONS(2286), + [anon_sym_PIPE_AMP] = ACTIONS(2286), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_comment] = ACTIONS(50), + }, + [1640] = { + [anon_sym_RBRACE] = ACTIONS(3497), + [sym_comment] = ACTIONS(50), + }, + [1641] = { + [anon_sym_RBRACE] = ACTIONS(3499), + [sym_comment] = ACTIONS(50), + }, + [1642] = { + [sym_word] = ACTIONS(2746), + [sym__concat] = ACTIONS(2746), + [sym_variable_name] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(3049), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_PIPE_AMP] = ACTIONS(2746), + [anon_sym_AMP_AMP] = ACTIONS(2746), + [anon_sym_PIPE_PIPE] = ACTIONS(2746), + [anon_sym_BQUOTE] = ACTIONS(2746), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3049), + }, + [1643] = { + [sym_word] = ACTIONS(2750), + [sym__concat] = ACTIONS(2750), + [sym_variable_name] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_PIPE_AMP] = ACTIONS(2750), + [anon_sym_AMP_AMP] = ACTIONS(2750), + [anon_sym_PIPE_PIPE] = ACTIONS(2750), + [anon_sym_BQUOTE] = ACTIONS(2750), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3051), + }, + [1644] = { + [sym_word] = ACTIONS(2754), + [sym__concat] = ACTIONS(2754), + [sym_variable_name] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(3053), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_PIPE_AMP] = ACTIONS(2754), + [anon_sym_AMP_AMP] = ACTIONS(2754), + [anon_sym_PIPE_PIPE] = ACTIONS(2754), + [anon_sym_BQUOTE] = ACTIONS(2754), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3053), + }, + [1645] = { + [sym_word] = ACTIONS(2758), + [sym__concat] = ACTIONS(2758), + [sym_variable_name] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(3055), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_PIPE_AMP] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_BQUOTE] = ACTIONS(2758), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3055), + }, + [1646] = { + [sym_file_descriptor] = ACTIONS(3089), + [sym__concat] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3300), + [anon_sym_RPAREN] = ACTIONS(3089), + [anon_sym_PIPE_AMP] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(3300), + [anon_sym_GT] = ACTIONS(3300), + [anon_sym_GT_GT] = ACTIONS(3089), + [anon_sym_AMP_GT] = ACTIONS(3300), + [anon_sym_AMP_GT_GT] = ACTIONS(3089), + [anon_sym_LT_AMP] = ACTIONS(3089), + [anon_sym_GT_AMP] = ACTIONS(3089), + [anon_sym_LT_LT] = ACTIONS(3300), + [anon_sym_LT_LT_DASH] = ACTIONS(3089), + [anon_sym_BQUOTE] = ACTIONS(3089), + [sym_comment] = ACTIONS(50), + }, + [1647] = { + [sym_file_descriptor] = ACTIONS(3093), + [sym__concat] = ACTIONS(3093), + [anon_sym_PIPE] = ACTIONS(3302), + [anon_sym_RPAREN] = ACTIONS(3093), + [anon_sym_PIPE_AMP] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_PIPE_PIPE] = ACTIONS(3093), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_GT] = ACTIONS(3302), + [anon_sym_GT_GT] = ACTIONS(3093), + [anon_sym_AMP_GT] = ACTIONS(3302), + [anon_sym_AMP_GT_GT] = ACTIONS(3093), + [anon_sym_LT_AMP] = ACTIONS(3093), + [anon_sym_GT_AMP] = ACTIONS(3093), + [anon_sym_LT_LT] = ACTIONS(3302), + [anon_sym_LT_LT_DASH] = ACTIONS(3093), + [anon_sym_BQUOTE] = ACTIONS(3093), + [sym_comment] = ACTIONS(50), + }, + [1648] = { + [sym__heredoc_middle] = ACTIONS(3089), + [sym__heredoc_end] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3089), + [sym_comment] = ACTIONS(50), + }, + [1649] = { + [sym__heredoc_middle] = ACTIONS(3093), + [sym__heredoc_end] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3302), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3093), + [sym_comment] = ACTIONS(50), + }, + [1650] = { + [sym__concat] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3091), + [anon_sym_RPAREN] = ACTIONS(3091), + [anon_sym_SEMI_SEMI] = ACTIONS(3091), + [anon_sym_PIPE_AMP] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(3091), + [anon_sym_LF] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3091), + }, + [1651] = { + [sym__concat] = ACTIONS(3093), + [anon_sym_PIPE] = ACTIONS(3095), + [anon_sym_RPAREN] = ACTIONS(3095), + [anon_sym_SEMI_SEMI] = ACTIONS(3095), + [anon_sym_PIPE_AMP] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_PIPE_PIPE] = ACTIONS(3095), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(3095), + [anon_sym_LF] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3095), + }, + [1652] = { + [anon_sym_RBRACE] = ACTIONS(3501), + [sym_comment] = ACTIONS(50), + }, + [1653] = { + [anon_sym_RBRACE] = ACTIONS(3503), + [sym_comment] = ACTIONS(50), + }, + [1654] = { + [sym__concat] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(3049), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_PIPE_AMP] = ACTIONS(2746), + [anon_sym_AMP_AMP] = ACTIONS(2746), + [anon_sym_PIPE_PIPE] = ACTIONS(2746), + [anon_sym_BQUOTE] = ACTIONS(2746), + [sym_comment] = ACTIONS(50), + }, + [1655] = { + [sym__concat] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_PIPE_AMP] = ACTIONS(2750), + [anon_sym_AMP_AMP] = ACTIONS(2750), + [anon_sym_PIPE_PIPE] = ACTIONS(2750), + [anon_sym_BQUOTE] = ACTIONS(2750), + [sym_comment] = ACTIONS(50), + }, + [1656] = { + [sym__concat] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(3053), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_PIPE_AMP] = ACTIONS(2754), + [anon_sym_AMP_AMP] = ACTIONS(2754), + [anon_sym_PIPE_PIPE] = ACTIONS(2754), + [anon_sym_BQUOTE] = ACTIONS(2754), + [sym_comment] = ACTIONS(50), + }, + [1657] = { + [sym__concat] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(3055), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_PIPE_AMP] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_BQUOTE] = ACTIONS(2758), + [sym_comment] = ACTIONS(50), + }, + [1658] = { + [sym_word] = ACTIONS(3089), + [sym__concat] = ACTIONS(3089), + [sym_variable_name] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3300), + [anon_sym_RPAREN] = ACTIONS(3089), + [anon_sym_PIPE_AMP] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_BQUOTE] = ACTIONS(3089), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3300), + }, + [1659] = { + [sym_word] = ACTIONS(3093), + [sym__concat] = ACTIONS(3093), + [sym_variable_name] = ACTIONS(3093), + [anon_sym_PIPE] = ACTIONS(3302), + [anon_sym_RPAREN] = ACTIONS(3093), + [anon_sym_PIPE_AMP] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_PIPE_PIPE] = ACTIONS(3093), + [anon_sym_BQUOTE] = ACTIONS(3093), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3302), + }, + [1660] = { + [sym__concat] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3300), + [anon_sym_RPAREN] = ACTIONS(3089), + [anon_sym_PIPE_AMP] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_BQUOTE] = ACTIONS(3089), + [sym_comment] = ACTIONS(50), + }, + [1661] = { + [sym__concat] = ACTIONS(3093), + [anon_sym_PIPE] = ACTIONS(3302), + [anon_sym_RPAREN] = ACTIONS(3093), + [anon_sym_PIPE_AMP] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_PIPE_PIPE] = ACTIONS(3093), + [anon_sym_BQUOTE] = ACTIONS(3093), + [sym_comment] = ACTIONS(50), }, }; @@ -33464,18 +34950,18 @@ static TSParseActionEntry ts_parse_actions[] = { [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), + [12] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4), + [14] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_program, 0), [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), + [24] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(9), + [26] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(10), [28] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(11), - [30] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(12), + [30] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(12), [32] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(13), - [34] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(13), + [34] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(14), [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), @@ -33483,1642 +34969,1673 @@ static TSParseActionEntry ts_parse_actions[] = { [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(), + [50] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT_EXTRA(), + [52] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(21), [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 = false}, SHIFT(36), + [58] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1), + [60] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(33), + [62] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1), [64] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT_EXTRA(), - [66] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(37), - [68] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(36), - [70] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(43), - [72] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(44), - [74] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(45), - [76] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(46), - [78] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(47), - [80] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(48), - [82] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(49), - [84] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(44), - [86] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(51), - [88] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(52), - [90] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(53), - [92] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(54), - [94] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(55), - [96] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(56), - [98] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(63), + [66] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(35), + [68] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(36), + [70] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(38), + [72] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(43), + [74] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(44), + [76] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(45), + [78] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(46), + [80] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(47), + [82] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(48), + [84] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(49), + [86] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(50), + [88] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(52), + [90] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(53), + [92] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(54), + [94] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(55), + [96] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(56), + [98] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(57), [100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(64), - [102] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(65), - [104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(66), + [102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(65), + [104] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(66), [106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(67), [108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(68), [110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(69), - [112] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(64), - [114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(72), - [116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(73), - [118] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(74), - [120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(75), - [122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(76), - [124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(77), - [126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(78), - [128] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(73), - [130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(81), - [132] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 1), - [134] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(82), - [136] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(83), + [112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(70), + [114] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(71), + [116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(74), + [118] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(75), + [120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(77), + [122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(78), + [124] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 1), + [126] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(79), + [128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(82), + [130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(83), + [132] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(84), + [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 = false}, SHIFT(87), [140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(88), [142] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, 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 = false}, SHIFT(92), - [150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(93), - [152] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(88), - [154] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(95), - [156] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, 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 = false, .depends_on_lookahead = false}, SHIFT(99), - [164] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(100), - [166] = {.count = 1, .reusable = true, .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}, REDUCE(sym_command_name, 1), - [172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(104), - [174] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(105), - [176] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(104), - [178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(107), - [180] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(108), - [182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(110), - [184] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(111), - [186] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(112), - [188] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(113), - [190] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(114), - [192] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(115), - [194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(116), - [196] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(117), - [198] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(118), - [200] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(119), - [202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(120), - [204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(121), - [206] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(122), - [208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(123), - [210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(124), - [212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(125), - [214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(126), - [216] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(127), - [218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(134), - [220] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(135), - [222] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(136), - [224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(137), - [226] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(138), - [228] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(146), - [230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, ACCEPT_INPUT(), - [232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), - [234] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 1), - [236] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), - [238] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(147), - [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 = true, .depends_on_lookahead = false}, SHIFT(150), - [246] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 1), - [248] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(151), - [250] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(152), - [252] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(14), - [254] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(153), - [256] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(16), - [258] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(17), - [260] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(18), - [262] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(19), - [264] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(20), - [266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), - [268] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), - [270] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), - [272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_program, 1), - [274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(159), - [276] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(15), - [278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(163), - [280] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(163), - [282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(165), - [284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(166), - [286] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(167), + [144] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(91), + [146] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(92), + [148] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(93), + [150] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(94), + [152] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(95), + [154] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(96), + [156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(98), + [158] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(99), + [160] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(98), + [162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(101), + [164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(102), + [166] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(103), + [168] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(101), + [170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(105), + [172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(106), + [174] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(107), + [176] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(108), + [178] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(109), + [180] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(110), + [182] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(111), + [184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(112), + [186] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(113), + [188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(114), + [190] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(115), + [192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(116), + [194] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(117), + [196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(118), + [198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(119), + [200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(120), + [202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(121), + [204] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(122), + [206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(129), + [208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(130), + [210] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(131), + [212] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(132), + [214] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(133), + [216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), + [218] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), + [220] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(141), + [222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, ACCEPT_INPUT(), + [224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), + [226] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 1), + [228] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), + [230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(143), + [232] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(144), + [234] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(145), + [236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(146), + [238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(147), + [240] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 1), + [242] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(148), + [244] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(149), + [246] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(15), + [248] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(147), + [250] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(16), + [252] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(17), + [254] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(18), + [256] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(19), + [258] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(20), + [260] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(150), + [262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), + [264] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), + [266] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), + [268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_program, 1), + [270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(156), + [272] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(157), + [274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(161), + [276] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(162), + [278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(164), + [280] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(165), + [282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2), + [284] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2), + [286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(167), [288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(168), - [290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(169), + [290] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, 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 = true}, SHIFT(166), + [296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(172), [298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(173), - [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 = true}, SHIFT(177), - [308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, 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 = true}, SHIFT(176), - [318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_variable_assignment, 2), - [320] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_variable_assignment, 2), - [322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_special_variable_name, 1), - [324] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_special_variable_name, 1), - [326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(182), - [328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(183), - [330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(184), - [332] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(186), - [334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(187), - [336] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(188), - [338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(190), - [340] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(191), - [342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(192), - [344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(194), - [346] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(195), - [348] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(194), - [350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(197), - [352] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(198), - [354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(206), - [356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(207), - [358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(209), - [360] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(210), - [362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(211), - [364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(216), - [366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(217), - [368] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(218), - [370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(219), - [372] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(220), - [374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(221), - [376] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(222), - [378] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(223), - [380] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(55), - [382] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(230), - [384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(232), - [386] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 1), + [300] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(174), + [302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(176), + [304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(177), + [306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(178), + [308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(179), + [310] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(180), + [312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(181), + [314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(182), + [316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(183), + [318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(184), + [320] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(185), + [322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_variable_assignment, 2), + [324] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_variable_assignment, 2), + [326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(186), + [328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(187), + [330] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(189), + [332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(190), + [334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(191), + [336] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(192), + [338] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(193), + [340] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(195), + [342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(197), + [344] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(198), + [346] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(197), + [348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(200), + [350] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(201), + [352] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(209), + [354] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(210), + [356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(212), + [358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(213), + [360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(216), + [362] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(217), + [364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(218), + [366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(221), + [368] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(223), + [370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(224), + [372] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(225), + [374] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(226), + [376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(227), + [378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(228), + [380] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(229), + [382] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(228), + [384] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(230), + [386] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(236), [388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1), - [390] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1), - [392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(234), - [394] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(235), - [396] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(234), - [398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(237), - [400] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(238), - [402] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(246), - [404] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(64), - [406] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(248), - [408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(250), - [410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(252), - [412] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(253), - [414] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(252), - [416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(255), - [418] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(256), - [420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(73), - [422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(265), - [424] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(267), - [426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat2, 1), - [428] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat2, 1), - [430] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 2), - [432] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(271), - [434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), - [436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(273), - [438] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 2), - [440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(275), - [442] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(276), - [444] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(275), - [446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(278), - [448] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(279), - [450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 2), - [452] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 2), - [454] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 1), - [456] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 1), - [458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(287), - [460] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(288), - [462] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(287), - [464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(290), - [466] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(291), - [468] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(297), - [470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(299), - [472] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(299), - [474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2), - [476] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2), - [478] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_special_variable_name, 1), - [480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 1), - [482] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 1), - [484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2), - [486] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2), - [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 = false, .depends_on_lookahead = false}, SHIFT(311), - [510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(315), - [512] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(315), - [514] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(317), - [516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(323), - [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(324), - [524] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(325), - [526] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(329), - [528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(331), - [530] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_name, 1), - [532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(333), - [534] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(334), - [536] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(333), - [538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(336), - [540] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(337), - [542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(345), - [544] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(346), - [546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(347), - [548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(346), - [550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(348), - [552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(349), - [554] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 1), - [556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 1), - [558] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(350), - [560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(350), - [562] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(351), - [564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(351), + [390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(238), + [392] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 1), + [394] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(240), + [396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(242), + [398] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(243), + [400] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(242), + [402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(245), + [404] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(246), + [406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [408] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(255), + [412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(260), + [418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), + [420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), + [422] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 2), + [424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), + [426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(263), + [428] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 2), + [430] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(265), + [432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(267), + [434] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(268), + [436] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(267), + [438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(270), + [440] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(271), + [442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), + [444] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), + [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(280), + [456] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(281), + [458] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(280), + [460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(283), + [462] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(284), + [464] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(290), + [466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_special_variable_name, 1), + [468] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_special_variable_name, 1), + [470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [472] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2), + [476] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2), + [478] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_special_variable_name, 1), + [480] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(292), + [482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(294), + [484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(295), + [486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(296), + [488] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(296), + [490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(297), + [492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(298), + [494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(299), + [496] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(299), + [498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(300), + [500] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_name, 1), + [502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(302), + [504] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(304), + [506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(307), + [508] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(308), + [510] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(310), + [512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(316), + [514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(317), + [516] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 1), + [518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 1), + [520] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(318), + [522] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(321), + [524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(323), + [526] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(324), + [528] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(323), + [530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(326), + [532] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(327), + [534] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), + [536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(335), + [538] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(337), + [540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(338), + [542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(337), + [544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(339), + [546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(340), + [548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(341), + [550] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 1), + [552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 1), + [554] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(342), + [556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(342), + [558] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(343), + [560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(343), + [562] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(344), + [564] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(349), [566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(352), - [568] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(352), - [570] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(348), - [572] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(121), - [574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(358), - [576] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(359), + [568] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(353), + [570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(354), + [572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(357), + [574] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(359), + [576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(359), [578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(360), - [580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(365), - [582] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(366), - [584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(366), - [586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(367), - [588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(368), - [590] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(369), + [580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(361), + [582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(362), + [584] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(363), + [586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(363), + [588] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(364), + [590] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(367), [592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(369), [594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(370), - [596] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(370), - [598] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(367), - [600] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(137), - [602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(374), - [604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(375), - [606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), - [608] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__terminated_statement, 2), - [610] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), - [612] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(380), - [614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(380), - [616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(381), - [618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(382), - [620] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(383), - [622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(384), - [624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(385), - [626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(386), - [628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(387), - [630] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(382), - [632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(389), - [634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(390), - [636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), - [638] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), - [640] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 2), - [642] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2), - [645] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), - [648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), - [650] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), - [653] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), - [656] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), - [659] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7), - [662] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(8), - [665] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(9), - [668] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(10), - [671] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), - [674] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(12), - [677] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(13), - [680] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(13), - [683] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), - [686] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), - [689] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(16), - [692] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), - [695] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(18), - [698] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(19), - [701] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(20), - [704] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(21), - [707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(395), - [709] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2), - [712] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(159), - [715] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(13), - [718] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(13), - [721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), - [723] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), - [725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), - [727] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3), - [729] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(398), - [731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(400), - [733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(401), - [735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(403), - [737] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(404), - [739] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(403), - [741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(406), - [743] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(407), - [745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2), - [747] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2), - [749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(415), - [751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(416), - [753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(417), - [755] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(418), - [757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(419), - [759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(420), - [761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(421), - [763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(422), - [765] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(417), - [767] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(425), - [769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(427), - [771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(429), - [773] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(430), - [775] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(429), - [777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(432), - [779] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(433), - [781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(441), - [783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(442), - [785] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(443), - [787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(444), - [789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(445), - [791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(446), - [793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(447), - [795] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(442), - [797] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(451), - [799] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), - [801] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(456), - [803] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(457), - [805] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(458), - [807] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(466), - [809] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(467), - [811] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(467), - [813] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(468), - [815] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(469), - [817] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(471), - [819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(473), - [821] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(474), - [823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(475), - [825] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(475), - [827] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(476), - [829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(477), - [831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(478), - [833] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(478), - [835] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(479), - [837] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(480), - [839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(481), - [841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(482), - [843] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(484), - [845] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), - [847] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(485), - [849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(487), - [851] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(487), - [853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(488), - [855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(490), - [857] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(495), - [859] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), - [861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(496), - [863] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(499), - [865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(499), - [867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(500), - [869] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(500), - [871] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(496), - [873] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(504), - [875] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 2), - [877] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(506), - [879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(507), - [881] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(507), - [883] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_concatenation, 2), - [885] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 1), - [887] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2), - [889] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(509), - [891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(511), - [893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(512), - [895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(513), - [897] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(513), - [899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(514), - [901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(515), - [903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(516), - [905] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(516), - [907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(517), - [909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(518), - [911] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), - [913] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), - [915] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(63), - [918] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(64), - [921] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(65), - [924] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(66), - [927] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(67), - [930] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(68), - [933] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(69), - [936] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(64), - [939] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(519), - [941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(520), - [943] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(520), - [945] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(522), - [947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(524), - [949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(525), - [951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(526), - [953] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(526), - [955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(527), - [957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(528), - [959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(529), - [961] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(529), - [963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(530), - [965] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(531), - [967] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(72), - [970] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(73), - [973] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(74), - [976] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(75), - [979] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(76), - [982] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(77), - [985] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(78), - [988] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(73), - [991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(532), - [993] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(533), - [995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(534), - [997] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(535), - [999] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, 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 = false}, SHIFT(540), - [1009] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(535), - [1011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2, .alias_sequence_id = 2), - [1013] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2, .alias_sequence_id = 2), - [1015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1017] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1019] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(82), - [1022] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 3), - [1024] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat2, 2), SHIFT_REPEAT(81), - [1027] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat2, 2), - [1029] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat2, 2), SHIFT_REPEAT(83), - [1032] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(541), - [1034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(542), - [1036] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(542), - [1038] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(544), - [1040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(546), - [1042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(547), - [1044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(548), - [1046] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(548), - [1048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(549), - [1050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(550), - [1052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(551), - [1054] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(551), - [1056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(552), - [1058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(553), - [1060] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(554), - [1062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(556), - [1064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(557), - [1066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(558), - [1068] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(558), - [1070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(559), - [1072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(560), - [1074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(561), - [1076] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(561), - [1078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(562), - [1080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 3), - [1082] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 3), - [1084] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), - [1086] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(96), - [1089] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(97), - [1092] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(98), - [1095] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(99), - [1098] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(100), - [1101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1103] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1105] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(102), - [1108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(563), - [1110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(564), - [1112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(565), - [1114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(566), - [1116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 1), - [1118] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 1), - [1120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(567), - [1122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(568), - [1124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(569), - [1126] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(569), - [1128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), - [1130] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), - [1132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(571), - [1134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(572), - [1136] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(572), - [1138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(574), - [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 = false}, SHIFT(577), - [1146] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, 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 = false}, SHIFT(582), - [1156] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(577), - [1158] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_variable_assignment, 2), - [1160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(583), - [1162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(584), - [1164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(585), - [1166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(587), - [1168] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(588), - [1170] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(589), - [1172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(590), - [1174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(591), - [1176] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(593), - [1178] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(594), - [1180] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(597), - [1182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(598), - [1184] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(600), - [1186] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat2, 1), - [1188] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 2), - [1190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 2), - [1192] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(604), - [1194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(605), - [1196] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(605), - [1198] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(607), - [1200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(609), - [1202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(610), - [1204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(611), - [1206] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(611), - [1208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(612), - [1210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(613), - [1212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(614), - [1214] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(614), - [1216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(615), - [1218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(616), - [1220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(617), - [1222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), - [1224] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), - [1226] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(622), - [1228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(622), - [1230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(623), - [1232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(624), - [1234] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(625), - [1236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(626), - [1238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(627), - [1240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(628), - [1242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(629), - [1244] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(624), - [1246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(631), - [1248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(632), - [1250] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 1), - [1252] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 2), - [1254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 2), - [1256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(638), - [1258] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(638), - [1260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(639), - [1262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(641), - [1264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(646), - [1266] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(650), - [1268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(650), - [1270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(651), - [1272] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(651), - [1274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), - [1276] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), - [1278] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), - [1280] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), - [1282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(657), - [1284] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(657), - [1286] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(659), - [1288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(661), - [1290] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), - [1292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(663), - [1294] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(664), - [1296] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(663), - [1298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(666), - [1300] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(667), - [1302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), - [1304] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), - [1306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(675), - [1308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(676), - [1310] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(677), - [1312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(678), - [1314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), - [1316] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), - [1318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [1320] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [1322] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(14), - [1325] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(153), - [1328] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(16), - [1331] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(17), - [1334] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(18), - [1337] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(19), - [1340] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(20), - [1343] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3), - [1345] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(150), - [1348] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), - [1350] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(151), - [1353] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(152), - [1356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(680), - [1358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(681), - [1360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(682), - [1362] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(682), - [1364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(684), - [1366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(685), - [1368] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(685), - [1370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4), - [1372] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(687), - [1374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(689), - [1376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(690), - [1378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(691), - [1380] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(691), - [1382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(692), - [1384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(693), - [1386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(694), - [1388] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(694), - [1390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(695), - [1392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(696), - [1394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 2), - [1396] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 2), - [1398] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(697), - [1400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(699), - [1402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(701), - [1404] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(702), - [1406] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(701), - [1408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(704), - [1410] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(705), - [1412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(713), - [1414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(715), - [1416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(716), - [1418] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(716), - [1420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(718), - [1422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(720), - [1424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(721), - [1426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(722), - [1428] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(722), - [1430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(723), - [1432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(724), - [1434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(725), - [1436] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(725), - [1438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(726), - [1440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(727), - [1442] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(728), - [1444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(730), - [1446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(732), - [1448] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(733), - [1450] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(732), - [1452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(735), - [1454] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(736), - [1456] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(744), - [1458] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(441), - [1460] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(442), - [1462] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(443), - [1464] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(444), - [1466] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(445), - [1468] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(446), - [1470] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(447), - [1472] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(746), - [1474] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), - [1476] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(747), - [1478] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(748), - [1480] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), - [1482] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 1), - [1484] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(755), - [1486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1), - [1488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(756), - [1490] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(756), - [1492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(457), - [1494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(458), - [1496] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(761), - [1498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(762), - [1500] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(762), - [1502] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(766), - [1504] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(190), - [1507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(767), - [1509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(768), - [1511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(769), - [1513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(770), - [1515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(771), - [1517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(772), - [1519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(773), - [1521] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(773), - [1523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(775), - [1525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(776), - [1527] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(776), - [1529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), - [1531] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), - [1533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(779), - [1535] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(781), - [1537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(781), - [1539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(782), - [1541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(783), - [1543] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(784), - [1545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(785), - [1547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(786), - [1549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(787), - [1551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(788), - [1553] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(783), - [1555] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), - [1557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(791), - [1559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(792), - [1561] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(793), - [1563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(794), - [1565] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(794), - [1567] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat2, 2), SHIFT_REPEAT(211), - [1570] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), - [1572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(796), - [1574] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(796), - [1576] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(223), - [1579] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(221), - [1582] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(222), - [1585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(798), - [1587] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 3), - [1589] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1591] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(232), - [1594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(800), - [1596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(801), - [1598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(802), - [1600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(803), - [1602] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 1), - [1604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(804), - [1606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(805), - [1608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(806), - [1610] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(806), - [1612] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3), - [1614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(808), - [1616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(809), - [1618] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(809), - [1620] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_substitution, 3), - [1622] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_process_substitution, 3), - [1624] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(250), - [1627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(811), - [1629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(812), - [1631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(813), - [1633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(814), - [1635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(815), - [1637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(816), - [1639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(817), - [1641] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(817), - [1643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(819), - [1645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(820), - [1647] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(820), - [1649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(822), - [1651] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(824), - [1653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(826), - [1655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(828), - [1657] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(829), - [1659] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(828), - [1661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(831), - [1663] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(832), - [1665] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(273), - [1668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(840), - [1670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(841), - [1672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(842), - [1674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(843), - [1676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(844), - [1678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(845), - [1680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(846), - [1682] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(846), - [1684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(848), - [1686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(849), - [1688] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(849), - [1690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(851), - [1692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(852), - [1694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(853), - [1696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(854), - [1698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(855), - [1700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(856), - [1702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(857), - [1704] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(857), - [1706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(859), - [1708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(860), - [1710] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(860), - [1712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 3), - [1714] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 3), - [1716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(862), - [1718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), - [1720] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), - [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}, REDUCE(sym_expansion, 4, .alias_sequence_id = 1), - [1728] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 1), - [1730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(865), - [1732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(867), - [1734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(868), - [1736] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__assignment, 2), - [1738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(869), - [1740] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(871), - [1742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(873), - [1744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(875), - [1746] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(876), - [1748] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(875), - [1750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(878), - [1752] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(879), - [1754] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(889), - [1756] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 3), - [1758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), - [1760] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(891), - [1762] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(895), - [1764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(896), - [1766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(897), - [1768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(898), - [1770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(900), - [1772] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), - [1774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), - [1776] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(901), - [1778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(901), - [1780] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 3), - [1782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), - [1784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(903), - [1786] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(903), - [1788] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(904), - [1790] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bracket_command, 3), - [1792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), - [1794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(905), - [1796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(906), - [1798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(907), - [1800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(908), - [1802] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(909), - [1804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(910), - [1806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(911), - [1808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(912), - [1810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(913), - [1812] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(908), - [1814] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2, .alias_sequence_id = 2), - [1816] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1818] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(324), - [1821] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 3), - [1823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 3), - [1825] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat2, 2), SHIFT_REPEAT(323), - [1828] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat2, 2), - [1830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat2, 2), - [1832] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat2, 2), SHIFT_REPEAT(325), - [1835] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(331), - [1838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(914), - [1840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(915), - [1842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(916), - [1844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(917), - [1846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(918), - [1848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(919), - [1850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(920), - [1852] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(920), - [1854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(922), - [1856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(923), - [1858] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(923), - [1860] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pipeline, 3), - [1862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), - [1864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), - [1866] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_list, 3, .fragile = true), - [1868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(926), - [1870] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(926), - [1872] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(928), - [1874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(930), - [1876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(932), - [1878] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(933), - [1880] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(932), - [1882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(935), - [1884] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(936), - [1886] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 1), - [1888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(944), - [1890] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc_redirect, 2), - [1892] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(120), - [1895] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(352), - [1898] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(122), - [1901] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(123), - [1904] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(124), - [1907] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(125), - [1910] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(126), - [1913] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(352), - [1916] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 3), - [1918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 3), - [1920] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(349), - [1923] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), - [1925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), - [1927] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(350), - [1930] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(350), - [1933] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(351), - [1936] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(351), - [1939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(948), - [1941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(949), - [1943] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(950), - [1945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(950), - [1947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(951), - [1949] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(951), - [1951] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat2, 2), SHIFT_REPEAT(360), - [1954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(953), - [1956] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(953), - [1958] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(370), - [1961] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(370), - [1964] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(368), - [1967] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(369), - [1970] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(369), - [1973] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), - [1975] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(957), - [1977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(958), - [1979] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(958), - [1981] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(960), - [1983] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(962), - [1985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(963), - [1987] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(964), - [1989] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(964), - [1991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(965), - [1993] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(966), - [1995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(967), - [1997] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(967), - [1999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(968), - [2001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(969), - [2003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 1), - [2005] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 1), - [2007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), - [2009] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), - [2011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(970), - [2013] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(971), - [2015] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(970), - [2017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(973), - [2019] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(974), - [2021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(976), - [2023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(978), - [2025] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4), - [2027] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(400), - [2030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(980), - [2032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(981), - [2034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(982), - [2036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(983), - [2038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(984), - [2040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(985), - [2042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(986), - [2044] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(986), - [2046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(988), - [2048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(989), - [2050] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(989), - [2052] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(991), - [2054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(992), - [2056] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(992), - [2058] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(994), - [2060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(996), - [2062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(997), - [2064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(998), - [2066] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(998), - [2068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(999), - [2070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1000), - [2072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1001), - [2074] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1001), - [2076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1002), - [2078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1003), - [2080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 3), - [2082] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 3), - [2084] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(416), - [2087] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(417), - [2090] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(418), - [2093] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(419), - [2096] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(420), - [2099] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(421), - [2102] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(422), - [2105] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(417), - [2108] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(427), - [2111] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1004), - [2113] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1005), - [2115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1006), - [2117] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1007), - [2119] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1008), - [2121] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1009), - [2123] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1010), - [2125] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1010), - [2127] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1012), - [2129] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1013), - [2131] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1013), - [2133] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1015), - [2135] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1016), - [2137] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1016), - [2139] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1018), - [2141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1020), - [2143] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1021), - [2145] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1022), - [2147] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1022), - [2149] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1023), - [2151] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1024), - [2153] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1025), - [2155] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1025), - [2157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1026), - [2159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1027), - [2161] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(441), - [2164] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(442), - [2167] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(443), - [2170] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(444), - [2173] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(445), - [2176] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(446), - [2179] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(447), - [2182] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), - [2184] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), - [2186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1030), - [2188] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1031), - [2190] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 2), - [2192] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), - [2194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1033), - [2196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), - [2198] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(457), - [2201] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), - [2203] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1035), - [2205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1036), - [2207] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 1), - [2209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), - [2211] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), - [2213] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1039), - [2215] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1042), - [2217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1043), - [2219] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1044), - [2221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1045), - [2223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1046), - [2225] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1047), - [2227] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), - [2229] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), - [2231] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), - [2233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1049), - [2235] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1049), - [2237] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1051), - [2239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1053), - [2241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1055), - [2243] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1056), - [2245] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1055), - [2247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1058), - [2249] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1059), - [2251] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1069), - [2253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1069), - [2255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1070), - [2257] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1070), - [2259] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), - [2261] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 3), - [2263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1073), - [2265] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4), - [2267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1074), - [2269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1075), - [2271] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 1), - [2273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1076), - [2275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1077), - [2277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1078), - [2279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1079), - [2281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1080), - [2283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1081), - [2285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1082), - [2287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1083), - [2289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1084), - [2291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1085), - [2293] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1086), - [2295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1087), - [2297] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1087), - [2299] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1089), - [2301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1091), - [2303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1092), - [2305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1093), - [2307] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1093), - [2309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1094), - [2311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1095), - [2313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1096), - [2315] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1096), - [2317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1097), - [2319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1098), - [2321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1099), - [2323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1100), - [2325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1101), - [2327] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1102), - [2329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1103), - [2331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1104), - [2333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1105), - [2335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1106), - [2337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1107), - [2339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1108), - [2341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1109), - [2343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1110), - [2345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1111), - [2347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1112), - [2349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1113), - [2351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 1), - [2353] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 1), - [2355] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1115), - [2357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), - [2359] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), - [2361] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 2), - [2363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1116), - [2365] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1117), - [2367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1118), - [2369] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1118), - [2371] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1120), - [2373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1122), - [2375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1123), - [2377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1124), - [2379] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1124), - [2381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1125), - [2383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1126), - [2385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1127), - [2387] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1127), - [2389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1128), - [2391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1129), - [2393] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1130), - [2395] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1131), - [2397] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 2), - [2399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), - [2401] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1132), - [2403] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 4), - [2405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), - [2407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1133), - [2409] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1133), - [2411] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1136), - [2413] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1138), - [2415] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), - [2417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1140), - [2419] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1141), - [2421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1141), - [2423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1142), - [2425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1143), - [2427] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1144), - [2429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1145), - [2431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1146), - [2433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1147), - [2435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1148), - [2437] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1143), - [2439] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4), - [2441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), - [2443] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 4), - [2445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), - [2447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1150), - [2449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1151), - [2451] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1153), - [2453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1155), - [2455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1157), - [2457] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1158), - [2459] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1157), - [2461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1160), - [2463] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1161), - [2465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1169), - [2467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1170), - [2469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1171), - [2471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1172), - [2473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1173), - [2475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1174), - [2477] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1176), - [2479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1177), - [2481] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1177), - [2483] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1179), - [2485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1181), - [2487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1182), - [2489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1183), - [2491] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1183), - [2493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1184), - [2495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1185), - [2497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1186), - [2499] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1186), - [2501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1187), - [2503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1188), - [2505] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 2), - [2507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1189), - [2509] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 4), - [2511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 4), - [2513] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1192), - [2515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1192), - [2517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1193), - [2519] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1193), - [2521] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(661), - [2524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1196), - [2526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1197), - [2528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1198), - [2530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1199), - [2532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1200), - [2534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1201), - [2536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1202), - [2538] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1202), - [2540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1204), - [2542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1205), - [2544] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1205), - [2546] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1207), - [2548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1209), - [2550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1210), - [2552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1211), - [2554] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1211), - [2556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1212), - [2558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1213), - [2560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1214), - [2562] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1214), - [2564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), - [2566] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), - [2568] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(675), - [2571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), - [2573] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(677), - [2576] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(678), - [2579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1215), - [2581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1216), - [2583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1217), - [2585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1218), - [2587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1219), - [2589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1220), - [2591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1221), - [2593] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(699), - [2596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1222), - [2598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1223), - [2600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1224), - [2602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1225), - [2604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1226), - [2606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1227), - [2608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1228), - [2610] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1228), - [2612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1230), - [2614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1231), - [2616] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1231), - [2618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1233), - [2620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1234), - [2622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1235), - [2624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1236), - [2626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1237), - [2628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1238), - [2630] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(730), - [2633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1239), - [2635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1240), - [2637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1241), - [2639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1242), - [2641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1243), - [2643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1244), - [2645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1245), - [2647] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1245), - [2649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1247), - [2651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1248), - [2653] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1248), - [2655] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 1), - [2657] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), - [2659] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3), - [2661] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), - [2663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1251), - [2665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1252), - [2667] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1252), - [2669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1254), - [2671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1256), - [2673] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), - [2675] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), - [2677] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(165), - [2680] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(762), - [2683] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(167), - [2686] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(168), - [2689] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(169), - [2692] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(170), - [2695] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(171), - [2698] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(762), - [2701] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1259), - [2703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1260), - [2705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1261), - [2707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1262), - [2709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1263), - [2711] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), - [2713] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1264), - [2715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1265), - [2717] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1265), - [2719] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1267), - [2721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1269), - [2723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1270), - [2725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1271), - [2727] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1271), - [2729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1272), - [2731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1273), - [2733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1274), - [2735] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1274), - [2737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1275), - [2739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1276), - [2741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1277), - [2743] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1277), - [2745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1280), - [2747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1281), - [2749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1282), - [2751] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 1), - [2753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1283), - [2755] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5), - [2757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1284), - [2759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1285), - [2761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1286), - [2763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1287), - [2765] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(826), - [2768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1288), - [2770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1289), - [2772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1290), - [2774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1291), - [2776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1292), - [2778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1293), - [2780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1294), - [2782] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1294), - [2784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1296), - [2786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1297), - [2788] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1297), - [2790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1299), - [2792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1300), - [2794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1301), - [2796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1302), - [2798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1303), - [2800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1304), - [2802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1305), - [2804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1306), - [2806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1307), - [2808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1308), - [2810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 1), - [2812] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 1), - [2814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), - [2816] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), - [2818] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 3), - [2820] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(873), - [2823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1309), - [2825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1310), - [2827] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1311), - [2829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1312), - [2831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1313), - [2833] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1314), - [2835] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1315), - [2837] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1315), - [2839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1317), - [2841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1318), - [2843] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1318), - [2845] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 3), - [2847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), - [2849] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5), - [2851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), - [2853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1322), - [2855] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5), - [2857] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), - [2859] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1324), - [2861] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 5), - [2863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), - [2865] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), - [2867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1327), - [2869] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1327), - [2871] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1329), - [2873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1331), - [2875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1333), - [2877] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1334), - [2879] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1333), - [2881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1336), - [2883] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1337), - [2885] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 5), - [2887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), - [2889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1345), - [2891] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1346), - [2893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1347), - [2895] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1347), - [2897] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1349), - [2899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1351), - [2901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1352), - [2903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1353), - [2905] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1353), - [2907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1354), - [2909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1355), - [2911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1356), - [2913] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1356), - [2915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1357), - [2917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1358), - [2919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1359), - [2921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1360), - [2923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1361), - [2925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1362), - [2927] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(930), - [2930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1363), - [2932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1364), - [2934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1365), - [2936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1366), - [2938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1367), - [2940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1368), - [2942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1369), - [2944] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1369), - [2946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1371), - [2948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1372), - [2950] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1372), - [2952] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 3), - [2954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1374), - [2956] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1374), - [2958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1377), - [2960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1378), - [2962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1379), - [2964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1380), - [2966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1381), - [2968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1382), - [2970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1383), - [2972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1384), - [2974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1385), - [2976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1386), - [2978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1387), - [2980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1388), - [2982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1389), - [2984] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1389), - [2986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1391), - [2988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1392), - [2990] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1392), - [2992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1394), - [2994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1395), - [2996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1396), - [2998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1397), - [3000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1398), - [3002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1399), - [3004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1400), - [3006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1401), - [3008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1402), - [3010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1403), - [3012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1404), - [3014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1405), - [3016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1406), - [3018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1407), - [3020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1408), - [3022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1409), - [3024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1410), - [3026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1411), - [3028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1412), - [3030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1413), - [3032] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), - [3034] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [3036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), - [3038] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3), - [3040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), - [3042] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), - [3044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1414), - [3046] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1035), - [3049] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), - [3051] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1417), - [3053] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1418), - [3055] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1053), - [3058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1419), - [3060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1420), - [3062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1421), - [3064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1422), - [3066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1423), - [3068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1424), - [3070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1425), - [3072] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1425), - [3074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1427), - [3076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1428), - [3078] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1428), - [3080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1431), - [3082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1432), - [3084] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 1), - [3086] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6), - [3088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1433), - [3090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1434), - [3092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1435), - [3094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1436), - [3096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1437), - [3098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1438), - [3100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1439), - [3102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1440), - [3104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1441), - [3106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1442), - [3108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1443), - [3110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1444), - [3112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 3), - [3114] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 3), - [3116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7), - [3118] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7), - [3120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1445), - [3122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1446), - [3124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1447), - [3126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1448), - [3128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1449), - [3130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1450), - [3132] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 1), - [3134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 1), - [3136] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), - [3138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), - [3140] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 6), - [3142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), - [3144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1451), - [3146] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6), - [3148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), - [3150] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1452), - [3152] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 6), - [3154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), - [3156] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1453), - [3158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1454), - [3160] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1454), - [3162] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1456), - [3164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1458), - [3166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1459), - [3168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1460), - [3170] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1460), - [3172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1461), - [3174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1462), - [3176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1463), - [3178] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1463), - [3180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1464), - [3182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1465), - [3184] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1155), - [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 = false}, SHIFT(1470), - [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 = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1475), - [3209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1477), - [3211] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1478), - [3213] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1479), - [3215] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1480), - [3217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1481), - [3219] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1482), - [3221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1483), - [3223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1484), - [3225] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1486), - [3227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1487), - [3229] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1488), - [3231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1489), - [3233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1490), - [3235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1491), - [3237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1492), - [3239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1493), - [3241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1494), - [3243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1495), - [3245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1496), - [3247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1497), - [3249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1498), - [3251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1499), - [3253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1500), - [3255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1501), - [3257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1502), - [3259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1503), - [3261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1504), - [3263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1505), - [3265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1506), - [3267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1507), - [3269] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4), - [3271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), - [3273] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), - [3275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1508), - [3277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1509), - [3279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1510), - [3281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1511), - [3283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1512), - [3285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1513), - [3287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1514), - [3289] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 3), - [3291] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7), - [3293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1515), - [3295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1516), - [3297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1517), - [3299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1518), - [3301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1519), - [3303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1520), - [3305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1521), - [3307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1522), - [3309] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), - [3311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [3313] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7), - [3315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), - [3317] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1331), - [3320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1523), - [3322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1524), - [3324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1525), - [3326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1526), - [3328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1527), - [3330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1528), - [3332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1529), - [3334] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1529), - [3336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1531), - [3338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1532), - [3340] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1532), - [3342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1534), - [3344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1535), - [3346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1536), - [3348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1537), - [3350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1538), - [3352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1539), - [3354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1540), - [3356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1541), - [3358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1542), - [3360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1543), - [3362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1544), - [3364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1545), - [3366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1546), - [3368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1547), - [3370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1548), - [3372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1549), - [3374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1550), - [3376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1551), - [3378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1552), - [3380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1553), - [3382] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5), - [3384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), - [3386] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), - [3388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1554), - [3390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1555), - [3392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1556), - [3394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1557), - [3396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1558), - [3398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1559), - [3400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1560), - [3402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1561), - [3404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1562), - [3406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1563), - [3408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1564), - [3410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1565), - [3412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1566), - [3414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1567), - [3416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1568), - [3418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1569), - [3420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1570), - [3422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1571), - [3424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1572), - [3426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1573), - [3428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1574), - [3430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1575), - [3432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1576), - [3434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1577), - [3436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1578), - [3438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1579), - [3440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1580), - [3442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1581), - [3444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1582), - [3446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1583), - [3448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1584), - [3450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1585), + [596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2, .alias_sequence_id = 1), + [598] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2, .alias_sequence_id = 1), + [600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), + [602] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__terminated_statement, 2), + [604] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), + [606] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(375), + [608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(375), + [610] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1), + [612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(376), + [614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(377), + [616] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(378), + [618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(379), + [620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(380), + [622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(381), + [624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(382), + [626] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(383), + [628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(385), + [630] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(386), + [632] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), + [636] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), + [638] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 2), + [640] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2), + [643] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), + [646] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), + [649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), + [651] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), + [654] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), + [657] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7), + [660] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(8), + [663] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(9), + [666] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(10), + [669] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), + [672] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(12), + [675] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(13), + [678] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), + [681] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), + [684] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), + [687] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(16), + [690] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), + [693] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(18), + [696] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(19), + [699] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(20), + [702] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(21), + [705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(391), + [707] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2), + [710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), + [712] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(156), + [715] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(14), + [718] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(14), + [721] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), + [723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), + [725] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3), + [727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 5), + [729] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 5), + [731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [733] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2, .alias_sequence_id = 3), + [737] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2, .alias_sequence_id = 3), + [739] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(33), + [742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(393), + [744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(394), + [746] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(396), + [748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(398), + [750] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(399), + [752] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(398), + [754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(401), + [756] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(402), + [758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(410), + [760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2), + [762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(412), + [764] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2), + [766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(414), + [768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(415), + [770] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(416), + [772] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(418), + [774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(420), + [776] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(421), + [778] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(420), + [780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(423), + [782] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(424), + [784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), + [786] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), + [788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(433), + [790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(434), + [792] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(435), + [794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(436), + [796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(437), + [798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(438), + [800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(439), + [802] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(440), + [804] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(443), + [806] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), + [808] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(448), + [810] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(449), + [812] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(450), + [814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(458), + [816] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(459), + [818] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(460), + [820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(461), + [822] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(463), + [824] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(464), + [826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(466), + [828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(467), + [830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(468), + [832] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(468), + [834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(469), + [836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(470), + [838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(471), + [840] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(471), + [842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(472), + [844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(473), + [846] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(474), + [848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(475), + [850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(476), + [852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(477), + [854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(479), + [856] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3, .alias_sequence_id = 4), + [858] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(480), + [860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(483), + [862] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(484), + [864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(485), + [866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(487), + [868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(489), + [870] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), + [872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(490), + [874] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(493), + [876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(493), + [878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(494), + [880] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(495), + [882] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(490), + [884] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(499), + [886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(501), + [888] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(502), + [890] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_concatenation, 2), + [892] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 2), + [894] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(504), + [896] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [898] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2), + [900] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(505), + [902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(507), + [904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(508), + [906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(509), + [908] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(509), + [910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(510), + [912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(511), + [914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(512), + [916] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(512), + [918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(513), + [920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(514), + [922] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_concatenation, 2, .alias_sequence_id = 1), + [924] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), + [926] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(64), + [929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [931] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(65), + [934] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(66), + [937] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(67), + [940] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(68), + [943] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(69), + [946] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(70), + [949] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(71), + [952] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(74), + [955] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(75), + [958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(516), + [960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(517), + [962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(518), + [964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(519), + [966] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(520), + [968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(521), + [970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(522), + [972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(523), + [974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(524), + [976] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(525), + [978] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(77), + [981] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(78), + [984] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [986] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(79), + [989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(526), + [991] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(527), + [993] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(529), + [995] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(530), + [997] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(532), + [999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(533), + [1001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(534), + [1003] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(534), + [1005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(535), + [1007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(536), + [1009] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(537), + [1011] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(537), + [1013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(538), + [1015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(539), + [1017] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(540), + [1019] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(542), + [1021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(543), + [1023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(544), + [1025] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(544), + [1027] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(545), + [1029] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(546), + [1031] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(547), + [1033] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(547), + [1035] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(548), + [1037] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 3), + [1039] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 3), + [1041] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), + [1043] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(92), + [1046] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(93), + [1049] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(94), + [1052] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(95), + [1055] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(96), + [1058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(549), + [1060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(550), + [1062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(551), + [1064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(552), + [1066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1068] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(553), + [1072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(554), + [1074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(555), + [1076] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(556), + [1078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), + [1080] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), + [1082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(558), + [1084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(559), + [1086] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(560), + [1088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(562), + [1090] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(563), + [1092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(565), + [1094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(566), + [1096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(567), + [1098] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(568), + [1100] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_variable_assignment, 2), + [1102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(569), + [1104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(570), + [1106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(572), + [1108] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(573), + [1110] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(574), + [1112] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(575), + [1114] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(576), + [1116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(577), + [1118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(578), + [1120] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(580), + [1122] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(581), + [1124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(584), + [1126] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [1128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(585), + [1130] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), + [1132] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 2), + [1134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 2), + [1136] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(588), + [1138] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(589), + [1140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(591), + [1142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(592), + [1144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(593), + [1146] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(593), + [1148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(594), + [1150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(595), + [1152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(596), + [1154] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(596), + [1156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(597), + [1158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(598), + [1160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(599), + [1162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), + [1164] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), + [1166] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(604), + [1168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(604), + [1170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(605), + [1172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(606), + [1174] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(607), + [1176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(608), + [1178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(609), + [1180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(610), + [1182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(611), + [1184] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(612), + [1186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(614), + [1188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(615), + [1190] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 1), + [1192] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 2), + [1194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 2), + [1196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(622), + [1198] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(623), + [1200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(624), + [1202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(626), + [1204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(628), + [1206] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(632), + [1208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(632), + [1210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(633), + [1212] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(634), + [1214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), + [1216] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), + [1218] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), + [1220] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), + [1222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(640), + [1224] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(641), + [1226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(643), + [1228] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), + [1230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(645), + [1232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(647), + [1234] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(648), + [1236] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(647), + [1238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(650), + [1240] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(651), + [1242] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), + [1244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), + [1246] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), + [1248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(660), + [1250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(661), + [1252] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(662), + [1254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(663), + [1256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), + [1258] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), + [1260] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(147), + [1263] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [1265] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(15), + [1268] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(147), + [1271] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(16), + [1274] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(17), + [1277] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(18), + [1280] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(19), + [1283] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(20), + [1286] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(150), + [1289] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3), + [1291] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(146), + [1294] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), + [1296] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(148), + [1299] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(149), + [1302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(665), + [1304] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(666), + [1306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(668), + [1308] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(669), + [1310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4), + [1312] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(671), + [1314] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(672), + [1316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(674), + [1318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(675), + [1320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(676), + [1322] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(676), + [1324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(677), + [1326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(678), + [1328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(679), + [1330] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(679), + [1332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(680), + [1334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(681), + [1336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 5), + [1338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(682), + [1340] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(683), + [1342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 2), + [1344] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 2), + [1346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(687), + [1348] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(689), + [1350] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(690), + [1352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(692), + [1354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(693), + [1356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(694), + [1358] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(694), + [1360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(695), + [1362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(696), + [1364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(697), + [1366] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(697), + [1368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(698), + [1370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(699), + [1372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(700), + [1374] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(702), + [1376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(704), + [1378] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(705), + [1380] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(704), + [1382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(707), + [1384] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(708), + [1386] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(717), + [1388] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(434), + [1390] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(433), + [1392] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(435), + [1394] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(436), + [1396] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(437), + [1398] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(438), + [1400] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(439), + [1402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(440), + [1404] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), + [1406] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(719), + [1408] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(720), + [1410] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), + [1412] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 1), + [1414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(727), + [1416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1), + [1418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(728), + [1420] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(728), + [1422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(449), + [1424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(450), + [1426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(733), + [1428] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(734), + [1430] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(735), + [1432] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(739), + [1434] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(191), + [1437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(740), + [1439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(741), + [1441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(742), + [1443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(743), + [1445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(744), + [1447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(745), + [1449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(746), + [1451] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(747), + [1453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(749), + [1455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(750), + [1457] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(751), + [1459] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(753), + [1461] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(755), + [1463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), + [1465] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), + [1467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(757), + [1469] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(759), + [1471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(759), + [1473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(760), + [1475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(761), + [1477] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(762), + [1479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(763), + [1481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(764), + [1483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(765), + [1485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(766), + [1487] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(767), + [1489] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4, .alias_sequence_id = 4), + [1491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(771), + [1493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(772), + [1495] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(773), + [1497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(774), + [1499] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(775), + [1501] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(218), + [1504] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), + [1506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(777), + [1508] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(778), + [1510] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(228), + [1513] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(228), + [1516] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(230), + [1519] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(227), + [1522] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(229), + [1525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(781), + [1527] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1529] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 2, .alias_sequence_id = 3), + [1531] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(238), + [1534] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 3), + [1536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(783), + [1538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(784), + [1540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(785), + [1542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(786), + [1544] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(787), + [1548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(788), + [1550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(789), + [1552] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(790), + [1554] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3), + [1556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(792), + [1558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(793), + [1560] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(794), + [1562] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_substitution, 3), + [1564] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_process_substitution, 3), + [1566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(796), + [1568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(798), + [1570] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(800), + [1572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(802), + [1574] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(803), + [1576] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(802), + [1578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(805), + [1580] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(806), + [1582] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(263), + [1585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(815), + [1587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(816), + [1589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(817), + [1591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(818), + [1593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(819), + [1595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(820), + [1597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(821), + [1599] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(822), + [1601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(824), + [1603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(825), + [1605] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(826), + [1607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(828), + [1609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(829), + [1611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(830), + [1613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(831), + [1615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(832), + [1617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(833), + [1619] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(834), + [1621] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(835), + [1623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(837), + [1625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(838), + [1627] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(839), + [1629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 6), + [1631] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 6), + [1633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(841), + [1635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), + [1637] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), + [1639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(842), + [1641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(843), + [1643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(844), + [1645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(845), + [1647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [1649] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [1651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(847), + [1653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(848), + [1655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(850), + [1657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(851), + [1659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(852), + [1661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(853), + [1663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(854), + [1665] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(300), + [1668] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__assignment, 2), + [1670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(856), + [1672] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), + [1674] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(860), + [1676] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 3), + [1678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), + [1680] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(862), + [1682] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(866), + [1684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(867), + [1686] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(868), + [1688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(869), + [1690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(870), + [1692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(871), + [1694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(873), + [1696] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3, .alias_sequence_id = 4), + [1698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3, .alias_sequence_id = 4), + [1700] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(874), + [1702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(874), + [1704] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 3), + [1706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), + [1708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(876), + [1710] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(876), + [1712] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(877), + [1714] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bracket_command, 3), + [1716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), + [1718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(878), + [1720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(879), + [1722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(880), + [1724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(881), + [1726] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(882), + [1728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(883), + [1730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(884), + [1732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(885), + [1734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(886), + [1736] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(887), + [1738] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(316), + [1741] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(317), + [1744] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1748] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(318), + [1751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(888), + [1753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(889), + [1755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(890), + [1757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(891), + [1759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(892), + [1761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(893), + [1763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(894), + [1765] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(895), + [1767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(897), + [1769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(898), + [1771] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(899), + [1773] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pipeline, 3), + [1775] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), + [1777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), + [1779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(902), + [1781] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(903), + [1783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(905), + [1785] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(907), + [1787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(909), + [1789] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(910), + [1791] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(909), + [1793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(912), + [1795] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(913), + [1797] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 1), + [1799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(922), + [1801] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc_redirect, 2), + [1803] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(341), + [1806] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [1808] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(116), + [1811] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(117), + [1814] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(118), + [1817] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(119), + [1820] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(120), + [1823] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(121), + [1826] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(344), + [1829] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 3), + [1831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 3), + [1833] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(340), + [1836] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), + [1838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), + [1840] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(342), + [1843] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(342), + [1846] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(343), + [1849] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(343), + [1852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(927), + [1854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(928), + [1856] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(929), + [1858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(929), + [1860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(930), + [1862] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(931), + [1864] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(354), + [1867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(933), + [1869] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(934), + [1871] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(362), + [1874] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(364), + [1877] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(361), + [1880] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(363), + [1883] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(363), + [1886] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4, .alias_sequence_id = 2), + [1888] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), + [1890] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 5), + [1892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(939), + [1894] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(940), + [1896] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(942), + [1898] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(943), + [1900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(945), + [1902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(946), + [1904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(947), + [1906] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(947), + [1908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(948), + [1910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(949), + [1912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(950), + [1914] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(950), + [1916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(951), + [1918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(952), + [1920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 1), + [1922] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 1), + [1924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), + [1926] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), + [1928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(953), + [1930] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(954), + [1932] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(953), + [1934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(956), + [1936] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(957), + [1938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(959), + [1940] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4), + [1942] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(393), + [1945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(961), + [1947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(962), + [1949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(963), + [1951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(964), + [1953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(965), + [1955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(966), + [1957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(967), + [1959] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(968), + [1961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(970), + [1963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(971), + [1965] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(972), + [1967] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(412), + [1970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 3), + [1972] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 3), + [1974] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(414), + [1977] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(416), + [1980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(975), + [1982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(976), + [1984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(977), + [1986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(978), + [1988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(979), + [1990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(980), + [1992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(981), + [1994] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(982), + [1996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(984), + [1998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(985), + [2000] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(986), + [2002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(988), + [2004] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(989), + [2006] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(991), + [2008] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(992), + [2010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(994), + [2012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(995), + [2014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(996), + [2016] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(996), + [2018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(997), + [2020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(998), + [2022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(999), + [2024] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(999), + [2026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1000), + [2028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1001), + [2030] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(433), + [2033] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(434), + [2036] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(433), + [2039] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(435), + [2042] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(436), + [2045] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(437), + [2048] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(438), + [2051] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(439), + [2054] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(440), + [2057] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), + [2059] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), + [2061] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1003), + [2063] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1004), + [2065] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 2), + [2067] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), + [2069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1006), + [2071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), + [2073] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(449), + [2076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1008), + [2078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1009), + [2080] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), + [2082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1012), + [2084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), + [2086] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 1), + [2088] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), + [2090] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1015), + [2092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1018), + [2094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1019), + [2096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1020), + [2098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1021), + [2100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1022), + [2102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1023), + [2104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1024), + [2106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1025), + [2108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1026), + [2110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1027), + [2112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1028), + [2114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1029), + [2116] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [2118] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1030), + [2120] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5, .alias_sequence_id = 4), + [2122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), + [2124] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), + [2126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1033), + [2128] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1034), + [2130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1036), + [2132] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1038), + [2134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1040), + [2136] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1041), + [2138] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1040), + [2140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1043), + [2142] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1044), + [2144] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1055), + [2146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1055), + [2148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1056), + [2150] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1057), + [2152] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), + [2154] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 6), + [2156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1061), + [2158] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4), + [2160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1062), + [2162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1063), + [2164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1064), + [2166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1065), + [2168] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [2170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1066), + [2172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1067), + [2174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1068), + [2176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1069), + [2178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1070), + [2180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1071), + [2182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1072), + [2184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1073), + [2186] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1074), + [2188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1076), + [2190] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1077), + [2192] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1078), + [2194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1080), + [2196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1081), + [2198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1082), + [2200] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1082), + [2202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1083), + [2204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1084), + [2206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1085), + [2208] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1085), + [2210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1086), + [2212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1087), + [2214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1088), + [2216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1089), + [2218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1090), + [2220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1091), + [2222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1092), + [2224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1093), + [2226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1094), + [2228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1095), + [2230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1096), + [2232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1097), + [2234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1098), + [2236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1099), + [2238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1100), + [2240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1101), + [2242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1102), + [2244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1103), + [2246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1104), + [2248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1105), + [2250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1106), + [2252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1107), + [2254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1108), + [2256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1109), + [2258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1110), + [2260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1111), + [2262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1112), + [2264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1113), + [2266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1114), + [2268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 4), + [2270] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 4), + [2272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1116), + [2274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [2276] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [2278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1117), + [2280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), + [2282] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), + [2284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1118), + [2286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [2288] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [2290] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 2), + [2292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1120), + [2294] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1121), + [2296] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 2), + [2298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), + [2300] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1122), + [2302] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 4), + [2304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), + [2306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1123), + [2308] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1123), + [2310] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1126), + [2312] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1128), + [2314] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1129), + [2316] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1131), + [2318] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), + [2320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1133), + [2322] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1134), + [2324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1134), + [2326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1135), + [2328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1136), + [2330] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1137), + [2332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1138), + [2334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1139), + [2336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1140), + [2338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1141), + [2340] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1142), + [2342] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4, .alias_sequence_id = 4), + [2344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4, .alias_sequence_id = 4), + [2346] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 4), + [2348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), + [2350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1144), + [2352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1145), + [2354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1147), + [2356] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1149), + [2358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1151), + [2360] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1152), + [2362] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1151), + [2364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1154), + [2366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1155), + [2368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1164), + [2370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1165), + [2372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1166), + [2374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1167), + [2376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1168), + [2378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1169), + [2380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1170), + [2382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1171), + [2384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1172), + [2386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1173), + [2388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1174), + [2390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1175), + [2392] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4, .alias_sequence_id = 2), + [2394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4, .alias_sequence_id = 2), + [2396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1177), + [2398] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1178), + [2400] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1180), + [2402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1181), + [2404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1183), + [2406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1184), + [2408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1185), + [2410] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1185), + [2412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1186), + [2414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1187), + [2416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1188), + [2418] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1188), + [2420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1189), + [2422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1190), + [2424] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 2), + [2426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1191), + [2428] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 4), + [2430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 4), + [2432] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1194), + [2434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1194), + [2436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1195), + [2438] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1196), + [2440] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5, .alias_sequence_id = 2), + [2442] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(643), + [2445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1200), + [2447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1201), + [2449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1202), + [2451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1203), + [2453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1204), + [2455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1205), + [2457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1206), + [2459] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1207), + [2461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1209), + [2463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1210), + [2465] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1211), + [2467] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1213), + [2469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1215), + [2471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1216), + [2473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1217), + [2475] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1217), + [2477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1218), + [2479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1219), + [2481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1220), + [2483] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1220), + [2485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), + [2487] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), + [2489] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(660), + [2492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), + [2494] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(662), + [2497] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(663), + [2500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1221), + [2502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1222), + [2504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1223), + [2506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1224), + [2508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1225), + [2510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1226), + [2512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1227), + [2514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1228), + [2516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1229), + [2518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1230), + [2520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1231), + [2522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1232), + [2524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1233), + [2526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1234), + [2528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1235), + [2530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1236), + [2532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1237), + [2534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1238), + [2536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1239), + [2538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1240), + [2540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1241), + [2542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1242), + [2544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1243), + [2546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1244), + [2548] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(700), + [2551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1245), + [2553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1246), + [2555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1247), + [2557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1248), + [2559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1249), + [2561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1250), + [2563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1251), + [2565] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1252), + [2567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1254), + [2569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1255), + [2571] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1256), + [2573] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 4), + [2575] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3), + [2577] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), + [2579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1259), + [2581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1260), + [2583] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1261), + [2585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1263), + [2587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1265), + [2589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1268), + [2591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1270), + [2593] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), + [2595] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(733), + [2598] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), + [2600] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(168), + [2603] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(169), + [2606] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(170), + [2609] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(171), + [2612] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(172), + [2615] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(173), + [2618] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(735), + [2621] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1271), + [2623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1272), + [2625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1273), + [2627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1274), + [2629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1275), + [2631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1276), + [2633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1277), + [2635] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [2637] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1278), + [2639] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6, .alias_sequence_id = 4), + [2641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1279), + [2643] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1280), + [2645] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1282), + [2647] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1283), + [2649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1285), + [2651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1286), + [2653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1287), + [2655] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1287), + [2657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1288), + [2659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1289), + [2661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1290), + [2663] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1290), + [2665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1291), + [2667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1292), + [2669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1293), + [2671] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1294), + [2673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1298), + [2675] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1299), + [2677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1300), + [2679] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 4), + [2681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1301), + [2683] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [2685] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1302), + [2687] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5), + [2689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1303), + [2691] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [2693] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(796), + [2696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1304), + [2698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1305), + [2700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1306), + [2702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1307), + [2704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1308), + [2706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1309), + [2708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1310), + [2710] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1311), + [2712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1313), + [2714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1314), + [2716] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1315), + [2718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1317), + [2720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1318), + [2722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1319), + [2724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1320), + [2726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1321), + [2728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1322), + [2730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1323), + [2732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1324), + [2734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1325), + [2736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1326), + [2738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1327), + [2740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1328), + [2742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1329), + [2744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1330), + [2746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 4), + [2748] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 4), + [2750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), + [2752] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), + [2754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), + [2756] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), + [2758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 8), + [2760] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 8), + [2762] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 3), + [2764] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 3), + [2766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), + [2768] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5), + [2770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), + [2772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1332), + [2774] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5), + [2776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), + [2778] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1334), + [2780] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [2782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [2784] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1336), + [2786] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 5, .alias_sequence_id = 4), + [2788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5, .alias_sequence_id = 4), + [2790] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), + [2792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1339), + [2794] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1340), + [2796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1342), + [2798] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1344), + [2800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1346), + [2802] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1347), + [2804] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1346), + [2806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1349), + [2808] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1350), + [2810] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 5), + [2812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), + [2814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1359), + [2816] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1360), + [2818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1362), + [2820] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1363), + [2822] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1364), + [2824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1366), + [2826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1367), + [2828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1368), + [2830] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1368), + [2832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1369), + [2834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1370), + [2836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1371), + [2838] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1371), + [2840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1372), + [2842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1373), + [2844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1374), + [2846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1375), + [2848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1376), + [2850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1377), + [2852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1378), + [2854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1379), + [2856] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 5, .alias_sequence_id = 2), + [2858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5, .alias_sequence_id = 2), + [2860] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(905), + [2863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1380), + [2865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1381), + [2867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1382), + [2869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1383), + [2871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1384), + [2873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1385), + [2875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1386), + [2877] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1387), + [2879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1389), + [2881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1390), + [2883] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1391), + [2885] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 3), + [2887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1393), + [2889] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1394), + [2891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1398), + [2893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1399), + [2895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1400), + [2897] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1401), + [2899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1402), + [2901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1403), + [2903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1404), + [2905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1405), + [2907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1406), + [2909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1407), + [2911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1408), + [2913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1409), + [2915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1410), + [2917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1411), + [2919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1412), + [2921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1413), + [2923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1414), + [2925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1415), + [2927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1416), + [2929] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1417), + [2931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1419), + [2933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1420), + [2935] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1421), + [2937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1423), + [2939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1424), + [2941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1425), + [2943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1426), + [2945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1427), + [2947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1428), + [2949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1429), + [2951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1430), + [2953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1431), + [2955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1432), + [2957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1433), + [2959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1434), + [2961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1435), + [2963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1436), + [2965] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1437), + [2967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1438), + [2969] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1439), + [2971] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1440), + [2973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1441), + [2975] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1442), + [2977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1443), + [2979] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1444), + [2981] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1445), + [2983] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1446), + [2985] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), + [2987] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [2989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), + [2991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 3), + [2993] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), + [2995] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3), + [2997] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), + [2999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1447), + [3001] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1008), + [3004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [3006] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [3008] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [3010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1450), + [3012] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), + [3014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1452), + [3016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1453), + [3018] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 3), + [3020] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1036), + [3023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1454), + [3025] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1455), + [3027] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1456), + [3029] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1457), + [3031] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1458), + [3033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1459), + [3035] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1460), + [3037] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1461), + [3039] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1463), + [3041] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1464), + [3043] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1465), + [3045] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1468), + [3047] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1469), + [3049] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 4), + [3051] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), + [3053] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6), + [3055] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 8), + [3057] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1470), + [3059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1471), + [3061] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1472), + [3063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1473), + [3065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1474), + [3067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1475), + [3069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1476), + [3071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1477), + [3073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1478), + [3075] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1479), + [3077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1480), + [3079] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1481), + [3081] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1482), + [3083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1483), + [3085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1484), + [3087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1485), + [3089] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 6), + [3091] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 6), + [3093] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7), + [3095] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7), + [3097] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 4), + [3099] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 4), + [3101] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 6), + [3103] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), + [3105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1486), + [3107] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6), + [3109] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), + [3111] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1487), + [3113] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [3115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [3117] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1488), + [3119] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 6, .alias_sequence_id = 4), + [3121] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6, .alias_sequence_id = 4), + [3123] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1489), + [3125] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1490), + [3127] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1492), + [3129] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1493), + [3131] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1495), + [3133] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1496), + [3135] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1497), + [3137] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1497), + [3139] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1498), + [3141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1499), + [3143] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1500), + [3145] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1500), + [3147] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1501), + [3149] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1502), + [3151] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1145), + [3154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1503), + [3156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1504), + [3158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1505), + [3160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1506), + [3162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1507), + [3164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1508), + [3166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1509), + [3168] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1510), + [3170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1512), + [3172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1513), + [3174] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1514), + [3176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1516), + [3178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1517), + [3180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1518), + [3182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1519), + [3184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1520), + [3186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1521), + [3188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1522), + [3190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1523), + [3192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1524), + [3194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1525), + [3196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1526), + [3198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1527), + [3200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1528), + [3202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1529), + [3204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1531), + [3206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1532), + [3208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1533), + [3210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1534), + [3212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1535), + [3214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1536), + [3216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1537), + [3218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1538), + [3220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1539), + [3222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1540), + [3224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1541), + [3226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1542), + [3228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1543), + [3230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1544), + [3232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1545), + [3234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1546), + [3236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1547), + [3238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1548), + [3240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1549), + [3242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1550), + [3244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1551), + [3246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1552), + [3248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1553), + [3250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1554), + [3252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1555), + [3254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1556), + [3256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1557), + [3258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1558), + [3260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), + [3262] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4), + [3264] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), + [3266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1559), + [3268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [3270] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [3272] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [3274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1560), + [3276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1561), + [3278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1562), + [3280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1563), + [3282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1564), + [3284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1565), + [3286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1566), + [3288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1567), + [3290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1568), + [3292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1569), + [3294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1570), + [3296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1571), + [3298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1572), + [3300] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 6), + [3302] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7), + [3304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1573), + [3306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1574), + [3308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1575), + [3310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1576), + [3312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1577), + [3314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1578), + [3316] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), + [3318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [3320] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7), + [3322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), + [3324] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 3), + [3326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 3), + [3328] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1342), + [3331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1579), + [3333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1580), + [3335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1581), + [3337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1582), + [3339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1583), + [3341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1584), + [3343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1585), + [3345] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1586), + [3347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1588), + [3349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1589), + [3351] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1590), + [3353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1592), + [3355] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1593), + [3357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1594), + [3359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1595), + [3361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1596), + [3363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1597), + [3365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1598), + [3367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1599), + [3369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1600), + [3371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1601), + [3373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1602), + [3375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1603), + [3377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1604), + [3379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1605), + [3381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1606), + [3383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1607), + [3385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1608), + [3387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1609), + [3389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1610), + [3391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1611), + [3393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1612), + [3395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1613), + [3397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1614), + [3399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1615), + [3401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1616), + [3403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1617), + [3405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1618), + [3407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1619), + [3409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), + [3411] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5), + [3413] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), + [3415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [3417] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [3419] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [3421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1620), + [3423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1621), + [3425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1622), + [3427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1623), + [3429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1624), + [3431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1625), + [3433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1626), + [3435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1627), + [3437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1628), + [3439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1629), + [3441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1630), + [3443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1631), + [3445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1632), + [3447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1633), + [3449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1634), + [3451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1635), + [3453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1636), + [3455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1637), + [3457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1638), + [3459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1639), + [3461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1640), + [3463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1641), + [3465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1642), + [3467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1643), + [3469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1644), + [3471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1645), + [3473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1646), + [3475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1647), + [3477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1648), + [3479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1649), + [3481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1650), + [3483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1651), + [3485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1652), + [3487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1653), + [3489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1654), + [3491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1655), + [3493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1656), + [3495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1657), + [3497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1658), + [3499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1659), + [3501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1660), + [3503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1661), }; void *tree_sitter_bash_external_scanner_create(); diff --git a/src/scanner.cc b/src/scanner.cc index 6a2484d..9a845d3 100644 --- a/src/scanner.cc +++ b/src/scanner.cc @@ -12,10 +12,14 @@ enum TokenType { HEREDOC_MIDDLE, HEREDOC_END, FILE_DESCRIPTOR, + WORD, EMPTY_VALUE, CONCAT, VARIABLE_NAME, NEWLINE, + CLOSING_BRACKET, + CLOSING_DOUBLE_BRACKET, + CLOSING_BRACE, }; struct Scanner { @@ -90,6 +94,7 @@ struct Scanner { lexer->lookahead == ')' || lexer->lookahead == '(' || lexer->lookahead == '[' || + lexer->lookahead == '|' || lexer->lookahead == ']' || lexer->lookahead == '}' || lexer->lookahead == ';' || @@ -130,7 +135,9 @@ struct Scanner { return scan_heredoc_content(lexer, HEREDOC_BEGINNING, SIMPLE_HEREDOC); } - if (valid_symbols[VARIABLE_NAME] || valid_symbols[FILE_DESCRIPTOR]) { + if (valid_symbols[VARIABLE_NAME] || valid_symbols[FILE_DESCRIPTOR] || valid_symbols[WORD]) { + unsigned length = 0; + for (;;) { if ( lexer->lookahead == ' ' || @@ -139,11 +146,12 @@ struct Scanner { ) { skip(lexer); } else if (lexer->lookahead == '\\') { - skip(lexer); + advance(lexer); if (lexer->lookahead == '\n') { skip(lexer); } else { - return false; + length++; + break; } } else { break; @@ -151,26 +159,41 @@ struct Scanner { } bool is_number = true; - if (iswdigit(lexer->lookahead)) { - advance(lexer); - } else if (iswalpha(lexer->lookahead) || lexer->lookahead == '_') { - is_number = false; - advance(lexer); - } else { - return false; - } - + bool is_alphanumeric = true; for (;;) { if (iswdigit(lexer->lookahead)) { - advance(lexer); } else if (iswalpha(lexer->lookahead) || lexer->lookahead == '_') { is_number = false; - advance(lexer); + } else if ( + !iswspace(lexer->lookahead) && + lexer->lookahead != 0 && + lexer->lookahead != '"' && + lexer->lookahead != '\'' && + lexer->lookahead != '`' && + lexer->lookahead != '>' && + lexer->lookahead != '<' && + lexer->lookahead != '#' && + lexer->lookahead != '|' && + lexer->lookahead != '(' && + lexer->lookahead != ')' && + lexer->lookahead != ';' && + lexer->lookahead != '&' && + lexer->lookahead != '$' + ) { + if (lexer->lookahead == '}' && valid_symbols[CLOSING_BRACE]) break; + if (lexer->lookahead == ']' && length == 0 && (valid_symbols[CLOSING_BRACKET] || valid_symbols[CLOSING_DOUBLE_BRACKET])) break; + if (is_alphanumeric && valid_symbols[VARIABLE_NAME] && (lexer->lookahead == '=' || lexer->lookahead == '[' || lexer->lookahead == '+')) break; + is_alphanumeric = false; } else { break; } + + advance(lexer); + length++; } + if (length == 0) return false; + if (is_number && valid_symbols[FILE_DESCRIPTOR] && (lexer->lookahead == '>' || lexer->lookahead == '<')) { @@ -194,7 +217,10 @@ struct Scanner { } } - return false; + if (valid_symbols[WORD] && !is_alphanumeric) { + lexer->result_symbol = WORD; + return true; + } } return false;